[FFmpeg-cvslog] avcodec/dxtory: add missed rgb555/rgb565 formats for vflip case

Paul B Mahol git at videolan.org
Sat Sep 5 11:34:23 EEST 2020


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Sep  4 00:29:08 2020 +0200| [a198b508e327a9a9705fb3eb5e366d7ed098ac67] | committer: Paul B Mahol

avcodec/dxtory: add missed rgb555/rgb565 formats for vflip case

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

 libavcodec/dxtory.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/dxtory.c b/libavcodec/dxtory.c
index 123833741b..e239abe233 100644
--- a/libavcodec/dxtory.c
+++ b/libavcodec/dxtory.c
@@ -62,6 +62,8 @@ static void do_vflip(AVCodecContext *avctx, AVFrame *pic, int vflip)
         pic->linesize[1] = -pic->linesize[1];
         pic->data[2] += (avctx->height - 1) * pic->linesize[2];
         pic->linesize[2] = -pic->linesize[2];
+    case AV_PIX_FMT_RGB555LE:
+    case AV_PIX_FMT_RGB565LE:
     case AV_PIX_FMT_BGR24:
     case AV_PIX_FMT_RGB24:
         pic->data[0] += (avctx->height - 1) * pic->linesize[0];



More information about the ffmpeg-cvslog mailing list