Commit b0662a94 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/f_perms: Change enums to int, which are accessed via AVOption as int

This fixes depending on implementation defined behavior
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2a34b509
......@@ -37,7 +37,7 @@ typedef struct {
const AVClass *class;
AVLFG lfg;
int64_t random_seed;
enum mode mode;
int mode;
} PermsContext;
#define OFFSET(x) offsetof(PermsContext, x)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment