summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGoogle Chrome <>2010-02-09 19:44:06 +0000
committerReinhard Tartler <siretart@tauware.de>2010-02-09 19:44:06 +0000
commit9ef13f70f4d38514fa82b998f7e62abb7940f4c1 (patch)
tree3f7c061e89b27a11e06e9c6d793f197cd83fa454
parentbeb0dc5f362a2789978c95f783e530940b1c905d (diff)
= -> == 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
-rw-r--r--libavcodec/vorbis_dec.c2
1 files changed, 1 insertions, 1 deletions
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;j<vc->audio_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;