diff options
author | Arwa Arif <arwaarif1994@gmail.com> | 2015-01-28 19:35:06 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-29 04:38:48 +0100 |
commit | a21acd554a253d8515f54f84526eae5aa867ae07 (patch) | |
tree | 71f1ae5925a029b174dff3d91159ff4cfef37d61 /libavfilter | |
parent | 4155f2d7cc6a6413bbc6c40741e4d07e6612cac5 (diff) | |
download | ffmpeg-a21acd554a253d8515f54f84526eae5aa867ae07.tar.gz |
Fix frame-alignment in PP7
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_pp7.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_pp7.c b/libavfilter/vf_pp7.c index 3f8e746038..0a709021c6 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) { |