avfilter/f_perms: 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:
Michael Niedermayer 2015-03-07 02:44:04 +01:00
parent 2a34b5099b
commit b0662a943c

View File

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