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