Commit 6f51cb51 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_colormatrix: Change enums to int, which are accessed via AVOption as int

This fixes depending on implementation defined behavior
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b0662a94
......@@ -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;
......
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