diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-02-01 20:02:17 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-06 20:31:42 +0100 |
commit | ab543afe47c5bc63622acce775189bb920638126 (patch) | |
tree | 66728e92d84dd52f924adf8c0b5daf05855d629f /ffmpeg.c | |
parent | c68be8e135ddcd8a043142d26a5fdc4ef01b1218 (diff) | |
download | ffmpeg-ab543afe47c5bc63622acce775189bb920638126.tar.gz |
Make avfilter_graph_free() free the graph.
Make avfilter_graph_free() free not only the internal structures, but
also the allocated graph, and set the graph pointer to NULL for
increased safety.
Simplify usage.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 4359288c565705d1734f63d277f8918ee5af5e54)
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -2708,10 +2708,7 @@ static int transcode(AVFormatContext **output_files, } } #if CONFIG_AVFILTER - if (graph) { - avfilter_graph_free(graph); - av_freep(&graph); - } + avfilter_graph_free(&graph); #endif /* finished ! */ |