summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <clement@stupeflix.com>2015-02-19 11:17:43 +0100
committerClément Bœsch <clement@stupeflix.com>2015-02-19 11:17:45 +0100
commit2280552057bb85b7fa6bd435ffd1c8888203fa30 (patch)
tree013f5afa637ba0c1afd588856dc5526d12fa379f
parentc1ff2cdbca2b46a1f4089977463d45811e388b1a (diff)
avfilter/palettegen: raise cache size from 64k to 512k
(or 32k to 256k in 32-bit) This is similar to a00bab347518d4824d51ec7078f1d84ca097c53b
-rw-r--r--libavfilter/vf_palettegen.c2
1 files changed, 1 insertions, 1 deletions
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 {