summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lut3d.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-18 12:26:15 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-18 12:32:56 +0100
commitfbb9ef5b1727b9d133987617afad7a9f62781d9d (patch)
tree5ba2499039acae90e4b396efb25381c5d80eb851 /libavfilter/vf_lut3d.c
parentee17295d10aa1c3ea7356d8b91a27bfd870c1268 (diff)
downloadffmpeg-fbb9ef5b1727b9d133987617afad7a9f62781d9d.tar.gz
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 <michaelni@gmx.at>
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 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; ///<interp_mode
char *file;
uint8_t rgba_map[4];
int step;