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>
This commit is contained in:
Michael Niedermayer 2015-03-18 12:26:15 +01:00
parent ee17295d10
commit fbb9ef5b17
1 changed files with 1 additions and 1 deletions

View File

@ -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;