Browse Source

avfilter/vf_fieldmatch: 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>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
7363889771
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_fieldmatch.c

+ 2
- 2
libavfilter/vf_fieldmatch.c View File

@@ -86,13 +86,13 @@ typedef struct {
/* options */
int order;
int ppsrc;
enum matching_mode mode;
int mode; ///< matching_mode
int field;
int mchroma;
int y0, y1;
int64_t scthresh;
double scthresh_flt;
enum comb_matching_mode combmatch;
int combmatch; ///< comb_matching_mode
int combdbg;
int cthresh;
int chroma;


Loading…
Cancel
Save