Commit cf3d635d authored by vitor's avatar vitor

Make default end_frame() implementation more useful.

Commited in SoC by Bobby Bingham on 2007-08-17 16:45:47


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12066 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dd7d8aed
......@@ -77,8 +77,10 @@ void avfilter_default_end_frame(AVFilterLink *link)
link->cur_pic = NULL;
if(out) {
if(out->outpic) {
avfilter_unref_pic(out->outpic);
out->outpic = NULL;
}
avfilter_end_frame(out);
}
}
......
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