diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-07-09 16:56:34 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-07-19 13:26:48 -0400 |
commit | bae83f2c746f770f92ab4761f4c7bf38ed5045c5 (patch) | |
tree | dc98e6974482d5ef6efaaf3ada9165bf21799d05 | |
parent | 2aebac691827caf78d700cec56b539f4d0d239f6 (diff) | |
download | ffmpeg-bae83f2c746f770f92ab4761f4c7bf38ed5045c5.tar.gz |
alac: change some data types to plain int
-rw-r--r-- | libavcodec/alac.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c index 1c850986c8..7732f17bcf 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -263,8 +263,8 @@ static void lpc_prediction(int32_t *error_buffer, int32_t *buffer_out, } static void decorrelate_stereo(int32_t *buffer[2], - int nb_samples, uint8_t decorr_shift, - uint8_t decorr_left_weight) + int nb_samples, int decorr_shift, + int decorr_left_weight) { int i; @@ -298,10 +298,10 @@ static int decode_element(AVCodecContext *avctx, void *data, int ch_index, { ALACContext *alac = avctx->priv_data; int has_size; - unsigned int bps; + int bps; int is_compressed; - uint8_t decorr_shift; - uint8_t decorr_left_weight; + int decorr_shift; + int decorr_left_weight; uint32_t output_samples; int i, ch, ret; |