From 08c8742cdb377459f175b963001ae72fdcec4006 Mon Sep 17 00:00:00 2001 From: Google Chrome <> Date: Wed, 23 Sep 2009 10:33:49 +0000 Subject: [PATCH] = -> == typo. 27_vorbis_residue_loop_error.patch by chrome Originally committed as revision 19982 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vorbis_dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index 25cfb31..532a060 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -1484,7 +1484,7 @@ static int vorbis_parse_audio_packet(vorbis_context *vc) { uint_fast8_t ch=0; for(j=0;jaudio_channels;++j) { - if ((mapping->submaps==1) || (i=mapping->mux[j])) { + if ((mapping->submaps==1) || (i==mapping->mux[j])) { res_chan[j]=res_num; if (no_residue[j]) { do_not_decode[ch]=1; -- 2.7.4