[FFmpeg-cvslog] ac3dec: cosmetics
Christophe Gisquet
git at videolan.org
Sat Mar 14 15:54:23 CET 2015
ffmpeg | branch: master | Christophe Gisquet <christophe.gisquet at gmail.com> | Sat Mar 14 11:49:00 2015 +0000| [73ebbfdff0bb2c22e3b5c14b11485e5798a317fd] | committer: Michael Niedermayer
ac3dec: cosmetics
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=73ebbfdff0bb2c22e3b5c14b11485e5798a317fd
---
libavcodec/ac3dec.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index ae4129f..ac53bdc 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -924,14 +924,13 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
bin = s->spx_src_start_freq;
for (bnd = 0; bnd < s->num_spx_bands; bnd++) {
- int bandsize;
+ int bandsize = s->spx_band_sizes[bnd];
int spx_coord_exp, spx_coord_mant;
INTFLOAT nratio, sblend, nblend;
#if USE_FIXED
- int64_t accu;
/* calculate blending factors */
- bandsize = s->spx_band_sizes[bnd];
- accu = (int64_t)((bin << 23) + (bandsize << 22)) * s->spx_dst_end_freq;
+ int64_t accu = ((bin << 23) + (bandsize << 22))
+ * (int64_t)s->spx_dst_end_freq;
nratio = (int)(accu >> 32);
nratio -= spx_blend << 18;
@@ -951,7 +950,6 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
float spx_coord;
/* calculate blending factors */
- bandsize = s->spx_band_sizes[bnd];
nratio = ((float)((bin + (bandsize >> 1))) / s->spx_dst_end_freq) - spx_blend;
nratio = av_clipf(nratio, 0.0f, 1.0f);
nblend = sqrtf(3.0f * nratio); // noise is scaled by sqrt(3)
More information about the ffmpeg-cvslog
mailing list