Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2012-05-14 14:39:41 +0400
committerJanne Grunau <janne-libav@jannau.net>2012-05-14 20:37:20 +0400
commit31f2c0231f2294145fcc24717c0127c040dc0c48 (patch)
tree53d86bc6975b9b8daa243805b37d8aa73c31d656 /avprobe.c
parent093c50a4f6402bd0481df03e43fbba1dc3630f49 (diff)
avprobe: free options at the end of main()
Diffstat (limited to 'avprobe.c')
-rw-r--r--avprobe.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/avprobe.c b/avprobe.c
index a3c1f80952..0233ea9e39 100644
--- a/avprobe.c
+++ b/avprobe.c
@@ -491,6 +491,9 @@ int main(int argc, char **argv)
ret = probe_file(input_filename);
+ uninit_opts();
+ av_dict_free(&fmt_entries_to_show);
+
avformat_network_deinit();
return ret;