diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-03-18 12:26:15 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-18 12:32:56 +0100 |
commit | fbb9ef5b1727b9d133987617afad7a9f62781d9d (patch) | |
tree | 5ba2499039acae90e4b396efb25381c5d80eb851 /libavfilter | |
parent | ee17295d10aa1c3ea7356d8b91a27bfd870c1268 (diff) | |
download | ffmpeg-streaming-fbb9ef5b1727b9d133987617afad7a9f62781d9d.zip ffmpeg-streaming-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')
-rw-r--r-- | libavfilter/vf_lut3d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lut3d.c b/libavfilter/vf_lut3d.c index 6768550..3ef31ce 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; |