ffmpeg | branch: master | Arwa Arif <arwaarif1...@gmail.com> | Wed Jan 28 
19:53:06 2015 +0530| [a21acd554a253d8515f54f84526eae5aa867ae07] | committer: 
Michael Niedermayer

Fix frame-alignment in PP7

Signed-off-by: Michael Niedermayer <michae...@gmx.at>

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

 libavfilter/vf_pp7.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/vf_pp7.c b/libavfilter/vf_pp7.c
index 3f8e746..0a70902 100644
--- a/libavfilter/vf_pp7.c
+++ b/libavfilter/vf_pp7.c
@@ -347,6 +347,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
                 return AVERROR(ENOMEM);
             }
             av_frame_copy_props(out, in);
+            out->width = in->width;
+            out->height = in->height;
         }
 
         if (qp_table || pp7->qp) {

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to