You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/tinterlace: Change enum to int, which is 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:
@@ -43,7 +43,7 @@ enum TInterlaceMode {
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
const AVClass *class;
|
const AVClass *class;
|
||||||
enum TInterlaceMode mode; ///< interlace mode selected
|
int mode; ///< TInterlaceMode, interlace mode selected
|
||||||
AVRational preout_time_base;
|
AVRational preout_time_base;
|
||||||
int flags; ///< flags affecting interlacing algorithm
|
int flags; ///< flags affecting interlacing algorithm
|
||||||
int frame; ///< number of the output frame
|
int frame; ///< number of the output frame
|
||||||
|
Reference in New Issue
Block a user