diff options
author | Måns Rullgård <mans@mansr.com> | 2006-06-16 07:54:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-06-16 07:54:37 +0000 |
commit | a5e9102b4b2c853a75fb46a97968e26e1d8064a3 (patch) | |
tree | 1c6484af45517b9cc4b6d673ad68808b34556ac2 /libavformat/ogg.c | |
parent | 47dd81c75fb6e7c724bf7bcc147fd931e3b81ee2 (diff) | |
download | ffmpeg-a5e9102b4b2c853a75fb46a97968e26e1d8064a3.tar.gz |
free codec extradata in av_close_input_file
Originally committed as revision 5484 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ogg.c')
-rw-r--r-- | libavformat/ogg.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/ogg.c b/libavformat/ogg.c index db7ed68c03..37158981ae 100644 --- a/libavformat/ogg.c +++ b/libavformat/ogg.c @@ -249,7 +249,6 @@ static int ogg_read_close(AVFormatContext *avfcontext) { ogg_stream_clear(&context->os) ; ogg_sync_clear(&context->oy) ; - av_freep(&avfcontext->streams[0]->codec.extradata); return 0 ; } |