[FFmpeg-cvslog] r21892 - trunk/libavcodec/alsdec.c
thilo.borgmann
subversion
Fri Feb 19 09:07:02 CET 2010
Author: thilo.borgmann
Date: Fri Feb 19 09:07:02 2010
New Revision: 21892
Log:
Do sequential bit reading outside of []-operators.
Modified:
trunk/libavcodec/alsdec.c
Modified: trunk/libavcodec/alsdec.c
==============================================================================
--- trunk/libavcodec/alsdec.c Fri Feb 19 07:59:47 2010 (r21891)
+++ trunk/libavcodec/alsdec.c Fri Feb 19 09:07:02 2010 (r21892)
@@ -703,10 +703,14 @@ static int read_var_block_data(ALSDecCon
*bd->use_ltp = get_bits1(gb);
if (*bd->use_ltp) {
+ int r, c;
+
bd->ltp_gain[0] = decode_rice(gb, 1) << 3;
bd->ltp_gain[1] = decode_rice(gb, 2) << 3;
- bd->ltp_gain[2] = ltp_gain_values[get_unary(gb, 0, 4)][get_bits(gb, 2)];
+ r = get_unary(gb, 0, 4);
+ c = get_bits(gb, 2);
+ bd->ltp_gain[2] = ltp_gain_values[r][c];
bd->ltp_gain[3] = decode_rice(gb, 2) << 3;
bd->ltp_gain[4] = decode_rice(gb, 1) << 3;
More information about the ffmpeg-cvslog
mailing list