Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArwa Arif <arwaarif1994@gmail.com>2015-01-28 17:05:06 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-01-29 06:38:48 +0300
commita21acd554a253d8515f54f84526eae5aa867ae07 (patch)
tree71f1ae5925a029b174dff3d91159ff4cfef37d61 /libavfilter/vf_pp7.c
parent4155f2d7cc6a6413bbc6c40741e4d07e6612cac5 (diff)
Fix frame-alignment in PP7
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_pp7.c')
-rw-r--r--libavfilter/vf_pp7.c2
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) {