diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-16 16:46:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-16 16:46:53 +0200 |
commit | 31a45014f405e55862c9443934fa8eceb255789b (patch) | |
tree | dc0a5b7fbac58595256265237da13c9740bc3d1f /libavcodec | |
parent | 47f0beadba9003391d8bfef59b15aa21a5b2d293 (diff) | |
download | ffmpeg-31a45014f405e55862c9443934fa8eceb255789b.tar.gz |
loco: fix 10l typo (missing case)
Found-by: Clément Bœsch <ubitux@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-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 b1670ebaa1..9f14757612 100644 --- a/libavcodec/loco.c +++ b/libavcodec/loco.c @@ -210,7 +210,7 @@ static int decode_frame(AVCodecContext *avctx, decoded = loco_decode_plane(l, p->data[0] + p->linesize[0]*(avctx->height-1) + 2, avctx->width, avctx->height, -p->linesize[0], buf, buf_size, 3); break; - case LOCO_CRGBA: LOCO_RGBA: + case LOCO_CRGBA: case LOCO_RGBA: decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height, p->linesize[0], buf, buf_size, 4); buf += decoded; buf_size -= decoded; |