mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_mcdeint: 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
1a79850a8f
commit
d6dba15b97
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue