blob: 00c0568fb52d07b2e4f39ac1c12b23930c812754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "mupdf/fitz.h"
/* TODO: implement JPEG-XR support */
fz_pixmap *
fz_load_jxr(fz_context *ctx, unsigned char *data, int size)
{
fz_throw(ctx, FZ_ERROR_GENERIC, "JPEG-XR codec is not available");
}
void
fz_load_jxr_info(fz_context *ctx, unsigned char *data, int size, int *wp, int *hp, int *xresp, int *yresp, fz_colorspace **cspacep)
{
fz_throw(ctx, FZ_ERROR_GENERIC, "JPEG-XR codec is not available");
}
|