Browse Source

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>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
8ae350004d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/tinterlace.h

+ 1
- 1
libavfilter/tinterlace.h View File

@@ -43,7 +43,7 @@ enum TInterlaceMode {

typedef struct {
const AVClass *class;
enum TInterlaceMode mode; ///< interlace mode selected
int mode; ///< TInterlaceMode, interlace mode selected
AVRational preout_time_base;
int flags; ///< flags affecting interlacing algorithm
int frame; ///< number of the output frame


Loading…
Cancel
Save