Lines Matching refs:get_bits
44 #include "get_bits.h"
503 current_run += get_bits(gb, 12);
537 current_run += get_bits(gb, 12);
669 v += (1 << n) + get_bits(gb, n); }
808 scheme = get_bits(gb, 3);
815 custom_mode_alphabet[get_bits(gb, 3)] = i;
852 coding_mode = get_bits(gb, 3);
960 motion_x[0] = fixed_motion_vector_table[get_bits(gb, 6)];
961 motion_y[0] = fixed_motion_vector_table[get_bits(gb, 6)];
992 motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)];
993 motion_y[k] = fixed_motion_vector_table[get_bits(gb, 6)];
1124 run_length += get_bits(gb, 12);
1151 v += get_bits(gb, eob_run_table[token].bits);
1161 bits_to_get = get_bits(gb, bits_to_get);
1166 zero_run += get_bits(gb, zero_run_get_bits[token]);
1321 dc_y_table = get_bits(gb, 4);
1322 dc_c_table = get_bits(gb, 4);
1356 ac_y_table = get_bits(gb, 4);
1357 ac_c_table = get_bits(gb, 4);
1549 dc_y_table = get_bits(gb, 4);
1550 dc_c_table = get_bits(gb, 4);
1552 ac_y_table = get_bits(gb, 4);
1553 ac_c_table = get_bits(gb, 4);
2605 int type = get_bits(&gb, 7);
2653 s->qps[s->nqps++] = get_bits(&gb, 6);
2698 int version = get_bits(&gb, 5);
2722 mb_height = get_bits(&gb, 8);
2723 mb_width = get_bits(&gb, 8);
2728 mb_width_mul = get_bits(&gb, 5);
2729 mb_width_div = get_bits(&gb, 3);
2730 mb_height_mul = get_bits(&gb, 5);
2731 mb_height_div = get_bits(&gb, 3);
2735 if (get_bits(&gb, 2))
2857 token = get_bits(gb, 5);
2893 s->theora = get_bits(gb, 24);
2909 s->width = get_bits(gb, 16) << 4;
2911 s->height = get_bits(gb, 16) << 4;
2914 visible_width = get_bits(gb, 24);
2915 visible_height = get_bits(gb, 24);
2917 offset_x = get_bits(gb, 8); /* offset x */
2918 offset_y = get_bits(gb, 8); /* offset y, from bottom */
2945 aspect.num = get_bits(gb, 24);
2946 aspect.den = get_bits(gb, 24);
2956 colorspace = get_bits(gb, 8);
2963 avctx->pix_fmt = theora_pix_fmts[get_bits(gb, 2)];
3009 n = get_bits(gb, 3);
3013 s->filter_limit_values[i] = get_bits(gb, n);
3017 n = get_bits(gb, 4) + 1;
3022 s->coded_ac_scale_factor[i] = get_bits(gb, n);
3025 n = get_bits(gb, 4) + 1;
3031 s->coded_dc_scale_factor[1][i] = get_bits(gb, n);
3034 matrices = get_bits(gb, 9) + 1;
3045 s->base_matrix[n][i] = get_bits(gb, 8);
3071 i = get_bits(gb, av_log2(matrices - 1) + 1);
3080 i = get_bits(gb, av_log2(63 - qi) + 1) + 1;
3138 ptype = get_bits(&gb, 8);