From 2280552057bb85b7fa6bd435ffd1c8888203fa30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 19 Feb 2015 11:17:43 +0100 Subject: [PATCH] avfilter/palettegen: raise cache size from 64k to 512k (or 32k to 256k in 32-bit) This is similar to a00bab347518d4824d51ec7078f1d84ca097c53b --- libavfilter/vf_palettegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_palettegen.c b/libavfilter/vf_palettegen.c index 1f1e90f4b9..323fa53688 100644 --- a/libavfilter/vf_palettegen.c +++ b/libavfilter/vf_palettegen.c @@ -52,7 +52,7 @@ enum { NB_STATS_MODE }; -#define NBITS 4 +#define NBITS 5 #define HIST_SIZE (1<<(3*NBITS)) typedef struct {