From fbb9ef5b1727b9d133987617afad7a9f62781d9d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 18 Mar 2015 12:26:15 +0100 Subject: [PATCH] avfilter/vf_lut3d: Change enum to int, which is accessed via AVOption as int This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer --- libavfilter/vf_lut3d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_lut3d.c b/libavfilter/vf_lut3d.c index 6768550cea..3ef31ce6c2 100644 --- a/libavfilter/vf_lut3d.c +++ b/libavfilter/vf_lut3d.c @@ -58,7 +58,7 @@ struct rgbvec { typedef struct LUT3DContext { const AVClass *class; - enum interp_mode interpolation; + int interpolation; ///