summaryrefslogtreecommitdiff
path: root/libavcodec/ac3.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2009-09-27 04:41:05 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2009-09-27 04:41:05 +0000
commita7e7417c41c2c85495b74074b96989c5d68bae22 (patch)
treebee640988f5ecee430c084b526af3e57f8452ce4 /libavcodec/ac3.c
parent20520421a120ee86362548e53b4225ebb69d3aee (diff)
Move 2 variable declarations to inside of loop.
Originally committed as revision 20039 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3.c')
-rw-r--r--libavcodec/ac3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ac3.c b/libavcodec/ac3.c
index 41bc1345c9..e97c396158 100644
--- a/libavcodec/ac3.c
+++ b/libavcodec/ac3.c
@@ -98,7 +98,7 @@ static inline int calc_lowcomp(int a, int b0, int b1, int bin)
void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd,
int16_t *band_psd)
{
- int bin, j, k, end1, v;
+ int bin, j, k;
/* exponent mapping to PSD */
for(bin=start;bin<end;bin++) {
@@ -109,8 +109,8 @@ void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd,
j=start;
k=bin_to_band_tab[start];
do {
- v = psd[j++];
- end1 = FFMIN(band_start_tab[k+1], end);
+ int v = psd[j++];
+ int end1 = FFMIN(band_start_tab[k+1], end);
for (; j < end1; j++) {
/* logadd */
int adr = FFMIN(FFABS(v - psd[j]) >> 1, 255);