avcodec/loco: use enum for mode variable

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-12-31 15:10:25 +01:00
parent 037b527d62
commit 131a185826
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ enum LOCO_MODE {
typedef struct LOCOContext {
AVCodecContext *avctx;
int lossy;
int mode;
enum LOCO_MODE mode;
} LOCOContext;
typedef struct RICEContext {