Skip to content
Snippets Groups Projects
Commit 31a45014 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

loco: fix 10l typo (missing case)

parent 47f0bead
No related branches found
No related tags found
No related merge requests found
...@@ -210,7 +210,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -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, 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); -p->linesize[0], buf, buf_size, 3);
break; break;
case LOCO_CRGBA: LOCO_RGBA: case LOCO_CRGBA: case LOCO_RGBA:
decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height, decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height,
p->linesize[0], buf, buf_size, 4); p->linesize[0], buf, buf_size, 4);
buf += decoded; buf_size -= decoded; buf += decoded; buf_size -= decoded;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment