1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-18 15:25:05 +02:00

alac: use get_sbits() to read LPC coefficients instead of casting

This commit is contained in:
Justin Ruggles 2012-07-09 13:19:10 -04:00
parent 7a50ec6799
commit 1193d3fedd

View File

@ -366,7 +366,7 @@ static int alac_decode_frame(AVCodecContext *avctx, void *data,
/* read the predictor table */ /* read the predictor table */
for (i = 0; i < predictor_coef_num[ch]; i++) for (i = 0; i < predictor_coef_num[ch]; i++)
predictor_coef_table[ch][i] = (int16_t)get_bits(&alac->gb, 16); predictor_coef_table[ch][i] = get_sbits(&alac->gb, 16);
} }
if (alac->extra_bits) { if (alac->extra_bits) {