mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-24 17:12:34 +02:00
avfilter/vf_edgedetect: 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
08880c1f71
commit
fa7084a065
@ -50,7 +50,7 @@ typedef struct {
|
|||||||
int nb_planes;
|
int nb_planes;
|
||||||
double low, high;
|
double low, high;
|
||||||
uint8_t low_u8, high_u8;
|
uint8_t low_u8, high_u8;
|
||||||
enum FilterMode mode;
|
int mode;
|
||||||
} EdgeDetectContext;
|
} EdgeDetectContext;
|
||||||
|
|
||||||
#define OFFSET(x) offsetof(EdgeDetectContext, x)
|
#define OFFSET(x) offsetof(EdgeDetectContext, x)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user