[FFmpeg-cvslog] avcodec/loco: rotate other planes too for non-power of 2 widths

Paul B Mahol git at videolan.org
Tue Sep 11 11:19:39 EEST 2018


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Sep 11 10:15:59 2018 +0200| [7115ad53b4248b25fc908df77ada0eb5e74a5ac8] | committer: Paul B Mahol

avcodec/loco: rotate other planes too for non-power of 2 widths

This was forgotten in df05fd3131fd94d01ebeaa58b4c60510961b8be2.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7115ad53b4248b25fc908df77ada0eb5e74a5ac8
---

 libavcodec/loco.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/libavcodec/loco.c b/libavcodec/loco.c
index f91d8709b0..741db3bdce 100644
--- a/libavcodec/loco.c
+++ b/libavcodec/loco.c
@@ -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:



More information about the ffmpeg-cvslog mailing list