Home
last modified time | relevance | path

Searched refs:cwords (Results 1 – 1 of 1) sorted by relevance

/external/flac/src/libFLAC/
Dbitreader.c757 uint32_t cwords, words, lsbs, msbs, x, y; in FLAC__bitreader_read_rice_signed_block() local
786 cwords = br->consumed_words; in FLAC__bitreader_read_rice_signed_block()
790 if(cwords >= words) { in FLAC__bitreader_read_rice_signed_block()
796 b = br->buffer[cwords] << br->consumed_bits; /* keep unconsumed bits aligned to left */ in FLAC__bitreader_read_rice_signed_block()
805 cwords++; in FLAC__bitreader_read_rice_signed_block()
806 if (cwords >= words) in FLAC__bitreader_read_rice_signed_block()
808 b = br->buffer[cwords]; in FLAC__bitreader_read_rice_signed_block()
825 cwords++; in FLAC__bitreader_read_rice_signed_block()
826 if (cwords >= words) in FLAC__bitreader_read_rice_signed_block()
828 b = br->buffer[cwords]; in FLAC__bitreader_read_rice_signed_block()
[all …]