ref: 0edbea43ea0446eab1ec4535d17b5b13a01d5910
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, };