Browse Source

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>
tags/n2.7
Michael Niedermayer 11 years ago
parent
commit
6f51cb514b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_colormatrix.c

+ 1
- 1
libavfilter/vf_colormatrix.c View File

@@ -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;


Loading…
Cancel
Save