Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-12-31 17:10:25 +0300
committerMichael Niedermayer <michaelni@gmx.at>2014-12-31 17:42:17 +0300
commit131a18582682d67ca3d05500ead4cc332d4043b6 (patch)
tree2f53cf35e77166cd6d259d5613edcc2c7f01548c /libavcodec/loco.c
parent037b527d62500cfde89d3bda5d4ac04ce8b8d959 (diff)
avcodec/loco: use enum for mode variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/loco.c')
-rw-r--r--libavcodec/loco.c2
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 {