Commit d6dba15b authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_mcdeint: 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 1a79850a
...@@ -69,8 +69,8 @@ enum MCDeintParity { ...@@ -69,8 +69,8 @@ enum MCDeintParity {
typedef struct { typedef struct {
const AVClass *class; const AVClass *class;
enum MCDeintMode mode; int mode; ///< MCDeintMode
enum MCDeintParity parity; int parity; ///< MCDeintParity
int qp; int qp;
AVCodecContext *enc_ctx; AVCodecContext *enc_ctx;
} MCDeintContext; } MCDeintContext;
......
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