[FFmpeg-cvslog] Fix frame-alignment in PP7
Arwa Arif
git at videolan.org
Thu Jan 29 04:58:49 CET 2015
ffmpeg | branch: master | Arwa Arif <arwaarif1994 at gmail.com> | Wed Jan 28 19:53:06 2015 +0530| [a21acd554a253d8515f54f84526eae5aa867ae07] | committer: Michael Niedermayer
Fix frame-alignment in PP7
Signed-off-by: Michael Niedermayer <michaelni at 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) {
More information about the ffmpeg-cvslog
mailing list