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:
authorMichael Niedermayer <michaelni@gmx.at>2012-01-12 03:52:40 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-01-12 04:10:32 +0400
commit794006f8fe403ccd2993513a8e4fbe885ef7f9fb (patch)
tree42edca40fc6f5ba24543f611086891ae4c6b6f68 /libavformat/wtvdec.c
parent4093d130d1934edcd098014d306492173527f1f6 (diff)
parente7d02b04dcfb65d1873b81bd3281442ac5ddec1d (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: fft: init functions with INIT_XMM/YMM. pcmenc: set frame_size to 0. gsm demuxer: use generic seeking instead of a gsm-specific function. gsm demuxer: return packets with only 1 gsm block at a time. avcodec: add GSM parser doc: Replace ffmpeg references in avserver config file by avconv. doc: Fix names of av_log color environment variables. Fix a bunch of platform name and other typos. Add some missing changelog entries and release 0.8_beta2 No longer build libpostproc by default wtv: fix memleaks during normal operation threads: add CODEC_CAP_AUTO_THREADS for libvpx and xavs Conflicts: Changelog RELEASE cmdutils.c configure doc/ffserver.conf doc/platform.texi ffplay.c libavcodec/Makefile libavcodec/version.h libavformat/wtv.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/wtvdec.c')
-rw-r--r--libavformat/wtvdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c
index c133d710d9..56050e962e 100644
--- a/libavformat/wtvdec.c
+++ b/libavformat/wtvdec.c
@@ -1022,6 +1022,7 @@ static int read_seek(AVFormatContext *s, int stream_index,
static int read_close(AVFormatContext *s)
{
WtvContext *wtv = s->priv_data;
+ av_freep(&wtv->index_entries);
wtvfile_close(wtv->pb);
return 0;
}