[FFmpeg-cvslog] avisynth: fix Planar RGB output

Stephen Hutchinson git at videolan.org
Thu Oct 27 05:39:13 EEST 2016


ffmpeg | branch: master | Stephen Hutchinson <qyot27 at gmail.com> | Tue Aug 30 20:26:08 2016 -0400| [bf14393635559640f10001fa6af46130cb35fa31] | committer: Michael Niedermayer

avisynth: fix Planar RGB output

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

 libavformat/avisynth.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c
index 1fe8e08..1acc44f 100644
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -690,8 +690,10 @@ static int avisynth_read_packet_video(AVFormatContext *s, AVPacket *pkt,
 #ifdef USING_AVISYNTH
         /* Flip Planar RGB video. */
         if (avsplus && (avs_library.avs_is_planar_rgb(avs->vi) ||
-                        avs_library.avs_is_planar_rgba(avs->vi)))
+                        avs_library.avs_is_planar_rgba(avs->vi))) {
+            src_p = src_p + (planeheight - 1) * pitch;
             pitch = -pitch;
+        }
 #endif
 
         avs_library.avs_bit_blt(avs->env, dst_p, rowsize, src_p, pitch,



More information about the ffmpeg-cvslog mailing list