Lines Matching refs:get_bits
39 #include "get_bits.h"
173 idx = get_bits(gb, bits);\
248 vc->codebook_count = get_bits(gb, 8) + 1;
268 if (get_bits(gb, 24) != 0x564342) {
275 codebook_setup->dimensions=get_bits(gb, 16);
283 entries = get_bits(gb, 24);
310 tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
320 tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
324 unsigned current_length = get_bits(gb, 5) + 1;
334 number = get_bits(gb, ilog(entries - current_entry));
351 codebook_setup->lookup_type = get_bits(gb, 4);
364 unsigned codebook_value_bits = get_bits(gb, 4) + 1;
377 codebook_multiplicands[i] = get_bits(gb, codebook_value_bits);
481 unsigned i, vorbis_time_count = get_bits(gb, 6) + 1;
484 unsigned vorbis_tdtransform = get_bits(gb, 16);
509 vc->floor_count = get_bits(gb, 6) + 1;
518 floor_setup->floor_type = get_bits(gb, 16);
528 floor_setup->data.t1.partitions = get_bits(gb, 5);
534 floor_setup->data.t1.partition_class[j] = get_bits(gb, 4);
546 floor_setup->data.t1.class_dimensions[j] = get_bits(gb, 3) + 1;
547 floor_setup->data.t1.class_subclasses[j] = get_bits(gb, 2);
560 int16_t bits = get_bits(gb, 8) - 1;
569 floor_setup->data.t1.multiplier = get_bits(gb, 2) + 1;
580 rangebits = get_bits(gb, 4);
598 floor_setup->data.t1.list[floor1_values].x = get_bits(gb, rangebits);
616 floor_setup->data.t0.order = get_bits(gb, 8);
621 floor_setup->data.t0.rate = get_bits(gb, 16);
626 floor_setup->data.t0.bark_map_size = get_bits(gb, 16);
632 floor_setup->data.t0.amplitude_bits = get_bits(gb, 6);
633 floor_setup->data.t0.amplitude_offset = get_bits(gb, 8);
634 floor_setup->data.t0.num_books = get_bits(gb, 4) + 1;
699 vc->residue_count = get_bits(gb, 6)+1;
711 res_setup->type = get_bits(gb, 16);
715 res_setup->begin = get_bits(gb, 24);
716 res_setup->end = get_bits(gb, 24);
717 res_setup->partition_size = get_bits(gb, 24) + 1;
728 res_setup->classifications = get_bits(gb, 6) + 1;
745 low_bits = get_bits(gb, 3);
747 high_bits = get_bits(gb, 5);
780 vc->mapping_count = get_bits(gb, 6)+1;
790 if (get_bits(gb, 16)) {
795 mapping_setup->submaps = get_bits(gb, 4) + 1;
801 mapping_setup->coupling_steps = get_bits(gb, 8) + 1;
825 if (get_bits(gb, 2)) {
837 mapping_setup->mux[j] = get_bits(gb, 4);
895 vc->mode_count = get_bits(gb, 6) + 1;
906 mode_setup->windowtype = get_bits(gb, 16); //FIXME check
907 mode_setup->transformtype = get_bits(gb, 16); //FIXME check
924 if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
925 (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
926 (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
970 if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
971 (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
972 (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
978 vc->audio_channels = get_bits(gb, 8);
991 bl0 = get_bits(gb, 4);
992 bl1 = get_bits(gb, 4);
1061 hdr_type = get_bits(gb, 8);
1073 hdr_type = get_bits(gb, 8);
1120 book_idx = get_bits(&vc->gb, ilog(vf->num_books));
1235 floor1_Y[0] = get_bits(gb, ilog(range - 1));
1236 floor1_Y[1] = get_bits(gb, ilog(range - 1));
1648 int code = get_bits(gb, 2);