[FFmpeg-soc] [soc]: r3232 - mlp/mlpenc.c
ramiro
subversion at mplayerhq.hu
Wed Aug 13 22:15:00 CEST 2008
Author: ramiro
Date: Wed Aug 13 22:15:00 2008
New Revision: 3232
Log:
Use 'temp' as a prefix instead of suffix.
Modified:
mlp/mlpenc.c
Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c (original)
+++ mlp/mlpenc.c Wed Aug 13 22:15:00 2008
@@ -438,7 +438,7 @@ static void input_data_internal(MLPEncod
for (substr = 0; substr < ctx->num_substreams; substr++) {
DecodingParams *dp = &ctx->decoding_params[substr];
RestartHeader *rh = &ctx->restart_header [substr];
- int32_t lossless_check_data_temp = 0;
+ int32_t temp_lossless_check_data = 0;
unsigned int channel;
int i;
@@ -451,12 +451,12 @@ static void input_data_internal(MLPEncod
sample <<= dp->quant_step_size[channel];
- lossless_check_data_temp ^= (sample & 0x00ffffff) << channel;
+ temp_lossless_check_data ^= (sample & 0x00ffffff) << channel;
ctx->sample_buffer[i][channel] = sample;
}
}
- lossless_check_data[substr] = lossless_check_data_temp;
+ lossless_check_data[substr] = temp_lossless_check_data;
}
}
More information about the FFmpeg-soc
mailing list