[FFmpeg-cvslog] r20048 - trunk/libavcodec/ac3.c
jbr
subversion
Sun Sep 27 08:10:36 CEST 2009
Author: jbr
Date: Sun Sep 27 08:10:36 2009
New Revision: 20048
Log:
Move some variable declarations to inside of loops.
Modified:
trunk/libavcodec/ac3.c
Modified: trunk/libavcodec/ac3.c
==============================================================================
--- trunk/libavcodec/ac3.c Sun Sep 27 08:01:32 2009 (r20047)
+++ trunk/libavcodec/ac3.c Sun Sep 27 08:10:36 2009 (r20048)
@@ -216,7 +216,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *
int snr_offset, int floor,
const uint8_t *bap_tab, uint8_t *bap)
{
- int i, j, end1, v, address;
+ int i, j;
/* special case, if snr offset is -960, set all bap's to zero */
if (snr_offset == -960) {
@@ -227,10 +227,10 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *
i = start;
j = bin_to_band_tab[start];
do {
- v = (FFMAX(mask[j] - snr_offset - floor, 0) & 0x1FE0) + floor;
- end1 = FFMIN(band_start_tab[j] + ff_ac3_critical_band_size_tab[j], end);
+ int v = (FFMAX(mask[j] - snr_offset - floor, 0) & 0x1FE0) + floor;
+ int end1 = FFMIN(band_start_tab[j] + ff_ac3_critical_band_size_tab[j], end);
for (; i < end1; i++) {
- address = av_clip((psd[i] - v) >> 5, 0, 63);
+ int address = av_clip((psd[i] - v) >> 5, 0, 63);
bap[i] = bap_tab[address];
}
} while (end > band_start_tab[j++]);
More information about the ffmpeg-cvslog
mailing list