cosmetics: indentation and spacing
authorJustin Ruggles <justin.ruggles@gmail.com>
Thu, 27 Jan 2011 14:21:26 +0000 (14:21 +0000)
committerMans Rullgard <mans@mansr.com>
Fri, 28 Jan 2011 00:21:46 +0000 (00:21 +0000)
libavcodec/aacdec.c
libavcodec/ac3dec.c
libavcodec/dca.c
libavcodec/nellymoserdec.c
libavcodec/wmadec.c

index fddec17fcc25cf996e5da28d003965e7ac6a16ce..2d5fb540a998d52e95bc41cecec6ca1ba32d6c63 100644 (file)
@@ -568,8 +568,8 @@ static av_cold int aac_decode_init(AVCodecContext *avctx)
     // -1024 - Compensate wrong IMDCT method.
     // 60    - Required to scale values to the correct range [-32768,32767]
     //         for float to int16 conversion. (1 << (60 / 4)) == 32768
-        ac->sf_scale  = 1. / -1024.;
-        ac->sf_offset = 60;
+    ac->sf_scale  = 1. / -1024.;
+    ac->sf_offset = 60;
 
     ff_aac_tableinit();
 
index 2f9bc261bd17c63b539dc646a6ef68b96204a2ae..ab738771b54e2c7359b7627fffccff8c575021db 100644 (file)
@@ -195,8 +195,8 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
     dsputil_init(&s->dsp, avctx);
     av_lfg_init(&s->dith_state, 0);
 
-    /* set bias values for float to int16 conversion */
-        s->mul_bias = 32767.0f;
+    /* set scale value for float to int16 conversion */
+    s->mul_bias = 32767.0f;
 
     /* allow downmixing to stereo or mono */
     if (avctx->channels > 0 && avctx->request_channels > 0 &&
index aa71411efa2ce5e269884cb51a4debd55d4c664d..fc5c0b5558afea8806d6ccf2da91e45ec1d79c8e 100644 (file)
@@ -1838,14 +1838,13 @@ static av_cold int dca_decode_init(AVCodecContext * avctx)
         s->samples_chanptr[i] = s->samples + i * 256;
     avctx->sample_fmt = AV_SAMPLE_FMT_S16;
 
-        s->scale_bias = 1.0;
-
-        /* allow downmixing to stereo */
-        if (avctx->channels > 0 && avctx->request_channels < avctx->channels &&
-                avctx->request_channels == 2) {
-            avctx->channels = avctx->request_channels;
-        }
+    s->scale_bias = 1.0;
 
+    /* allow downmixing to stereo */
+    if (avctx->channels > 0 && avctx->request_channels < avctx->channels &&
+        avctx->request_channels == 2) {
+        avctx->channels = avctx->request_channels;
+    }
 
     return 0;
 }
index e70d0622da7b38391bebfdfe576168e6f6024994..8b13a5d89425d0a97d0417b6adc8d966ec2fe795 100644 (file)
@@ -135,7 +135,7 @@ static av_cold int decode_init(AVCodecContext * avctx) {
 
     dsputil_init(&s->dsp, avctx);
 
-        s->scale_bias = 1.0/(1*8);
+    s->scale_bias = 1.0/(1*8);
 
     /* Generate overlap window */
     if (!ff_sine_128[127])
index 03d7bd19fcf159a90af8ef113a6705dde7351fe2..d85d80d574f27788634857d3ed79937037e1c449 100644 (file)
@@ -789,13 +789,13 @@ static int wma_decode_frame(WMACodecContext *s, int16_t *samples)
     /* convert frame to integer */
     n = s->frame_len;
     incr = s->nb_channels;
-        for (ch = 0; ch < MAX_CHANNELS; ch++)
-            output[ch] = s->frame_out[ch];
-        s->dsp.float_to_int16_interleave(samples, output, n, incr);
-        for(ch = 0; ch < incr; ch++) {
-            /* prepare for next block */
-            memmove(&s->frame_out[ch][0], &s->frame_out[ch][n], n * sizeof(float));
-        }
+    for (ch = 0; ch < MAX_CHANNELS; ch++)
+        output[ch] = s->frame_out[ch];
+    s->dsp.float_to_int16_interleave(samples, output, n, incr);
+    for (ch = 0; ch < incr; ch++) {
+        /* prepare for next block */
+        memmove(&s->frame_out[ch][0], &s->frame_out[ch][n], n * sizeof(float));
+    }
 
 #ifdef TRACE
     dump_shorts(s, "samples", samples, n * s->nb_channels);