From 9ef13f70f4d38514fa82b998f7e62abb7940f4c1 Mon Sep 17 00:00:00 2001 From: Google Chrome <> Date: Tue, 9 Feb 2010 19:44:06 +0000 Subject: = -> == typo. 27_vorbis_residue_loop_error.patch by chrome backport r19982 by michael Originally committed as revision 21722 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5 --- 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 a1e33babc6..cbde097b84 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -1492,7 +1492,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; -- cgit v1.2.3