mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
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
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue