Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:nvals

539 FLAC__bool FLAC__bitreader_skip_byte_block_aligned_no_crc(FLAC__BitReader *br, unsigned nvals)
548 while(nvals && br->consumed_bits) { /* i.e. run until we read 'nvals' bytes or we hit the end of the head word */
551 nvals--;
553 if(0 == nvals)
556 while(nvals >= FLAC__BYTES_PER_WORD) {
559 nvals -= FLAC__BYTES_PER_WORD;
565 while(nvals) {
568 nvals--;
574 FLAC__bool FLAC__bitreader_read_byte_block_aligned_no_crc(FLAC__BitReader *br, FLAC__byte *val, unsigned nvals)
583 while(nvals && br->consumed_bits) { /* i.e. run until we read 'nvals' bytes or we hit the end of the head word */
587 nvals--;
589 if(0 == nvals)
592 while(nvals >= FLAC__BYTES_PER_WORD) {
614 nvals -= FLAC__BYTES_PER_WORD;
620 while(nvals) {
624 nvals--;
739 FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter)
757 end = vals + nvals;