mirror of https://git.ffmpeg.org/ffmpeg.git
Ensure that the filter_count member is reset to zero when emptying the graph
Commited in SoC by Bobby Bingham on 2007-07-14 23:19:22 Originally committed as revision 12690 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ba56640c30
commit
65a4bd9c9e
|
@ -37,10 +37,8 @@ AVFilterGraph *avfilter_create_graph(void)
|
||||||
|
|
||||||
static void destroy_graph_filters(AVFilterGraph *graph)
|
static void destroy_graph_filters(AVFilterGraph *graph)
|
||||||
{
|
{
|
||||||
unsigned i;
|
for(; graph->filter_count > 0; graph->filter_count --)
|
||||||
|
avfilter_destroy(graph->filters[graph->filter_count - 1]);
|
||||||
for(i = 0; i < graph->filter_count; i ++)
|
|
||||||
avfilter_destroy(graph->filters[i]);
|
|
||||||
av_freep(&graph->filters);
|
av_freep(&graph->filters);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue