Commit a21acd55 authored by Arwa Arif's avatar Arwa Arif Committed by Michael Niedermayer

Fix frame-alignment in PP7

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4155f2d7
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment