mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/vf_colormatrix: Change enums to int, which are 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
b0662a943c
commit
6f51cb514b
@ -68,7 +68,7 @@ typedef struct {
|
||||
const AVClass *class;
|
||||
int yuv_convert[16][3][3];
|
||||
int interlaced;
|
||||
enum ColorMode source, dest;
|
||||
int source, dest; ///< ColorMode
|
||||
int mode;
|
||||
int hsub, vsub;
|
||||
} ColorMatrixContext;
|
||||
|
Loading…
Reference in New Issue
Block a user