Browse Source

Make default end_frame() implementation more useful.

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

Originally committed as revision 12066 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
552c020875
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavfilter/defaults.c

+ 2
- 0
libavfilter/defaults.c View File

@@ -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);
}
}


Loading…
Cancel
Save