blob: 9499bdec8678349d8ae18198b7080b44e3a3b061 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* JPEG-XR (formerly HD-Photo (formerly Windows Media Photo)) support */
#include "fitz.h"
#include "muxps.h"
int
xps_decode_jpegxr(xps_image **imagep, xps_context *ctx, byte *rbuf, int rlen)
{
return fz_throw("JPEG-XR codec is not available");
}
|