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-07 04:44:04 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-07 04:51:02 +0300
commit6f51cb514b7476df749f29c2a1cc8c99fff6ad2e (patch)
tree411fbc81e8f3e98c704766f8f2b83cfc4c4fb6c4 /libavfilter/vf_colormatrix.c
parentb0662a943c81a68d9d255231f0d58e427b63ba21 (diff)
avfilter/vf_colormatrix: 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_colormatrix.c')
-rw-r--r--libavfilter/vf_colormatrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c
index fc335d7bbe..daba16e152 100644
--- a/libavfilter/vf_colormatrix.c
+++ b/libavfilter/vf_colormatrix.c
@@ -68,7 +68,7 @@ typedef struct {
const AVClass *class;
int yuv_convert[16][3][3];
int interlaced;
- enum ColorMode source, dest;
+ int source, dest; ///< ColorMode
int mode;
int hsub, vsub;
} ColorMatrixContext;