Commit f1ce12a3 authored by stefano's avatar stefano

Make avfilter_default_start_frame() correctly pass the aspect ratio

information to the next filter.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22300 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ea559fd1
......@@ -74,6 +74,7 @@ void avfilter_default_start_frame(AVFilterLink *link, AVFilterPicRef *picref)
if(out) {
out->outpic = avfilter_get_video_buffer(out, AV_PERM_WRITE, out->w, out->h);
out->outpic->pts = picref->pts;
out->outpic->pixel_aspect = picref->pixel_aspect;
avfilter_start_frame(out, avfilter_ref_pic(out->outpic, ~0));
}
}
......
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