diff options
author | Clément Bœsch <clement@stupeflix.com> | 2015-02-17 17:15:00 +0100 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2015-02-17 17:20:42 +0100 |
commit | a00bab347518d4824d51ec7078f1d84ca097c53b (patch) | |
tree | 6bb3f2beb155d3034f1496600877c9369e22be72 | |
parent | 398f531915602c0b5d55b3d0f23a01fc1a3e6e5a (diff) | |
download | ffmpeg-a00bab347518d4824d51ec7078f1d84ca097c53b.tar.gz |
avfilter/paletteuse: raise cache size from 64k to 512k
(or 32k to 256k in 32-bit)
-rw-r--r-- | libavfilter/vf_paletteuse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_paletteuse.c b/libavfilter/vf_paletteuse.c index 8188e3624d..b36f72e4ff 100644 --- a/libavfilter/vf_paletteuse.c +++ b/libavfilter/vf_paletteuse.c @@ -50,7 +50,7 @@ struct color_node { int left_id, right_id; }; -#define NBITS 4 +#define NBITS 5 #define CACHE_SIZE (1<<(3*NBITS)) struct cached_color { |