[FFmpeg-soc] [soc]: r2184 - aac/aac.c
superdump
subversion at mplayerhq.hu
Thu May 22 14:25:20 CEST 2008
Author: superdump
Date: Thu May 22 14:25:20 2008
New Revision: 2184
Log:
Reindent after last commit
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Thu May 22 14:25:20 2008
@@ -871,13 +871,13 @@ static int aac_decode_init(AVCodecContex
if(!(ac->vq[i] = av_malloc(dim * values * sizeof(int))))
return -1;
- for (j = 0; j < values * dim; j += dim) {
- index = j/dim;
- for (k = dim - 1; k >= 0; k--) {
- ac->vq[i][j+k] = (index % mod) - off;
- index /= mod;
- }
+ for (j = 0; j < values * dim; j += dim) {
+ index = j/dim;
+ for (k = dim - 1; k >= 0; k--) {
+ ac->vq[i][j+k] = (index % mod) - off;
+ index /= mod;
}
+ }
}
dsputil_init(&ac->dsp, avccontext);
More information about the FFmpeg-soc
mailing list