mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
ee17295d10
commit
fbb9ef5b17
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue