diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-31 15:10:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-31 15:42:17 +0100 |
commit | 131a18582682d67ca3d05500ead4cc332d4043b6 (patch) | |
tree | 2f53cf35e77166cd6d259d5613edcc2c7f01548c | |
parent | 037b527d62500cfde89d3bda5d4ac04ce8b8d959 (diff) | |
download | ffmpeg-131a18582682d67ca3d05500ead4cc332d4043b6.tar.gz |
avcodec/loco: use enum for mode variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/loco.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/loco.c b/libavcodec/loco.c index 88c66d9ae8..9b7359832d 100644 --- a/libavcodec/loco.c +++ b/libavcodec/loco.c @@ -46,7 +46,7 @@ enum LOCO_MODE { typedef struct LOCOContext { AVCodecContext *avctx; int lossy; - int mode; + enum LOCO_MODE mode; } LOCOContext; typedef struct RICEContext { |