ref: ab56ad8a3280b663e54ba785df56ad3be4213f91
dir: /f_jpx.c/
#include <u.h> #include <libc.h> #include "pdf.h" /* 7.4.9 JPXDecode filter */ static int flreadall(void *aux, Buffer *bi, Buffer *bo) { USED(aux); bufput(bo, bi->b, bi->sz); bi->off = bi->sz; return 0; } Filter filterJPX = { .name = "JPXDecode", .readall = flreadall, };