summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7054b97)
raw | patch | inline | side by side (parent: 7054b97)
author | Amarinder Bindra <a-bindra@ti.com> | |
Tue, 8 Oct 2013 14:35:02 +0000 (20:05 +0530) | ||
committer | Amarinder Bindra <a-bindra@ti.com> | |
Wed, 9 Oct 2013 12:12:19 +0000 (17:42 +0530) |
Free the memory for esds_data aloocated during demux_init once the
demux_deinit is called.
Signed-off-by: Amarinder Bindra <a-bindra@ti.com>
demux_deinit is called.
Signed-off-by: Amarinder Bindra <a-bindra@ti.com>
util/demux.c | patch | blob | history |
diff --git a/util/demux.c b/util/demux.c
index e4fc150c41fa6067852d57ea51a8f23dff7639fe..eec057872ec583c68a2c0b24c9e9c4ed22f4492a 100644 (file)
--- a/util/demux.c
+++ b/util/demux.c
av_close_input_file(demux->afc);
if (demux->bsf)
av_bitstream_filter_close(demux->bsf);
av_close_input_file(demux->afc);
if (demux->bsf)
av_bitstream_filter_close(demux->bsf);
+ free(esds_data);
free(demux);
}
free(demux);
}