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 {
typedef struct {
const AVClass *class;
enum MCDeintMode mode;
enum MCDeintParity parity;
int mode; ///< MCDeintMode
int parity; ///< MCDeintParity
int qp;
AVCodecContext *enc_ctx;
} 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