comparison vorbis_dec.c @ 5518:d2ef80f5fd7e libavcodec

use skip_bits where appropriate
author alex
date Thu, 09 Aug 2007 00:57:36 +0000
parents 9f8219a3b86f
children 600884524b31
comparison
equal deleted inserted replaced
5517:998ed46cfa66 5518:d2ef80f5fd7e
727 mapping_setup->mux[j]=get_bits(gb, 4); 727 mapping_setup->mux[j]=get_bits(gb, 4);
728 } 728 }
729 } 729 }
730 730
731 for(j=0;j<mapping_setup->submaps;++j) { 731 for(j=0;j<mapping_setup->submaps;++j) {
732 get_bits(gb, 8); // FIXME check? 732 skip_bits(gb, 8); // FIXME check?
733 mapping_setup->submap_floor[j]=get_bits(gb, 8); 733 mapping_setup->submap_floor[j]=get_bits(gb, 8);
734 mapping_setup->submap_residue[j]=get_bits(gb, 8); 734 mapping_setup->submap_residue[j]=get_bits(gb, 8);
735 735
736 AV_DEBUG(" %d mapping %d submap : floor %d, residue %d \n", i, j, mapping_setup->submap_floor[j], mapping_setup->submap_residue[j]); 736 AV_DEBUG(" %d mapping %d submap : floor %d, residue %d \n", i, j, mapping_setup->submap_floor[j], mapping_setup->submap_residue[j]);
737 } 737 }