ref: ccb4d1dcbe56987eaccd49bb56d1aabe5a2dfd13
dir: /f_dct.c/
#include <u.h>
#include <libc.h>
#include "pdf.h"
/* 7.4.8 DCTDecode filter */
static int
flreadall(void *aux, Buffer *bi, Buffer *bo)
{
	USED(aux);
	/* FIXME not doing anything about ColorTransform here? */
	bufput(bo, bi->b, bi->sz);
	bi->off = bi->sz;
	return 0;
}
Filter filterDCT = {
	.name = "DCTDecode",
	.readall = flreadall,
};