summaryrefslogtreecommitdiffstats
path: root/tests/framebench.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/framebench.c')
-rw-r--r--tests/framebench.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/framebench.c b/tests/framebench.c
index 21c3704..a7a270b 100644
--- a/tests/framebench.c
+++ b/tests/framebench.c
@@ -30,6 +30,7 @@ typedef struct {
size_t compress_frame(bench_params_t *p) {
size_t iter = p->iter;
+ LZ4F_cctx *cctx = p->cctx;
char *obuf = p->obuf;
size_t osize = p->osize;
const char* ibuf = p->ibuf;
@@ -43,6 +44,7 @@ size_t compress_frame(bench_params_t *p) {
prefs->frameInfo.contentSize = isize;
oused = LZ4F_compressFrame_usingCDict(
+ cctx,
obuf,
osize,
ibuf + ((iter * 2654435761U) % num_ibuf) * isize,