Commit fbb9ef5b authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_lut3d: Change enum to int, which is accessed via AVOption as int

This fixes depending on implementation defined behavior
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ee17295d
...@@ -58,7 +58,7 @@ struct rgbvec { ...@@ -58,7 +58,7 @@ struct rgbvec {
typedef struct LUT3DContext { typedef struct LUT3DContext {
const AVClass *class; const AVClass *class;
enum interp_mode interpolation; int interpolation; ///<interp_mode
char *file; char *file;
uint8_t rgba_map[4]; uint8_t rgba_map[4];
int step; int step;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment