[FFmpeg-cvslog] matroskadec: request a read buffer for the wav header
Luca Barbato
git at videolan.org
Wed Mar 13 14:46:28 CET 2013
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Tue Mar 12 18:56:28 2013 +0100| [37cb3b180a1dc3d6f123f68e0806585ebc2578b6] | committer: Luca Barbato
matroskadec: request a read buffer for the wav header
Solve an infiniloop.
CC: libav-stable at libav.org
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=37cb3b180a1dc3d6f123f68e0806585ebc2578b6
---
libavformat/matroskadec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index 388a9f4..4a872b8 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -1496,7 +1496,7 @@ static int matroska_read_header(AVFormatContext *s)
&& track->codec_priv.data != NULL) {
int ret;
ffio_init_context(&b, track->codec_priv.data, track->codec_priv.size,
- AVIO_FLAG_READ, NULL, NULL, NULL, NULL);
+ 0, NULL, NULL, NULL, NULL);
ret = ff_get_wav_header(&b, st->codec, track->codec_priv.size);
if (ret < 0)
return ret;
More information about the ffmpeg-cvslog
mailing list