summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lut3d.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-04-28 10:52:21 +0200
committerPaul B Mahol <onemda@gmail.com>2019-04-28 10:52:21 +0200
commit5840a7f8a6d76d0f755dccfe544b58af1ba8b028 (patch)
tree052b2ac0ec87332c72ac9f25615f9ff9db554ca8 /libavfilter/vf_lut3d.c
parentd5b2458f469506576fdcab10e3dbd718757cb853 (diff)
downloadffmpeg-5840a7f8a6d76d0f755dccfe544b58af1ba8b028.tar.gz
avfilter/vf_lut3d: increase MAX_LEVEL
Diffstat (limited to 'libavfilter/vf_lut3d.c')
-rw-r--r--libavfilter/vf_lut3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lut3d.c b/libavfilter/vf_lut3d.c
index bdb0d89be2..a525039baa 100644
--- a/libavfilter/vf_lut3d.c
+++ b/libavfilter/vf_lut3d.c
@@ -55,7 +55,7 @@ struct rgbvec {
/* 3D LUT don't often go up to level 32, but it is common to have a Hald CLUT
* of 512x512 (64x64x64) */
-#define MAX_LEVEL 64
+#define MAX_LEVEL 128
typedef struct LUT3DContext {
const AVClass *class;