summaryrefslogtreecommitdiff
path: root/libavcodec/alac.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2007-07-18 14:36:30 +0000
committerVitor Sessak <vitor1001@gmail.com>2007-07-18 14:36:30 +0000
commit60c4a31c6abbfaae33d31b733108000a16e88cbd (patch)
tree50bf5c34e76d878da1d55ed3b40630f6627ca535 /libavcodec/alac.c
parent10024d443adf17158828bf6c0a93ef9fa795e92f (diff)
Yet more cosmetics
Originally committed as revision 9737 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r--libavcodec/alac.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index b54b3b2471..040206516a 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -321,9 +321,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
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 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
}
#endif
-
/* general case */
if (predictor_coef_num > 0) {
for (i = predictor_coef_num + 1; i < output_size; i++) {
@@ -561,8 +558,8 @@ static int alac_decode_frame(AVCodecContext *avctx,
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 @@ static int alac_decode_frame(AVCodecContext *avctx,
/* 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 @@ static int alac_decode_frame(AVCodecContext *avctx,
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 @@ static int alac_decode_frame(AVCodecContext *avctx,
alac->outputsamples_buffer[chan][i] = audiobits;
}
- }
}
/* wasted_bytes = 0; */
interlacing_shift = 0;