[SCM] libav/experimental: output example: free the muxing format context properly

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:03:38 UTC 2014


The following commit has been merged in the experimental branch:
commit a5864e9a253143437471dba61a533e7fa9acec1c
Author: Anton Khirnov <anton at khirnov.net>
Date:   Tue Jun 24 11:10:57 2014 +0200

    output example: free the muxing format context properly

diff --git a/doc/examples/output.c b/doc/examples/output.c
index 7c29df1..0985659 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;
 }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list