summaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-06-24 11:10:57 +0200
committerAnton Khirnov <anton@khirnov.net>2014-06-26 16:08:06 +0200
commita5864e9a253143437471dba61a533e7fa9acec1c (patch)
tree70701bdcad6feb7445ac16f26edde7509900b485 /doc/examples
parent182d3f8221c23716ea4eafa460bdb94968f71f26 (diff)
output example: free the muxing format context properly
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/output.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/doc/examples/output.c b/doc/examples/output.c
index 7c29df1fdf..0985659509 100644
--- a/doc/examples/output.c
+++ b/doc/examples/output.c
@@ -549,18 +549,12 @@ int main(int argc, char **argv)
if (have_audio)
close_stream(oc, &audio_st);
- /* Free the streams. */
- for (i = 0; i < oc->nb_streams; i++) {
- av_freep(&oc->streams[i]->codec);
- av_freep(&oc->streams[i]);
- }
-
if (!(fmt->flags & AVFMT_NOFILE))
/* Close the output file. */
avio_close(oc->pb);
/* free the stream */
- av_free(oc);
+ avformat_free_context(oc);
return 0;
}