aboutsummaryrefslogtreecommitdiff
path: root/tjbench.c
diff options
context:
space:
mode:
Diffstat (limited to 'tjbench.c')
-rw-r--r--tjbench.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tjbench.c b/tjbench.c
index 081f7085..27fc8560 100644
--- a/tjbench.c
+++ b/tjbench.c
@@ -59,7 +59,7 @@ const char *subNameLong[TJ_NUMSAMP]=
const char *subName[NUMSUBOPT]={"444", "422", "420", "GRAY", "440"};
tjscalingfactor *scalingfactors=NULL, sf={1, 1}; int nsf=0;
int xformop=TJXOP_NONE, xformopt=0;
-int (*customFilter)(short *, tjregion, tjregion, int, int);
+int (*customFilter)(short *, tjregion, tjregion, int, int, tjtransform *);
double benchtime=5.0;
@@ -76,7 +76,7 @@ char *sigfig(double val, int figs, char *buf, int len)
/* Custom DCT filter which produces a negative of the image */
int dummyDCTFilter(short *coeffs, tjregion arrayRegion, tjregion planeRegion,
- int componentIndex, int transformIndex)
+ int componentIndex, int transformIndex, tjtransform *transform)
{
int i;
for(i=0; i<arrayRegion.w*arrayRegion.h; i++) coeffs[i]=-coeffs[i];