mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avcodec/loco: rotate other planes too for non-power of 2 widths
This was forgotten in df05fd3131
.
This commit is contained in:
parent
5632044939
commit
7115ad53b4
@ -235,8 +235,11 @@ static int decode_frame(AVCodecContext *avctx,
|
||||
ADVANCE_BY_DECODED;
|
||||
decoded = loco_decode_plane(l, p->data[2] + p->linesize[2]*(avctx->height-1), avctx->width, avctx->height,
|
||||
-p->linesize[2], buf, buf_size);
|
||||
if (avctx->width & 1)
|
||||
if (avctx->width & 1) {
|
||||
rotate_faulty_loco(p->data[0] + p->linesize[0]*(avctx->height-1), avctx->width, avctx->height, -p->linesize[0]);
|
||||
rotate_faulty_loco(p->data[1] + p->linesize[1]*(avctx->height-1), avctx->width, avctx->height, -p->linesize[1]);
|
||||
rotate_faulty_loco(p->data[2] + p->linesize[2]*(avctx->height-1), avctx->width, avctx->height, -p->linesize[2]);
|
||||
}
|
||||
break;
|
||||
case LOCO_CRGBA:
|
||||
case LOCO_RGBA:
|
||||
|
Loading…
Reference in New Issue
Block a user