diff vorbis_dec.c @ 5513:9f8219a3b86f libavcodec

use get_bits1(..) instead get_bits(.., 1)
author alex
date Thu, 09 Aug 2007 00:13:31 +0000
parents 4cd6e59c64eb
children d2ef80f5fd7e
line wrap: on
line diff
--- a/vorbis_dec.c	Wed Aug 08 23:58:23 2007 +0000
+++ b/vorbis_dec.c	Thu Aug 09 00:13:31 2007 +0000
@@ -791,7 +791,7 @@
     for(i=0;i<vc->mode_count;++i) {
         vorbis_mode *mode_setup=&vc->modes[i];
 
-        mode_setup->blockflag=get_bits(gb, 1);
+        mode_setup->blockflag=get_bits1(gb);
         mode_setup->windowtype=get_bits(gb, 16); //FIXME check
         mode_setup->transformtype=get_bits(gb, 16); //FIXME check
         mode_setup->mapping=get_bits(gb, 8); //FIXME check