summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lut3d.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-10-25 11:26:25 +0200
committerPaul B Mahol <onemda@gmail.com>2019-10-26 10:32:20 +0200
commita2210f10d37e890eefa1f94a5528ac69fa1515d2 (patch)
tree41a4bbb32236efe45e6b8c0c2474939f766010de /libavfilter/vf_lut3d.c
parent9130028d875416b46f5242e41ceae17715823823 (diff)
downloadffmpeg-a2210f10d37e890eefa1f94a5528ac69fa1515d2.tar.gz
avfilter/vf_lut3d: increase max level to upper limit defined by cube format specification
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 551dd1973b..cd0aba1f69 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 128
+#define MAX_LEVEL 256
typedef struct LUT3DContext {
const AVClass *class;