mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-05 14:26:17 +00:00
avfilter/vf_il: 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>
This commit is contained in:
parent
67e1562228
commit
ee17295d10
@ -38,7 +38,7 @@ enum FilterMode {
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
const AVClass *class;
|
const AVClass *class;
|
||||||
enum FilterMode luma_mode, chroma_mode, alpha_mode;
|
int luma_mode, chroma_mode, alpha_mode; ///<FilterMode
|
||||||
int luma_swap, chroma_swap, alpha_swap;
|
int luma_swap, chroma_swap, alpha_swap;
|
||||||
int nb_planes;
|
int nb_planes;
|
||||||
int linesize[4], chroma_height;
|
int linesize[4], chroma_height;
|
||||||
|
Loading…
Reference in New Issue
Block a user