From aa926a480f2f84a87dc1fbf42d40fe23bae82ae1 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Thu, 5 Nov 2009 08:10:50 +0000 Subject: [PATCH] Initialize block_parsed before reading first block header in WavPack demuxer, it will be useful later. Originally committed as revision 20460 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/wv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/wv.c b/libavformat/wv.c index ffb2b35..e5c93f5 100644 --- a/libavformat/wv.c +++ b/libavformat/wv.c @@ -132,10 +132,10 @@ static int wv_read_header(AVFormatContext *s, WVContext *wc = s->priv_data; AVStream *st; + wc->block_parsed = 0; if(wv_read_block_header(s, pb) < 0) return -1; - wc->block_parsed = 0; /* now we are ready: build format streams */ st = av_new_stream(s, 0); if (!st) -- 2.7.4