[FFmpeg-soc] [soc]: r836 - dirac/libavcodec/dirac_arith.c
marco
subversion at mplayerhq.hu
Thu Aug 16 12:12:00 CEST 2007
Author: marco
Date: Thu Aug 16 12:12:00 2007
New Revision: 836
Log:
use get_bits instead of get_bits_long for 16 bits
Modified:
dirac/libavcodec/dirac_arith.c
Modified: dirac/libavcodec/dirac_arith.c
==============================================================================
--- dirac/libavcodec/dirac_arith.c (original)
+++ dirac/libavcodec/dirac_arith.c Thu Aug 16 12:12:00 2007
@@ -86,7 +86,7 @@ void dirac_arith_init (dirac_arith_state
align_get_bits(gb);
arith->pb = NULL;
arith->bits_left = 8 * length - 16;
- arith->code = get_bits_long(gb, 16);
+ arith->code = get_bits(gb, 16);
arith->gb = gb;
dirac_arith_init_common(arith);
More information about the FFmpeg-soc
mailing list