Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-17 19:11:42 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-17 19:11:42 +0300
commit7363889771897bda7bfe424c52c1faba127bdb7b (patch)
tree5cf75c57bca20541bee9a83b6886f0a1cfe34db3 /libavfilter/vf_fieldmatch.c
parente6140e7822703f0cb5f744ee77a71580a650db7b (diff)
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>
Diffstat (limited to 'libavfilter/vf_fieldmatch.c')
-rw-r--r--libavfilter/vf_fieldmatch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_fieldmatch.c b/libavfilter/vf_fieldmatch.c
index 96cb1a4ad9..c01af6681c 100644
--- a/libavfilter/vf_fieldmatch.c
+++ b/libavfilter/vf_fieldmatch.c
@@ -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;