# HG changeset patch # User vitor # Date 1184769390 0 # Node ID 59a9c1e471fc90e692767e82ae7f8eddbc93d934 # Parent 8feb956bdbeefface0866d6b9a62fd763f49a4b1 Yet more cosmetics diff -r 8feb956bdbee -r 59a9c1e471fc alac.c --- a/alac.c Wed Jul 18 14:29:14 2007 +0000 +++ b/alac.c Wed Jul 18 14:36:30 2007 +0000 @@ -321,9 +321,7 @@ int32_t val; val = buffer_out[i] + error_buffer[i+1]; - val = SIGN_EXTENDED32(val, readsamplesize); - buffer_out[i+1] = val; } @@ -342,7 +340,6 @@ } #endif - /* general case */ if (predictor_coef_num > 0) { for (i = predictor_coef_num + 1; i < output_size; i++) { @@ -561,8 +558,8 @@ prediction_quantitization[chan]); } else { av_log(avctx, AV_LOG_ERROR, "FIXME: unhandled prediction type: %i\n", prediction_type[chan]); - /* i think the only other prediction type (or perhaps this is just a - * boolean?) runs adaptive fir twice.. like: + /* I think the only other prediction type (or perhaps this is + * just a boolean?) runs adaptive fir twice.. like: * predictor_decompress_fir_adapt(predictor_error, tempout, ...) * predictor_decompress_fir_adapt(predictor_error, outputsamples ...) * little strange.. @@ -573,7 +570,7 @@ /* not compressed, easy case */ if (alac->setinfo_sample_size <= 16) { int i, chan; - for (chan = 0; chan < channels; chan++) { + for (chan = 0; chan < channels; chan++) for (i = 0; i < outputsamples; i++) { int32_t audiobits; @@ -582,10 +579,9 @@ alac->outputsamples_buffer[chan][i] = audiobits; } - } } else { int i, chan; - for (chan = 0; chan < channels; chan++) { + for (chan = 0; chan < channels; chan++) for (i = 0; i < outputsamples; i++) { int32_t audiobits; @@ -598,7 +594,6 @@ alac->outputsamples_buffer[chan][i] = audiobits; } - } } /* wasted_bytes = 0; */ interlacing_shift = 0;