ref: 51e620a808436a17a637c3be7c97b5f0762a6d95
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,
};