From 0236383f82389d229b97e97de8c25cdf2aa22c3b Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 17 May 2007 17:11:48 +0000 Subject: [PATCH] maybe fix the stupid bug in the mp3 decoder code git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5200 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/formats/mod_shout/layer3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/formats/mod_shout/layer3.c b/src/mod/formats/mod_shout/layer3.c index 490178df2c..1e76ae38e5 100644 --- a/src/mod/formats/mod_shout/layer3.c +++ b/src/mod/formats/mod_shout/layer3.c @@ -836,11 +836,11 @@ static int III_dequantize_sample(struct mpstr *mp, real xr[SBLIMIT][SSLIMIT], in v = gr_info->pow2gain[sanity]; cb = *m++; } else { - return 1; + return 0; } } else { - return 1; + return 0; } }