get_bits           85 libavcodec/aac_adtstoasc_bsf.c             if (get_bits(&gb, 3) != 5) {
get_bits          274 libavcodec/aacdec.c     int length = get_bits(b, 2);
get_bits          338 libavcodec/aacdec.c           avctx->extradata[i] = get_bits(&gbc, 8);
get_bits          350 libavcodec/aacdec.c     int ret, audio_mux_version = get_bits(gb, 1);
get_bits          354 libavcodec/aacdec.c         latmctx->audio_mux_version_A = get_bits(gb, 1);
get_bits          364 libavcodec/aacdec.c         if (get_bits(gb, 4)) {                  // numPrograms
get_bits          372 libavcodec/aacdec.c         if (get_bits(gb, 3)) {                   // numLayer
get_bits          387 libavcodec/aacdec.c         latmctx->frame_length_type = get_bits(gb, 3);
get_bits          393 libavcodec/aacdec.c             latmctx->frame_length = get_bits(gb, 9);
get_bits          406 libavcodec/aacdec.c         if (get_bits(gb, 1)) {                  // other data
get_bits          414 libavcodec/aacdec.c                     esc = get_bits(gb, 1);
get_bits          420 libavcodec/aacdec.c         if (get_bits(gb, 1))                     // crc present
get_bits          436 libavcodec/aacdec.c             tmp = get_bits(gb, 8);
get_bits          454 libavcodec/aacdec.c     uint8_t use_same_mux = get_bits(gb, 1);
get_bits          490 libavcodec/aacdec.c     if (get_bits(&gb, 11) != LOAS_SYNC_WORD)
get_bits          493 libavcodec/aacdec.c     muxlength = get_bits(&gb, 13) + 3;
get_bits          716 libavcodec/aacdec_template.c         layout_map[0][1] = get_bits(gb, 4);
get_bits          745 libavcodec/aacdec_template.c     sampling_index = get_bits(gb, 4);
get_bits          751 libavcodec/aacdec_template.c     num_front       = get_bits(gb, 4);
get_bits          752 libavcodec/aacdec_template.c     num_side        = get_bits(gb, 4);
get_bits          753 libavcodec/aacdec_template.c     num_back        = get_bits(gb, 4);
get_bits          754 libavcodec/aacdec_template.c     num_lfe         = get_bits(gb, 2);
get_bits          755 libavcodec/aacdec_template.c     num_assoc_data  = get_bits(gb, 3);
get_bits          756 libavcodec/aacdec_template.c     num_cc          = get_bits(gb, 4);
get_bits          787 libavcodec/aacdec_template.c     comment_len = get_bits(gb, 8) * 8;
get_bits          867 libavcodec/aacdec_template.c             res_flags = get_bits(gb, 3);
get_bits          883 libavcodec/aacdec_template.c         ep_config = get_bits(gb, 2);
get_bits          913 libavcodec/aacdec_template.c     res_flags = get_bits(gb, 3);
get_bits          927 libavcodec/aacdec_template.c     while (get_bits(gb, 4) != ELDEXT_TERM) {
get_bits          928 libavcodec/aacdec_template.c         int len = get_bits(gb, 4);
get_bits          930 libavcodec/aacdec_template.c             len += get_bits(gb, 8);
get_bits          932 libavcodec/aacdec_template.c             len += get_bits(gb, 16);
get_bits          947 libavcodec/aacdec_template.c     ep_config = get_bits(gb, 2);
get_bits         1254 libavcodec/aacdec_template.c     int count = get_bits(gb, 8);
get_bits         1256 libavcodec/aacdec_template.c         count += get_bits(gb, 8);
get_bits         1273 libavcodec/aacdec_template.c         ics->predictor_reset_group = get_bits(gb, 5);
get_bits         1295 libavcodec/aacdec_template.c     ltp->lag  = get_bits(gb, 11);
get_bits         1296 libavcodec/aacdec_template.c     ltp->coef = ltp_coef[get_bits(gb, 3)];
get_bits         1319 libavcodec/aacdec_template.c         ics->window_sequence[0] = get_bits(gb, 2);
get_bits         1335 libavcodec/aacdec_template.c         ics->max_sfb = get_bits(gb, 4);
get_bits         1355 libavcodec/aacdec_template.c         ics->max_sfb           = get_bits(gb, 6);
get_bits         1402 libavcodec/aacdec_template.c                 if ((ics->ltp.present = get_bits(gb, 1)))
get_bits         1441 libavcodec/aacdec_template.c             int sect_band_type = get_bits(gb, 4);
get_bits         1447 libavcodec/aacdec_template.c                 sect_len_incr = get_bits(gb, bits);
get_bits         1515 libavcodec/aacdec_template.c                         offset[1] += get_bits(gb, NOISE_PRE_BITS) - NOISE_PRE;
get_bits         1558 libavcodec/aacdec_template.c     pulse->num_pulse = get_bits(gb, 2) + 1;
get_bits         1559 libavcodec/aacdec_template.c     pulse_swb        = get_bits(gb, 6);
get_bits         1563 libavcodec/aacdec_template.c     pulse->pos[0]   += get_bits(gb, 5);
get_bits         1566 libavcodec/aacdec_template.c     pulse->amp[0]    = get_bits(gb, 4);
get_bits         1568 libavcodec/aacdec_template.c         pulse->pos[i] = get_bits(gb, 5) + pulse->pos[i - 1];
get_bits         1571 libavcodec/aacdec_template.c         pulse->amp[i] = get_bits(gb, 4);
get_bits         1588 libavcodec/aacdec_template.c         if ((tns->n_filt[w] = get_bits(gb, 2 - is8))) {
get_bits         1593 libavcodec/aacdec_template.c                 tns->length[w][filt] = get_bits(gb, 6 - 2 * is8);
get_bits         1595 libavcodec/aacdec_template.c                 if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) {
get_bits         1609 libavcodec/aacdec_template.c                         tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
get_bits         1987 libavcodec/aacdec_template.c     uint8_t max_band = get_bits(gb, 2);
get_bits         1990 libavcodec/aacdec_template.c             uint8_t adjust_num = get_bits(gb, 3);
get_bits         2029 libavcodec/aacdec_template.c     global_gain = get_bits(gb, 8);
get_bits         2201 libavcodec/aacdec_template.c             if ((cpe->ch[1].ics.ltp.present = get_bits(gb, 1)))
get_bits         2203 libavcodec/aacdec_template.c         ms_present = get_bits(gb, 2);
get_bits         2250 libavcodec/aacdec_template.c     coup->num_coupled = get_bits(gb, 3);
get_bits         2254 libavcodec/aacdec_template.c         coup->id_select[c] = get_bits(gb, 4);
get_bits         2256 libavcodec/aacdec_template.c             coup->ch_select[c] = get_bits(gb, 2);
get_bits         2264 libavcodec/aacdec_template.c     sign  = get_bits(gb, 1);
get_bits         2266 libavcodec/aacdec_template.c     scale = get_bits(gb, 2);
get_bits         2268 libavcodec/aacdec_template.c     scale = cce_scale[get_bits(gb, 2)];
get_bits         2352 libavcodec/aacdec_template.c         che_drc->pce_instance_tag  = get_bits(gb, 4);
get_bits         2364 libavcodec/aacdec_template.c         che_drc->band_incr            = get_bits(gb, 4);
get_bits         2365 libavcodec/aacdec_template.c         che_drc->interpolation_scheme = get_bits(gb, 4);
get_bits         2369 libavcodec/aacdec_template.c             che_drc->band_top[i] = get_bits(gb, 8);
get_bits         2376 libavcodec/aacdec_template.c         che_drc->prog_ref_level = get_bits(gb, 7);
get_bits         2383 libavcodec/aacdec_template.c         che_drc->dyn_rng_ctl[i] = get_bits(gb, 7);
get_bits         2397 libavcodec/aacdec_template.c     get_bits(gb, 13); len -= 13;
get_bits         2400 libavcodec/aacdec_template.c         buf[i] = get_bits(gb, 8);
get_bits         2428 libavcodec/aacdec_template.c     int type = get_bits(gb, 4);
get_bits         3156 libavcodec/aacdec_template.c     while ((elem_type = get_bits(gb, 3)) != TYPE_END) {
get_bits         3157 libavcodec/aacdec_template.c         elem_id = get_bits(gb, 4);
get_bits         3246 libavcodec/aacdec_template.c                 elem_id += get_bits(gb, 8) - 1;
get_bits          170 libavcodec/aacps.c             int iid_mode = get_bits(gb, 3);
get_bits          182 libavcodec/aacps.c             ps->icc_mode = get_bits(gb, 3);
get_bits          195 libavcodec/aacps.c     ps->num_env     = num_env_tab[ps->frame_class][get_bits(gb, 2)];
get_bits          200 libavcodec/aacps.c             ps->border_position[e] = get_bits(gb, 5);
get_bits          229 libavcodec/aacps.c         int cnt = get_bits(gb, 4);
get_bits          231 libavcodec/aacps.c             cnt += get_bits(gb, 8);
get_bits          235 libavcodec/aacps.c             int ps_extension_id = get_bits(gb, 2);
get_bits          202 libavcodec/aacsbr_template.c     sbr->spectrum_params.bs_start_freq  = get_bits(gb, 4);
get_bits          203 libavcodec/aacsbr_template.c     sbr->spectrum_params.bs_stop_freq   = get_bits(gb, 4);
get_bits          204 libavcodec/aacsbr_template.c     sbr->spectrum_params.bs_xover_band  = get_bits(gb, 3);
get_bits          211 libavcodec/aacsbr_template.c         sbr->spectrum_params.bs_freq_scale  = get_bits(gb, 2);
get_bits          213 libavcodec/aacsbr_template.c         sbr->spectrum_params.bs_noise_bands = get_bits(gb, 2);
get_bits          225 libavcodec/aacsbr_template.c         sbr->bs_limiter_bands  = get_bits(gb, 2);
get_bits          226 libavcodec/aacsbr_template.c         sbr->bs_limiter_gains  = get_bits(gb, 2);
get_bits          645 libavcodec/aacsbr_template.c     switch (bs_frame_class = get_bits(gb, 2)) {
get_bits          647 libavcodec/aacsbr_template.c         bs_num_env = 1 << get_bits(gb, 2);
get_bits          673 libavcodec/aacsbr_template.c         abs_bord_trail                     += get_bits(gb, 2);
get_bits          674 libavcodec/aacsbr_template.c         num_rel_trail                       = get_bits(gb, 2);
get_bits          681 libavcodec/aacsbr_template.c                 ch_data->t_env[ch_data->bs_num_env - i] - 2 * get_bits(gb, 2) - 2;
get_bits          683 libavcodec/aacsbr_template.c         bs_pointer = get_bits(gb, ceil_log2[ch_data->bs_num_env]);
get_bits          689 libavcodec/aacsbr_template.c         ch_data->t_env[0]                   = get_bits(gb, 2);
get_bits          690 libavcodec/aacsbr_template.c         num_rel_lead                        = get_bits(gb, 2);
get_bits          695 libavcodec/aacsbr_template.c             ch_data->t_env[i + 1] = ch_data->t_env[i] + 2 * get_bits(gb, 2) + 2;
get_bits          697 libavcodec/aacsbr_template.c         bs_pointer = get_bits(gb, ceil_log2[ch_data->bs_num_env]);
get_bits          702 libavcodec/aacsbr_template.c         ch_data->t_env[0]                   = get_bits(gb, 2);
get_bits          703 libavcodec/aacsbr_template.c         abs_bord_trail                     += get_bits(gb, 2);
get_bits          704 libavcodec/aacsbr_template.c         num_rel_lead                        = get_bits(gb, 2);
get_bits          705 libavcodec/aacsbr_template.c         num_rel_trail                       = get_bits(gb, 2);
get_bits          719 libavcodec/aacsbr_template.c             ch_data->t_env[i + 1] = ch_data->t_env[i] + 2 * get_bits(gb, 2) + 2;
get_bits          722 libavcodec/aacsbr_template.c                 ch_data->t_env[ch_data->bs_num_env - i] - 2 * get_bits(gb, 2) - 2;
get_bits          724 libavcodec/aacsbr_template.c         bs_pointer = get_bits(gb, ceil_log2[ch_data->bs_num_env]);
get_bits          810 libavcodec/aacsbr_template.c         ch_data->bs_invf_mode[0][i] = get_bits(gb, 2);
get_bits          884 libavcodec/aacsbr_template.c             ch_data->env_facs_q[i + 1][0] = delta * get_bits(gb, bits); // bs_env_start_value_balance
get_bits          932 libavcodec/aacsbr_template.c             ch_data->noise_facs_q[i + 1][0] = delta * get_bits(gb, 5); // bs_noise_start_value_balance or bs_noise_start_value_level
get_bits         1075 libavcodec/aacsbr_template.c         int num_bits_left = get_bits(gb, 4); // bs_extension_size
get_bits         1077 libavcodec/aacsbr_template.c             num_bits_left += get_bits(gb, 8); // bs_esc_count
get_bits         1082 libavcodec/aacsbr_template.c             read_sbr_extension(ac, sbr, gb, get_bits(gb, 2), &num_bits_left); // bs_extension_id
get_bits           60 libavcodec/ac3_parser.c     hdr->sync_word = get_bits(gbc, 16);
get_bits           80 libavcodec/ac3_parser.c         hdr->crc1 = get_bits(gbc, 16);
get_bits           81 libavcodec/ac3_parser.c         hdr->sr_code = get_bits(gbc, 2);
get_bits           85 libavcodec/ac3_parser.c         frame_size_code = get_bits(gbc, 6);
get_bits           91 libavcodec/ac3_parser.c         hdr->bitstream_mode = get_bits(gbc, 3);
get_bits           92 libavcodec/ac3_parser.c         hdr->channel_mode = get_bits(gbc, 3);
get_bits           95 libavcodec/ac3_parser.c             hdr->dolby_surround_mode = get_bits(gbc, 2);
get_bits           98 libavcodec/ac3_parser.c                 hdr->  center_mix_level =   center_levels[get_bits(gbc, 2)];
get_bits          100 libavcodec/ac3_parser.c                 hdr->surround_mix_level = surround_levels[get_bits(gbc, 2)];
get_bits          114 libavcodec/ac3_parser.c         hdr->frame_type = get_bits(gbc, 2);
get_bits          118 libavcodec/ac3_parser.c         hdr->substreamid = get_bits(gbc, 3);
get_bits          120 libavcodec/ac3_parser.c         hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
get_bits          124 libavcodec/ac3_parser.c         hdr->sr_code = get_bits(gbc, 2);
get_bits          126 libavcodec/ac3_parser.c             int sr_code2 = get_bits(gbc, 2);
get_bits          132 libavcodec/ac3_parser.c             hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)];
get_bits          137 libavcodec/ac3_parser.c         hdr->channel_mode = get_bits(gbc, 3);
get_bits          242 libavcodec/ac3dec.c         s->dialog_normalization[(!s->channel_mode)-i] = -get_bits(gbc, 5);
get_bits          253 libavcodec/ac3dec.c                 AC3_HEAVY_RANGE(get_bits(gbc, 8));
get_bits          271 libavcodec/ac3dec.c             s->preferred_downmix       = get_bits(gbc, 2);
get_bits          272 libavcodec/ac3dec.c             s->center_mix_level_ltrt   = get_bits(gbc, 3);
get_bits          273 libavcodec/ac3dec.c             s->surround_mix_level_ltrt = av_clip(get_bits(gbc, 3), 3, 7);
get_bits          274 libavcodec/ac3dec.c             s->center_mix_level        = get_bits(gbc, 3);
get_bits          275 libavcodec/ac3dec.c             s->surround_mix_level      = av_clip(get_bits(gbc, 3), 3, 7);
get_bits          278 libavcodec/ac3dec.c             s->dolby_surround_ex_mode = get_bits(gbc, 2);
get_bits          279 libavcodec/ac3dec.c             s->dolby_headphone_mode   = get_bits(gbc, 2);
get_bits          286 libavcodec/ac3dec.c         i = get_bits(gbc, 6);
get_bits          439 libavcodec/ac3dec.c         expacc = get_bits(gbc, 7);
get_bits          540 libavcodec/ac3dec.c                 int bits      = get_bits(gbc, 5);
get_bits          552 libavcodec/ac3dec.c                 int bits      = get_bits(gbc, 7);
get_bits          560 libavcodec/ac3dec.c             mantissa = b3_mantissas[get_bits(gbc, 3)];
get_bits          567 libavcodec/ac3dec.c                 int bits   = get_bits(gbc, 7);
get_bits          574 libavcodec/ac3dec.c             mantissa = b5_mantissas[get_bits(gbc, 4)];
get_bits          833 libavcodec/ac3dec.c     dst_start_freq = get_bits(bc, 2);
get_bits          834 libavcodec/ac3dec.c     start_subband  = get_bits(bc, 3) + 2;
get_bits          837 libavcodec/ac3dec.c     end_subband    = get_bits(bc, 3) + 5;
get_bits          886 libavcodec/ac3dec.c                 spx_blend = AC3_SPX_BLEND(get_bits(bc, 5));
get_bits          887 libavcodec/ac3dec.c                 master_spx_coord = get_bits(bc, 2) * 3;
get_bits          926 libavcodec/ac3dec.c                     spx_coord_exp  = get_bits(bc, 4);
get_bits          927 libavcodec/ac3dec.c                     spx_coord_mant = get_bits(bc, 2);
get_bits          992 libavcodec/ac3dec.c         cpl_start_subband = get_bits(bc, 4);
get_bits          994 libavcodec/ac3dec.c                                           get_bits(bc, 4) + 3;
get_bits         1034 libavcodec/ac3dec.c                 master_cpl_coord = 3 * get_bits(bc, 2);
get_bits         1036 libavcodec/ac3dec.c                     cpl_coord_exp  = get_bits(bc, 4);
get_bits         1037 libavcodec/ac3dec.c                     cpl_coord_mant = get_bits(bc, 4);
get_bits         1101 libavcodec/ac3dec.c             int range_bits = get_bits(gbc, 8);
get_bits         1174 libavcodec/ac3dec.c             s->exp_strategy[blk][ch] = get_bits(gbc, 2 - (ch == s->lfe_ch));
get_bits         1190 libavcodec/ac3dec.c                 int bandwidth_code = get_bits(gbc, 6);
get_bits         1211 libavcodec/ac3dec.c             s->dexps[ch][0] = get_bits(gbc, 4) << !ch;
get_bits         1225 libavcodec/ac3dec.c             s->bit_alloc_params.slow_decay = ff_ac3_slow_decay_tab[get_bits(gbc, 2)] >> s->bit_alloc_params.sr_shift;
get_bits         1226 libavcodec/ac3dec.c             s->bit_alloc_params.fast_decay = ff_ac3_fast_decay_tab[get_bits(gbc, 2)] >> s->bit_alloc_params.sr_shift;
get_bits         1227 libavcodec/ac3dec.c             s->bit_alloc_params.slow_gain  = ff_ac3_slow_gain_tab[get_bits(gbc, 2)];
get_bits         1228 libavcodec/ac3dec.c             s->bit_alloc_params.db_per_bit = ff_ac3_db_per_bit_tab[get_bits(gbc, 2)];
get_bits         1229 libavcodec/ac3dec.c             s->bit_alloc_params.floor  = ff_ac3_floor_tab[get_bits(gbc, 3)];
get_bits         1244 libavcodec/ac3dec.c             csnr = (get_bits(gbc, 6) - 15) << 4;
get_bits         1248 libavcodec/ac3dec.c                     snr = (csnr + get_bits(gbc, 4)) << 2;
get_bits         1258 libavcodec/ac3dec.c                     s->fast_gain[ch] = ff_ac3_fast_gain_tab[get_bits(gbc, 3)];
get_bits         1274 libavcodec/ac3dec.c             s->fast_gain[ch] = ff_ac3_fast_gain_tab[get_bits(gbc, 3)];
get_bits         1292 libavcodec/ac3dec.c             int fl = get_bits(gbc, 3);
get_bits         1293 libavcodec/ac3dec.c             int sl = get_bits(gbc, 3);
get_bits         1314 libavcodec/ac3dec.c             s->dba_mode[ch] = get_bits(gbc, 2);
get_bits         1324 libavcodec/ac3dec.c                 s->dba_nsegs[ch] = get_bits(gbc, 3) + 1;
get_bits         1326 libavcodec/ac3dec.c                     s->dba_offsets[ch][seg] = get_bits(gbc, 5);
get_bits         1327 libavcodec/ac3dec.c                     s->dba_lengths[ch][seg] = get_bits(gbc, 4);
get_bits         1328 libavcodec/ac3dec.c                     s->dba_values[ch][seg]  = get_bits(gbc, 3);
get_bits         1375 libavcodec/ac3dec.c         int skipl = get_bits(gbc, 9);
get_bits          640 libavcodec/adpcm.c     nb_bits = get_bits(&gb, 2)+2;
get_bits          648 libavcodec/adpcm.c             c->status[i].step_index = get_bits(&gb, 6);
get_bits          656 libavcodec/adpcm.c                 int delta = get_bits(&gb, nb_bits);
get_bits           35 libavcodec/adts_header.c     if (get_bits(gbc, 12) != 0xfff)
get_bits           41 libavcodec/adts_header.c     aot     = get_bits(gbc, 2);  /* profile_objecttype */
get_bits           42 libavcodec/adts_header.c     sr      = get_bits(gbc, 4);  /* sample_frequency_index */
get_bits           46 libavcodec/adts_header.c     ch = get_bits(gbc, 3);       /* channel_configuration */
get_bits           54 libavcodec/adts_header.c     size = get_bits(gbc, 13);    /* aac_frame_length */
get_bits           59 libavcodec/adts_header.c     rdb = get_bits(gbc, 2);      /* number_of_raw_data_blocks_in_frame */
get_bits          158 libavcodec/agm.c         *level = get_bits(gb, len);
get_bits          170 libavcodec/agm.c                     *oskip = get_bits(gb, 16);
get_bits          172 libavcodec/agm.c                     *oskip = get_bits(gb, 4);
get_bits          176 libavcodec/agm.c                 *oskip = get_bits(gb, 10);
get_bits          179 libavcodec/agm.c             *oskip = get_bits(gb, 10);
get_bits          185 libavcodec/agm.c             *oskip = get_bits(gb, 4);
get_bits         1062 libavcodec/agm.c     x = get_bits(gb, 1);
get_bits         1063 libavcodec/agm.c     len = 4 + get_bits(gb, 1);
get_bits         1066 libavcodec/agm.c         int count = get_bits(gb, 3) + 1;
get_bits         1069 libavcodec/agm.c             cb[i] = get_bits(gb, len);
get_bits         1072 libavcodec/agm.c             int idx = get_bits(gb, 3);
get_bits         1077 libavcodec/agm.c             lens[i] = get_bits(gb, len);
get_bits          199 libavcodec/aic.c             val = (val << add_bits) + get_bits(gb, add_bits); \
get_bits          216 libavcodec/aic.c     coeff_bits = get_bits(gb, 3);
get_bits          220 libavcodec/aic.c         skip_bits = get_bits(gb, 3);
get_bits          251 libavcodec/alac.c     alac->extra_bits = get_bits(&alac->gb, 2) << 3;
get_bits          302 libavcodec/alac.c         decorr_shift       = get_bits(&alac->gb, 8);
get_bits          303 libavcodec/alac.c         decorr_left_weight = get_bits(&alac->gb, 8);
get_bits          306 libavcodec/alac.c             prediction_type[ch]   = get_bits(&alac->gb, 4);
get_bits          307 libavcodec/alac.c             lpc_quant[ch]         = get_bits(&alac->gb, 4);
get_bits          308 libavcodec/alac.c             rice_history_mult[ch] = get_bits(&alac->gb, 3);
get_bits          309 libavcodec/alac.c             lpc_order[ch]         = get_bits(&alac->gb, 5);
get_bits          324 libavcodec/alac.c                     alac->extra_bits_buffer[ch][i] = get_bits(&alac->gb, alac->extra_bits);
get_bits          430 libavcodec/alac.c         element = get_bits(&alac->gb, 3);
get_bits          325 libavcodec/alsdec.c     sconf->resolution           = get_bits(&gb, 3);
get_bits          328 libavcodec/alsdec.c     sconf->frame_length         = get_bits(&gb, 16) + 1;
get_bits          329 libavcodec/alsdec.c     sconf->ra_distance          = get_bits(&gb, 8);
get_bits          330 libavcodec/alsdec.c     sconf->ra_flag              = get_bits(&gb, 2);
get_bits          332 libavcodec/alsdec.c     sconf->coef_table           = get_bits(&gb, 2);
get_bits          334 libavcodec/alsdec.c     sconf->max_order            = get_bits(&gb, 10);
get_bits          335 libavcodec/alsdec.c     sconf->block_switching      = get_bits(&gb, 2);
get_bits          361 libavcodec/alsdec.c         sconf->chan_config_info = get_bits(&gb, 16);
get_bits          384 libavcodec/alsdec.c             idx = get_bits(&gb, chan_pos_bits);
get_bits          657 libavcodec/alsdec.c             log2_sub_blocks = get_bits(gb, 2);
get_bits          675 libavcodec/alsdec.c         s[0] = get_bits(gb, 8 + (sconf->resolution > 1));
get_bits          684 libavcodec/alsdec.c         s[0] = get_bits(gb, 4 + (sconf->resolution > 1));
get_bits          695 libavcodec/alsdec.c         *bd->shift_lsbs = get_bits(gb, 4) + 1;
get_bits          704 libavcodec/alsdec.c             *bd->opt_order       = get_bits(gb, opt_order_length);
get_bits          722 libavcodec/alsdec.c                 quant_cof[0] = 32 * parcor_scaled_values[get_bits(gb, 7)];
get_bits          726 libavcodec/alsdec.c                     quant_cof[1] = -32 * parcor_scaled_values[get_bits(gb, 7)];
get_bits          730 libavcodec/alsdec.c                     quant_cof[k] = get_bits(gb, 7);
get_bits          780 libavcodec/alsdec.c             c                 = get_bits(gb, 2);
get_bits          791 libavcodec/alsdec.c             *bd->ltp_lag      = get_bits(gb, ctx->ltp_lag_length);
get_bits         1250 libavcodec/alsdec.c                 current->time_diff_index = get_bits(gb, ctx->ltp_lag_length - 3) + 3;
get_bits         1486 libavcodec/alsdec.c                 tmp_32 = get_bits(gb, 23);
get_bits         1496 libavcodec/alsdec.c         highest_byte = get_bits(gb, 2);
get_bits         1501 libavcodec/alsdec.c             shift_value[c] = get_bits(gb, 8);
get_bits          476 libavcodec/apedec.c         x = (x << k) | get_bits(gb, k);
get_bits          498 libavcodec/apedec.c         x = (overflow << rice->k) + get_bits(gb, rice->k);
get_bits           74 libavcodec/asvdec.c     return ff_reverse[get_bits(gb, n) << (8 - n)];
get_bits          101 libavcodec/asvdec.c     block[0] = 8 * get_bits(&a->gb, 8);
get_bits          173 libavcodec/atrac1.c         log2_block_count_tmp = get_bits(gb, 2);
get_bits          180 libavcodec/atrac1.c     log2_block_count_tmp = get_bits(gb, 2);
get_bits          198 libavcodec/atrac1.c     su->num_bfus = bfu_amount_tab1[get_bits(gb, 3)];
get_bits          204 libavcodec/atrac1.c                 bfu_amount_tab2[get_bits(gb, 2)] +
get_bits          205 libavcodec/atrac1.c                 (bfu_amount_tab3[get_bits(gb, 3)] << 1);
get_bits          209 libavcodec/atrac1.c         idwls[i] = get_bits(gb, 4);
get_bits          213 libavcodec/atrac1.c         idsfs[i] = get_bits(gb, 6);
get_bits          236 libavcodec/atrac3.c                     code = get_bits(gb, num_bits); // num_bits is always 4 in this case
get_bits          278 libavcodec/atrac3.c     num_subbands = get_bits(gb, 5);  // number of coded subbands
get_bits          283 libavcodec/atrac3.c         subband_vlc_index[i] = get_bits(gb, 3);
get_bits          288 libavcodec/atrac3.c             sf_index[i] = get_bits(gb, 6);
get_bits          337 libavcodec/atrac3.c     nb_components = get_bits(gb, 5);
get_bits          343 libavcodec/atrac3.c     coding_mode_selector = get_bits(gb, 2);
get_bits          355 libavcodec/atrac3.c         coded_values_per_component = get_bits(gb, 3);
get_bits          357 libavcodec/atrac3.c         quant_step_index = get_bits(gb, 3);
get_bits          370 libavcodec/atrac3.c             coded_components = get_bits(gb, 3);
get_bits          377 libavcodec/atrac3.c                 sf_index = get_bits(gb, 6);
get_bits          381 libavcodec/atrac3.c                 cmp->pos = b * 64 + get_bits(gb, 6);
get_bits          422 libavcodec/atrac3.c         gain[b].num_points = get_bits(gb, 3);
get_bits          427 libavcodec/atrac3.c             level[j] = get_bits(gb, 4);
get_bits          428 libavcodec/atrac3.c             loc[j]   = get_bits(gb, 5);
get_bits          585 libavcodec/atrac3.c         if (get_bits(gb, 2) != 3) {
get_bits          590 libavcodec/atrac3.c         if (get_bits(gb, 6) != 0x28) {
get_bits          597 libavcodec/atrac3.c     snd->bands_coded = get_bits(gb, 2);
get_bits          705 libavcodec/atrac3.c             q->weighting_delay[js_pair][5] = get_bits(&q->gb, 3);
get_bits          710 libavcodec/atrac3.c                 q->matrix_coeff_index_next[js_pair][i] = get_bits(&q->gb, 2);
get_bits          224 libavcodec/atrac3plus.c     chan->fill_mode = get_bits(gb, 2);
get_bits          228 libavcodec/atrac3plus.c         chan->num_coded_vals = get_bits(gb, 5);
get_bits          236 libavcodec/atrac3plus.c             chan->split_point = get_bits(gb, 2) + (chan->ch_num << 1) + 1;
get_bits          322 libavcodec/atrac3plus.c     start_val = get_bits((gb), 6);                                       \
get_bits          323 libavcodec/atrac3plus.c     unpack_vq_shape(start_val, &atrac3p_sf_shapes[get_bits((gb), 6)][0], \
get_bits          346 libavcodec/atrac3plus.c     switch (get_bits(gb, 2)) { /* switch according to coding mode */
get_bits          349 libavcodec/atrac3plus.c             chan->qu_wordlen[i] = get_bits(gb, 3);
get_bits          357 libavcodec/atrac3plus.c                 vlc_tab = &wl_vlc_tabs[get_bits(gb, 2)];
get_bits          365 libavcodec/atrac3plus.c             weight_idx = get_bits(gb, 2);
get_bits          370 libavcodec/atrac3plus.c                 pos = get_bits(gb, 5);
get_bits          377 libavcodec/atrac3plus.c                 delta_bits = get_bits(gb, 2);
get_bits          378 libavcodec/atrac3plus.c                 min_val    = get_bits(gb, 3);
get_bits          381 libavcodec/atrac3plus.c                     chan->qu_wordlen[i] = get_bits(gb, 3);
get_bits          393 libavcodec/atrac3plus.c             vlc_tab = &wl_vlc_tabs[get_bits(gb, 2)];
get_bits          403 libavcodec/atrac3plus.c             flag    = get_bits(gb, 1);
get_bits          404 libavcodec/atrac3plus.c             vlc_tab = &wl_vlc_tabs[get_bits(gb, 1)];
get_bits          406 libavcodec/atrac3plus.c             start_val = get_bits(gb, 3);
get_bits          408 libavcodec/atrac3plus.c                             &atrac3p_wl_shapes[start_val][get_bits(gb, 4)][0],
get_bits          435 libavcodec/atrac3plus.c         weight_idx = get_bits(gb, 2);
get_bits          440 libavcodec/atrac3plus.c             vlc_tab = &wl_vlc_tabs[get_bits(gb, 2)];
get_bits          443 libavcodec/atrac3plus.c             chan->qu_wordlen[0] = get_bits(gb, 3);
get_bits          491 libavcodec/atrac3plus.c     switch (get_bits(gb, 2)) { /* switch according to coding mode */
get_bits          494 libavcodec/atrac3plus.c             chan->qu_sf_idx[i] = get_bits(gb, 6);
get_bits          498 libavcodec/atrac3plus.c             vlc_tab = &sf_vlc_tabs[get_bits(gb, 2)];
get_bits          505 libavcodec/atrac3plus.c             weight_idx = get_bits(gb, 2);
get_bits          509 libavcodec/atrac3plus.c                 num_long_vals = get_bits(gb, 5);
get_bits          510 libavcodec/atrac3plus.c                 delta_bits    = get_bits(gb, 2);
get_bits          511 libavcodec/atrac3plus.c                 min_val       = get_bits(gb, 4) - 7;
get_bits          515 libavcodec/atrac3plus.c                                           get_bits(gb, 4) - 7) & 0x3F;
get_bits          522 libavcodec/atrac3plus.c                 num_long_vals = get_bits(gb, 5);
get_bits          523 libavcodec/atrac3plus.c                 delta_bits    = get_bits(gb, 3);
get_bits          524 libavcodec/atrac3plus.c                 min_val       = get_bits(gb, 6);
get_bits          533 libavcodec/atrac3plus.c                     chan->qu_sf_idx[i] = get_bits(gb, 6);
get_bits          544 libavcodec/atrac3plus.c             vlc_tab = &sf_vlc_tabs[get_bits(gb, 2)];
get_bits          555 libavcodec/atrac3plus.c             vlc_tab = &sf_vlc_tabs[get_bits(gb, 2) + 4];
get_bits          572 libavcodec/atrac3plus.c             weight_idx = get_bits(gb, 2);
get_bits          573 libavcodec/atrac3plus.c             vlc_sel    = get_bits(gb, 2);
get_bits          581 libavcodec/atrac3plus.c                 diff               = (get_bits(gb, 4)    + 56)   & 0x3F;
get_bits          591 libavcodec/atrac3plus.c                 chan->qu_sf_idx[0] = get_bits(gb, 6);
get_bits          683 libavcodec/atrac3plus.c         num_coded_vals = get_bits(gb, 5);
get_bits          707 libavcodec/atrac3plus.c #define CODING_DIRECT get_bits(gb, num_bits)
get_bits          741 libavcodec/atrac3plus.c     switch (get_bits(gb, 2)) { /* switch according to coding mode */
get_bits          907 libavcodec/atrac3plus.c                 chan->power_levs[i] = get_bits(gb, 4);
get_bits          976 libavcodec/atrac3plus.c     switch (get_bits(gb, 2)) { /* switch according to coding mode */
get_bits          979 libavcodec/atrac3plus.c             chan->gain_data[i].num_points = get_bits(gb, 3);
get_bits         1014 libavcodec/atrac3plus.c             delta_bits = get_bits(gb, 2);
get_bits         1015 libavcodec/atrac3plus.c             min_val    = get_bits(gb, 3);
get_bits         1082 libavcodec/atrac3plus.c     switch (get_bits(gb, 2)) { /* switch according to coding mode */
get_bits         1086 libavcodec/atrac3plus.c                 chan->gain_data[sb].lev_code[i] = get_bits(gb, 4);
get_bits         1133 libavcodec/atrac3plus.c             delta_bits = get_bits(gb, 2);
get_bits         1134 libavcodec/atrac3plus.c             min_val    = get_bits(gb, 4);
get_bits         1163 libavcodec/atrac3plus.c         dst->loc_code[pos] = get_bits(gb, 5);
get_bits         1169 libavcodec/atrac3plus.c                              get_bits(gb, delta_bits) + 1;
get_bits         1188 libavcodec/atrac3plus.c         dst->loc_code[0] = get_bits(gb, 5);
get_bits         1222 libavcodec/atrac3plus.c     switch (get_bits(gb, 2)) { /* switch according to coding mode */
get_bits         1329 libavcodec/atrac3plus.c             delta_bits = get_bits(gb, 2) + 1;
get_bits         1330 libavcodec/atrac3plus.c             min_val    = get_bits(gb, 5);
get_bits         1335 libavcodec/atrac3plus.c                                                       get_bits(gb, delta_bits);
get_bits         1376 libavcodec/atrac3plus.c             coded_subbands = get_bits(gb, 4) + 1;
get_bits         1378 libavcodec/atrac3plus.c                 ctx->channels[ch_num].num_gain_subbands = get_bits(gb, 4) + 1;
get_bits         1422 libavcodec/atrac3plus.c                                                ? get_bits(gb, 5) : -1;
get_bits         1425 libavcodec/atrac3plus.c                                                ? get_bits(gb, 5) : 32;
get_bits         1458 libavcodec/atrac3plus.c     mode = get_bits(gb, ch_num + 1);
get_bits         1463 libavcodec/atrac3plus.c                 dst[sb].num_wavs = get_bits(gb, 4);
get_bits         1530 libavcodec/atrac3plus.c                     iwav[dst[sb].num_wavs - 1].freq_index = get_bits(gb, 10);
get_bits         1533 libavcodec/atrac3plus.c                     iwav[i].freq_index = get_bits(gb, nbits);
get_bits         1538 libavcodec/atrac3plus.c                         iwav[i].freq_index = get_bits(gb, 10);
get_bits         1541 libavcodec/atrac3plus.c                         iwav[i].freq_index = get_bits(gb, nbits) +
get_bits         1608 libavcodec/atrac3plus.c     mode = get_bits(gb, ch_num + 1);
get_bits         1617 libavcodec/atrac3plus.c                     ctx->waves_info->waves[dst[sb].start_index + i].amp_sf = get_bits(gb, 6);
get_bits         1619 libavcodec/atrac3plus.c                 ctx->waves_info->waves[dst[sb].start_index].amp_sf = get_bits(gb, 6);
get_bits         1686 libavcodec/atrac3plus.c             wparam[i].phase_index = get_bits(gb, 5);
get_bits         1767 libavcodec/atrac3plus.c     ctx->num_quant_units = get_bits(gb, 5) + 1;
get_bits         1810 libavcodec/atrac3plus.c         ctx->noise_level_index = get_bits(gb, 4);
get_bits         1811 libavcodec/atrac3plus.c         ctx->noise_table_index = get_bits(gb, 4);
get_bits          350 libavcodec/atrac3plusdec.c            (ch_unit_id = get_bits(&ctx->gb, 2)) != CH_UNIT_TERMINATOR) {
get_bits          110 libavcodec/atrac9dec.c     b->grad_mode = get_bits(gb, 2);
get_bits          112 libavcodec/atrac9dec.c         grad_range[0] = get_bits(gb, 5);
get_bits          114 libavcodec/atrac9dec.c         grad_value[0] = get_bits(gb, 5);
get_bits          117 libavcodec/atrac9dec.c         grad_range[0] = get_bits(gb, 6);
get_bits          118 libavcodec/atrac9dec.c         grad_range[1] = get_bits(gb, 6) + 1;
get_bits          119 libavcodec/atrac9dec.c         grad_value[0] = get_bits(gb, 5);
get_bits          120 libavcodec/atrac9dec.c         grad_value[1] = get_bits(gb, 5);
get_bits          122 libavcodec/atrac9dec.c     b->grad_boundary = get_bits(gb, 4);
get_bits          206 libavcodec/atrac9dec.c             b->channel[1].band_ext = get_bits(gb, 2);
get_bits          219 libavcodec/atrac9dec.c         skip_bits_long(gb, get_bits(gb, 5));
get_bits          223 libavcodec/atrac9dec.c     b->channel[0].band_ext = get_bits(gb, 2);
get_bits          226 libavcodec/atrac9dec.c     if (!get_bits(gb, 5)) {
get_bits          244 libavcodec/atrac9dec.c             c->band_ext_data[j] = get_bits(gb, len);
get_bits          256 libavcodec/atrac9dec.c     const int mode = mode_map[channel_idx][get_bits(gb, 2)];
get_bits          267 libavcodec/atrac9dec.c         const uint8_t *sf_weights = at9_tab_sf_weights[get_bits(gb, 3)];
get_bits          268 libavcodec/atrac9dec.c         const int base = get_bits(gb, 5);
get_bits          269 libavcodec/atrac9dec.c         const int len = get_bits(gb, 2) + 3;
get_bits          272 libavcodec/atrac9dec.c         c->scalefactors[0] = get_bits(gb, len);
get_bits          285 libavcodec/atrac9dec.c         const int len = get_bits(gb, 2) + 2;
get_bits          286 libavcodec/atrac9dec.c         const int base = len < 5 ? get_bits(gb, 5) : 0;
get_bits          288 libavcodec/atrac9dec.c             c->scalefactors[i] = base + get_bits(gb, len);
get_bits          300 libavcodec/atrac9dec.c         const int len = get_bits(gb, 2) + 2;
get_bits          310 libavcodec/atrac9dec.c             c->scalefactors[i] = get_bits(gb, 5);
get_bits          320 libavcodec/atrac9dec.c         const int base = get_bits(gb, 5) - (1 << (5 - 1));
get_bits          321 libavcodec/atrac9dec.c         const int len = get_bits(gb, 2) + 1;
get_bits          325 libavcodec/atrac9dec.c         c->scalefactors[0] = get_bits(gb, len);
get_bits          336 libavcodec/atrac9dec.c             c->scalefactors[i] = get_bits(gb, 5);
get_bits          425 libavcodec/atrac9dec.c                 coeffs[j] = sign_extend(get_bits(gb, prec), prec);
get_bits          444 libavcodec/atrac9dec.c             c->q_coeffs_fine[j] = sign_extend(get_bits(gb, len), len);
get_bits          652 libavcodec/atrac9dec.c             c->scalefactors[i] = get_bits(gb, 5);
get_bits          661 libavcodec/atrac9dec.c                 c->q_coeffs_coarse[j] = get_bits(gb, c->precision_coarse[i] + 1);
get_bits          680 libavcodec/atrac9dec.c         b->band_count = get_bits(gb, 4) + min_band_count;
get_bits          692 libavcodec/atrac9dec.c             stereo_band = get_bits(gb, 4) + min_band_count;
get_bits          703 libavcodec/atrac9dec.c             ext_band = get_bits(gb, 4) + min_band_count;
get_bits          870 libavcodec/atrac9dec.c     if (get_bits(&gb, 8) != 0xFE) {
get_bits          875 libavcodec/atrac9dec.c     s->samplerate_idx = get_bits(&gb, 4);
get_bits          878 libavcodec/atrac9dec.c     block_config_idx = get_bits(&gb, 3);
get_bits          895 libavcodec/atrac9dec.c     s->avg_frame_size = get_bits(&gb, 11) + 1;
get_bits          897 libavcodec/atrac9dec.c     superframe_idx = get_bits(&gb, 2);
get_bits           92 libavcodec/av1_parse.h         int byte = get_bits(gb, 8);
get_bits          115 libavcodec/av1_parse.h     *type      = get_bits(&gb, 4);
get_bits          121 libavcodec/av1_parse.h         *temporal_id = get_bits(&gb, 3);
get_bits          122 libavcodec/av1_parse.h         *spatial_id  = get_bits(&gb, 2);
get_bits          496 libavcodec/bgmc.c     *v = get_bits(gb, VALUE_BITS);
get_bits          252 libavcodec/bink.c     tree->vlc_num = get_bits(gb, 4);
get_bits          259 libavcodec/bink.c         len = get_bits(gb, 3);
get_bits          261 libavcodec/bink.c             tree->syms[i] = get_bits(gb, 4);
get_bits          268 libavcodec/bink.c         len = get_bits(gb, 2);
get_bits          322 libavcodec/bink.c     t = get_bits(gb, b->len); \
get_bits          342 libavcodec/bink.c         v = get_bits(gb, 4);
get_bits          366 libavcodec/bink.c         v = get_bits(gb, 4);
get_bits          411 libavcodec/bink.c         v = get_bits(gb, 4);
get_bits          510 libavcodec/bink.c     v = get_bits(gb, start_bits - has_sign);
get_bits          523 libavcodec/bink.c         bsize = get_bits(gb, 4);
get_bits          526 libavcodec/bink.c                 v2 = get_bits(gb, bsize);
get_bits          595 libavcodec/bink.c                 *b->cur_dec++ = get_bits(gb, bits);
get_bits          598 libavcodec/bink.c                 *b->cur_dec++ = get_bits(gb, bits) - mask;
get_bits          605 libavcodec/bink.c                 *dst++ = get_bits(gb, bits);
get_bits          608 libavcodec/bink.c                 *dst++ = get_bits(gb, bits) - mask;
get_bits          659 libavcodec/bink.c     for (bits = get_bits(gb, 4) - 1; bits >= 0; bits--) {
get_bits          685 libavcodec/bink.c                             t = get_bits(gb, bits) | 1 << bits;
get_bits          706 libavcodec/bink.c                     t = get_bits(gb, bits) | 1 << bits;
get_bits          720 libavcodec/bink.c         quant_idx = get_bits(gb, 4);
get_bits          768 libavcodec/bink.c     for (mask = 1 << get_bits(gb, 3); mask; mask >>= 1) {
get_bits          888 libavcodec/bink.c                 scan = bink_patterns[get_bits(gb, 4)];
get_bits          894 libavcodec/bink.c                     run = get_bits(gb, binkb_runbits[i]) + 1;
get_bits         1037 libavcodec/bink.c         int fill = get_bits(gb, 8);
get_bits         1103 libavcodec/bink.c                     scan = bink_patterns[get_bits(gb, 4)];
get_bits         1168 libavcodec/bink.c                 scan = bink_patterns[get_bits(gb, 4)];
get_bits         1196 libavcodec/bink.c                 v = get_bits(gb, 7);
get_bits          155 libavcodec/binkaudio.c     int power = get_bits(gb, 5);
get_bits          156 libavcodec/binkaudio.c     float f = ldexpf(get_bits(gb, 23), power - 23);
get_bits          199 libavcodec/binkaudio.c             int value = get_bits(gb, 8);
get_bits          214 libavcodec/binkaudio.c                     v = get_bits(gb, 4);
get_bits          223 libavcodec/binkaudio.c             width = get_bits(gb, 4);
get_bits          233 libavcodec/binkaudio.c                     coeff = get_bits(gb, width);
get_bits           87 libavcodec/bitpacked.c             *u++ = get_bits(&bc, 10);
get_bits           88 libavcodec/bitpacked.c             *y++ = get_bits(&bc, 10);
get_bits           89 libavcodec/bitpacked.c             *v++ = get_bits(&bc, 10);
get_bits           90 libavcodec/bitpacked.c             *y++ = get_bits(&bc, 10);
get_bits          511 libavcodec/cavsdec.c         return (ret<<order) + get_bits(gb, order);
get_bits          674 libavcodec/cavsdec.c             int rem_mode = get_bits(gb, 2);
get_bits          821 libavcodec/cavsdec.c             sub_type[block] = get_bits(&h->gb, 2);
get_bits          941 libavcodec/cavsdec.c         h->qp       = get_bits(gb, 6);
get_bits          966 libavcodec/cavsdec.c         h->stc = get_bits(gb, 8);
get_bits          996 libavcodec/cavsdec.c         h->cur.f->pict_type = get_bits(&h->gb, 2) + AV_PICTURE_TYPE_I;
get_bits         1034 libavcodec/cavsdec.c     h->cur.poc = get_bits(&h->gb, 8) * 2;
get_bits         1068 libavcodec/cavsdec.c     h->qp       = get_bits(&h->gb, 6);
get_bits         1176 libavcodec/cavsdec.c     h->profile = get_bits(&h->gb, 8);
get_bits         1177 libavcodec/cavsdec.c     h->level   = get_bits(&h->gb, 8);
get_bits         1180 libavcodec/cavsdec.c     width  = get_bits(&h->gb, 14);
get_bits         1181 libavcodec/cavsdec.c     height = get_bits(&h->gb, 14);
get_bits         1193 libavcodec/cavsdec.c     h->aspect_ratio = get_bits(&h->gb, 4);
get_bits         1194 libavcodec/cavsdec.c     frame_rate_code = get_bits(&h->gb, 4);
get_bits          236 libavcodec/cbs_av1.c         v = get_bits(gbc, w - 1);
get_bits          530 libavcodec/cbs_av1.c         if (get_bits(&tmp, 8))
get_bits         1601 libavcodec/cbs_av1_syntax_template.c                 val = get_bits(&fh, b);
get_bits         2120 libavcodec/cbs_h265_syntax_template.c     payload_zero_bits = get_bits(&tmp, FFMIN(bits_left, 8));
get_bits           44 libavcodec/cbs_vp9.c     magnitude = get_bits(gbc, width);
get_bits          192 libavcodec/cbs_vp9.c         value |= get_bits(gbc, 8) << b;
get_bits          110 libavcodec/clearvideo.c             skip = get_bits(gb, 6);
get_bits           64 libavcodec/cljrdec.c             luma[3] = (get_bits(&gb, 5)*33) >> 2;
get_bits           65 libavcodec/cljrdec.c             luma[2] = (get_bits(&gb, 5)*33) >> 2;
get_bits           66 libavcodec/cljrdec.c             luma[1] = (get_bits(&gb, 5)*33) >> 2;
get_bits           67 libavcodec/cljrdec.c             luma[0] = (get_bits(&gb, 5)*33) >> 2;
get_bits           69 libavcodec/cljrdec.c             *(cb++) = get_bits(&gb, 6) << 2;
get_bits           70 libavcodec/cljrdec.c             *(cr++) = get_bits(&gb, 6) << 2;
get_bits           57 libavcodec/cllc.c     num_lens = get_bits(gb, 5);
get_bits           67 libavcodec/cllc.c         num_codes      = get_bits(gb, 9);
get_bits           79 libavcodec/cllc.c             symbols[count] = get_bits(gb, 8);
get_bits          336 libavcodec/cllc.c     block = get_bits(gb, 8);
get_bits          347 libavcodec/cook.c         int index = get_bits(gb, 3);
get_bits          348 libavcodec/cook.c         int gain = get_bits1(gb) ? get_bits(gb, 4) - 7 : -1;
get_bits          368 libavcodec/cook.c     quant_index_table[0] = get_bits(&q->gb, 6) - 6; // This is used later in categorize
get_bits          641 libavcodec/cook.c     q->num_vectors = get_bits(&q->gb, p->log2_numvector_size);
get_bits          765 libavcodec/cook.c             int v = get_bits(&q->gb, p->js_vlc_bits);
get_bits           97 libavcodec/dca.c     h->deficit_samples = get_bits(gb, 5) + 1;
get_bits          102 libavcodec/dca.c     h->npcmblocks = get_bits(gb, 7) + 1;
get_bits          106 libavcodec/dca.c     h->frame_size = get_bits(gb, 14) + 1;
get_bits          110 libavcodec/dca.c     h->audio_mode = get_bits(gb, 6);
get_bits          114 libavcodec/dca.c     h->sr_code = get_bits(gb, 4);
get_bits          118 libavcodec/dca.c     h->br_code = get_bits(gb, 5);
get_bits          126 libavcodec/dca.c     h->ext_audio_type = get_bits(gb, 3);
get_bits          129 libavcodec/dca.c     h->lfe_present = get_bits(gb, 2);
get_bits          137 libavcodec/dca.c     h->encoder_rev = get_bits(gb, 4);
get_bits          138 libavcodec/dca.c     h->copy_hist = get_bits(gb, 2);
get_bits          139 libavcodec/dca.c     h->pcmr_code = get_bits(gb, 3);
get_bits          145 libavcodec/dca.c     h->dn_code = get_bits(gb, 4);
get_bits          162 libavcodec/dca_core.c         s->nsubframes = get_bits(&s->gb, 4) + 1;
get_bits          165 libavcodec/dca_core.c         s->nchannels = get_bits(&s->gb, 3) + 1;
get_bits          187 libavcodec/dca_core.c         header_size = get_bits(&s->gb, 7) + 1;
get_bits          197 libavcodec/dca_core.c         nchannels = get_bits(&s->gb, 3) + 1;
get_bits          230 libavcodec/dca_core.c             index = get_bits(&s->gb, 6) * 4 - FF_DCA_DMIXTABLE_OFFSET - 3;
get_bits          251 libavcodec/dca_core.c                         int code = get_bits(&s->gb, 7);
get_bits          275 libavcodec/dca_core.c         s->nsubbands[ch] = get_bits(&s->gb, 5) + 2;
get_bits          284 libavcodec/dca_core.c         s->subband_vq_start[ch] = get_bits(&s->gb, 5) + 1;
get_bits          288 libavcodec/dca_core.c         if ((n = get_bits(&s->gb, 3)) && header == HEADER_XXCH)
get_bits          299 libavcodec/dca_core.c         s->transition_mode_sel[ch] = get_bits(&s->gb, 2);
get_bits          303 libavcodec/dca_core.c         s->scale_factor_sel[ch] = get_bits(&s->gb, 3);
get_bits          312 libavcodec/dca_core.c         s->bit_allocation_sel[ch] = get_bits(&s->gb, 3);
get_bits          322 libavcodec/dca_core.c             s->quant_index_sel[ch][n] = get_bits(&s->gb, ff_dca_quant_index_sel_nbits[n]);
get_bits          328 libavcodec/dca_core.c                 s->scale_factor_adj[ch][n] = ff_dca_scale_factor_adj[get_bits(&s->gb, 2)];
get_bits          365 libavcodec/dca_core.c         *scale_index = get_bits(&s->gb, sel + 1);
get_bits          384 libavcodec/dca_core.c         scale_index = get_bits(&s->gb, sel + 1);
get_bits          409 libavcodec/dca_core.c         s->nsubsubframes[sf] = get_bits(&s->gb, 2) + 1;
get_bits          424 libavcodec/dca_core.c                 s->prediction_vq_index[ch][band] = get_bits(&s->gb, 12);
get_bits          436 libavcodec/dca_core.c                 abits = get_bits(&s->gb, sel - 1);
get_bits          493 libavcodec/dca_core.c             s->joint_scale_sel[ch] = get_bits(&s->gb, 3);
get_bits          549 libavcodec/dca_core.c     int code1 = get_bits(&s->gb, block_code_nbits[abits - 1]);
get_bits          550 libavcodec/dca_core.c     int code2 = get_bits(&s->gb, block_code_nbits[abits - 1]);
get_bits          643 libavcodec/dca_core.c             vq_index[band] = get_bits(&s->gb, 10);
get_bits          665 libavcodec/dca_core.c         index = get_bits(&s->gb, 8);
get_bits          728 libavcodec/dca_core.c         if ((ssf == s->nsubsubframes[sf] - 1 || s->sync_ssf) && get_bits(&s->gb, 16) != 0xffff) {
get_bits          870 libavcodec/dca_core.c     header_size = get_bits(&s->gb, 6) + 1;
get_bits          882 libavcodec/dca_core.c     s->xxch_mask_nbits = get_bits(&s->gb, 5) + 1;
get_bits          889 libavcodec/dca_core.c     xxch_nchsets = get_bits(&s->gb, 2) + 1;
get_bits          896 libavcodec/dca_core.c     xxch_frame_size = get_bits(&s->gb, 14) + 1;
get_bits          955 libavcodec/dca_core.c         xbr_nabits[ch] = get_bits(&s->gb, 2) + 2;
get_bits          960 libavcodec/dca_core.c             xbr_bit_allocation[ch][band] = get_bits(&s->gb, xbr_nabits[ch]);
get_bits          970 libavcodec/dca_core.c         xbr_scale_nbits[ch] = get_bits(&s->gb, 3);
get_bits          995 libavcodec/dca_core.c                 int scale_index = get_bits(&s->gb, xbr_scale_nbits[ch]);
get_bits         1002 libavcodec/dca_core.c                     scale_index = get_bits(&s->gb, xbr_scale_nbits[ch]);
get_bits         1057 libavcodec/dca_core.c         if ((ssf == s->nsubsubframes[sf] - 1 || s->sync_ssf) && get_bits(&s->gb, 16) != 0xffff) {
get_bits         1085 libavcodec/dca_core.c     header_size = get_bits(&s->gb, 6) + 1;
get_bits         1094 libavcodec/dca_core.c     xbr_nchsets = get_bits(&s->gb, 2) + 1;
get_bits         1098 libavcodec/dca_core.c         xbr_frame_size[i] = get_bits(&s->gb, 14) + 1;
get_bits         1105 libavcodec/dca_core.c         xbr_nchannels[i] = get_bits(&s->gb, 3) + 1;
get_bits         1106 libavcodec/dca_core.c         xbr_band_nbits = get_bits(&s->gb, 2) + 5;
get_bits         1108 libavcodec/dca_core.c             xbr_nsubbands[ch2] = get_bits(&s->gb, xbr_band_nbits) + 1;
get_bits         1193 libavcodec/dca_core.c                     const int8_t *vq_samples = ff_dca_high_freq_vq[get_bits(&s->gb, 10)];
get_bits         1237 libavcodec/dca_core.c         if ((ssf == s->nsubsubframes[sf] - 1 || s->sync_ssf) && get_bits(&s->gb, 16) != 0xffff) {
get_bits         1322 libavcodec/dca_core.c                 s->prediction_vq_index[ch][band] = get_bits(&s->gb, 12);
get_bits         1334 libavcodec/dca_core.c                 abits = get_bits(&s->gb, 3 + s->x96_high_res);
get_bits         1362 libavcodec/dca_core.c             s->joint_scale_sel[ch] = get_bits(&s->gb, 3);
get_bits         1399 libavcodec/dca_core.c         header_size = get_bits(&s->gb, 7) + 1;
get_bits         1414 libavcodec/dca_core.c         s->x96_subband_start = get_bits(&s->gb, 5);
get_bits         1425 libavcodec/dca_core.c         s->nsubbands[ch] = get_bits(&s->gb, 6) + 1;
get_bits         1434 libavcodec/dca_core.c         if ((n = get_bits(&s->gb, 3)) && xch_base)
get_bits         1445 libavcodec/dca_core.c         s->scale_factor_sel[ch] = get_bits(&s->gb, 3);
get_bits         1454 libavcodec/dca_core.c         s->bit_allocation_sel[ch] = get_bits(&s->gb, 3);
get_bits         1459 libavcodec/dca_core.c             s->quant_index_sel[ch][n] = get_bits(&s->gb, ff_dca_quant_index_sel_nbits[n]);
get_bits         1517 libavcodec/dca_core.c     s->x96_rev_no = get_bits(&s->gb, 4);
get_bits         1555 libavcodec/dca_core.c     header_size = get_bits(&s->gb, 6) + 1;
get_bits         1564 libavcodec/dca_core.c     s->x96_rev_no = get_bits(&s->gb, 4);
get_bits         1574 libavcodec/dca_core.c     x96_nchsets = get_bits(&s->gb, 2) + 1;
get_bits         1578 libavcodec/dca_core.c         x96_frame_size[i] = get_bits(&s->gb, 12) + 1;
get_bits         1582 libavcodec/dca_core.c         x96_nchannels[i] = get_bits(&s->gb, 3) + 1;
get_bits         1647 libavcodec/dca_core.c         s->prim_dmix_type = get_bits(&s->gb, 3);
get_bits         1659 libavcodec/dca_core.c             int code = get_bits(&s->gb, 9);
get_bits           26 libavcodec/dca_exss.c     asset->xll_size = get_bits(&s->gb, s->exss_size_nbits) + 1;
get_bits           36 libavcodec/dca_exss.c         xll_delay_nbits = get_bits(&s->gb, 5) + 1;
get_bits           42 libavcodec/dca_exss.c         asset->xll_sync_offset = get_bits(&s->gb, s->exss_size_nbits);
get_bits           52 libavcodec/dca_exss.c     asset->lbr_size = get_bits(&s->gb, 14) + 1;
get_bits           65 libavcodec/dca_exss.c     descr_size = get_bits(&s->gb, 9) + 1;
get_bits           68 libavcodec/dca_exss.c     asset->asset_index = get_bits(&s->gb, 3);
get_bits           88 libavcodec/dca_exss.c             int text_size = get_bits(&s->gb, 10) + 1;
get_bits           99 libavcodec/dca_exss.c         asset->pcm_bit_res = get_bits(&s->gb, 5) + 1;
get_bits          102 libavcodec/dca_exss.c         asset->max_sample_rate = ff_dca_sampling_freqs[get_bits(&s->gb, 4)];
get_bits          105 libavcodec/dca_exss.c         asset->nchannels_total = get_bits(&s->gb, 8) + 1;
get_bits          122 libavcodec/dca_exss.c                 spkr_mask_nbits = (get_bits(&s->gb, 2) + 1) << 2;
get_bits          125 libavcodec/dca_exss.c                 asset->spkr_mask = get_bits(&s->gb, spkr_mask_nbits);
get_bits          129 libavcodec/dca_exss.c             if ((spkr_remap_nsets = get_bits(&s->gb, 3)) && !spkr_mask_nbits) {
get_bits          137 libavcodec/dca_exss.c                 nspeakers[i] = ff_dca_count_chs_for_mask(get_bits(&s->gb, spkr_mask_nbits));
get_bits          141 libavcodec/dca_exss.c                 int nch_for_remaps = get_bits(&s->gb, 5) + 1;
get_bits          158 libavcodec/dca_exss.c             asset->representation_type = get_bits(&s->gb, 3);
get_bits          193 libavcodec/dca_exss.c         if (get_bits(&s->gb, 2) == 3)
get_bits          222 libavcodec/dca_exss.c                 int mix_map_mask = get_bits(&s->gb, s->nmixoutchs[i]);
get_bits          235 libavcodec/dca_exss.c     asset->coding_mode = get_bits(&s->gb, 2);
get_bits          240 libavcodec/dca_exss.c         asset->extension_mask = get_bits(&s->gb, 12);
get_bits          244 libavcodec/dca_exss.c             asset->core_size = get_bits(&s->gb, 14) + 1;
get_bits          253 libavcodec/dca_exss.c             asset->xbr_size = get_bits(&s->gb, 14) + 1;
get_bits          257 libavcodec/dca_exss.c             asset->xxch_size = get_bits(&s->gb, 14) + 1;
get_bits          261 libavcodec/dca_exss.c             asset->x96_size = get_bits(&s->gb, 12) + 1;
get_bits          304 libavcodec/dca_exss.c         asset->hd_stream_id = get_bits(&s->gb, 3);
get_bits          392 libavcodec/dca_exss.c     s->exss_index = get_bits(&s->gb, 2);
get_bits          398 libavcodec/dca_exss.c     header_size = get_bits(&s->gb, 8 + 4 * wide_hdr) + 1;
get_bits          409 libavcodec/dca_exss.c     s->exss_size = get_bits(&s->gb, s->exss_size_nbits) + 1;
get_bits          432 libavcodec/dca_exss.c         s->npresents = get_bits(&s->gb, 3) + 1;
get_bits          440 libavcodec/dca_exss.c         s->nassets = get_bits(&s->gb, 3) + 1;
get_bits          449 libavcodec/dca_exss.c             active_exss_mask[i] = get_bits(&s->gb, s->exss_index + 1);
get_bits          463 libavcodec/dca_exss.c             spkr_mask_nbits = (get_bits(&s->gb, 2) + 1) << 2;
get_bits          466 libavcodec/dca_exss.c             s->nmixoutconfigs = get_bits(&s->gb, 2) + 1;
get_bits          470 libavcodec/dca_exss.c                 s->nmixoutchs[i] = ff_dca_count_chs_for_mask(get_bits(&s->gb, spkr_mask_nbits));
get_bits          481 libavcodec/dca_exss.c         s->assets[i].asset_size = get_bits(&s->gb, s->exss_size_nbits) + 1;
get_bits          149 libavcodec/dca_lbr.c     ps = get_bits(&s->gb, 24);
get_bits          154 libavcodec/dca_lbr.c     step_i = get_bits(&s->gb, 8);
get_bits          163 libavcodec/dca_lbr.c         code = get_bits(&s->gb, 6);
get_bits          203 libavcodec/dca_lbr.c     ps = get_bits(&s->gb, 16);
get_bits          208 libavcodec/dca_lbr.c     step_i = get_bits(&s->gb, 8);
get_bits          217 libavcodec/dca_lbr.c         code = get_bits(&s->gb, 4);
get_bits          277 libavcodec/dca_lbr.c     return get_bits(s, get_bits(s, 3) + 1);
get_bits          322 libavcodec/dca_lbr.c             phs[main_ch] = get_bits(&s->gb, 3);
get_bits          381 libavcodec/dca_lbr.c             s->tonal_scf[sb] = get_bits(&s->gb, 6);
get_bits          559 libavcodec/dca_lbr.c         min_v[0] = get_bits(&s->gb, 4);
get_bits          560 libavcodec/dca_lbr.c         min_v[1] = get_bits(&s->gb, 4);
get_bits          648 libavcodec/dca_lbr.c             code = get_bits(&s->gb, 8);
get_bits          666 libavcodec/dca_lbr.c                 code = ff_dca_rsd_pack_5_in_8[get_bits(&s->gb, 8)];
get_bits          677 libavcodec/dca_lbr.c             code = get_bits(&s->gb, 7);
get_bits          692 libavcodec/dca_lbr.c             samples[i] = ff_dca_rsd_level_16[get_bits(&s->gb, 4)];
get_bits          722 libavcodec/dca_lbr.c             sb_reorder = get_bits(&s->gb, s->limited_range + 3);
get_bits          743 libavcodec/dca_lbr.c                 s->sec_ch_sbms[ch1 / 2][sb_reorder] = get_bits(&s->gb, 8);
get_bits          745 libavcodec/dca_lbr.c                 s->sec_ch_lrms[ch1 / 2][sb_reorder] = get_bits(&s->gb, 8);
get_bits          799 libavcodec/dca_lbr.c                 codes[i] = get_bits(&s->gb, 4);
get_bits          821 libavcodec/dca_lbr.c     profile = get_bits(&s->gb, 8);
get_bits          217 libavcodec/dca_parser.c             switch (get_bits(&gb, 8)) {
get_bits          219 libavcodec/dca_parser.c                 pc1->sr_code = get_bits(&gb, 8);
get_bits          244 libavcodec/dca_parser.c             if (get_bits(&gb, 4))
get_bits          248 libavcodec/dca_parser.c             skip_bits_long(&gb, get_bits(&gb, 5) + 1);
get_bits          250 libavcodec/dca_parser.c             nsamples_log2 = get_bits(&gb, 4) + get_bits(&gb, 4);
get_bits           50 libavcodec/dca_xll.c         array[i] = get_bits(gb, n);
get_bits           83 libavcodec/dca_xll.c             code = get_bits(&s->gb, 9);
get_bits           98 libavcodec/dca_xll.c             code = get_bits(&s->gb, 9);
get_bits          123 libavcodec/dca_xll.c     header_size = get_bits(&s->gb, 10) + 1;
get_bits          132 libavcodec/dca_xll.c     c->nchannels = get_bits(&s->gb, 4) + 1;
get_bits          139 libavcodec/dca_xll.c     c->residual_encode = get_bits(&s->gb, c->nchannels);
get_bits          142 libavcodec/dca_xll.c     c->pcm_bit_res = get_bits(&s->gb, 5) + 1;
get_bits          145 libavcodec/dca_xll.c     c->storage_bit_res = get_bits(&s->gb, 5) + 1;
get_bits          157 libavcodec/dca_xll.c     c->freq = ff_dca_sampling_freqs[get_bits(&s->gb, 4)];
get_bits          164 libavcodec/dca_xll.c     if (get_bits(&s->gb, 2)) {
get_bits          170 libavcodec/dca_xll.c     if (get_bits(&s->gb, 2)) {
get_bits          191 libavcodec/dca_xll.c             c->dmix_type = get_bits(&s->gb, 3);
get_bits          285 libavcodec/dca_xll.c                 b->orig_order[i] = get_bits(&s->gb, ch_nbits);
get_bits          305 libavcodec/dca_xll.c             b->adapt_pred_order[i] = get_bits(&s->gb, 4);
get_bits          316 libavcodec/dca_xll.c             b->fixed_pred_order[i] = b->adapt_pred_order[i] ? 0 : get_bits(&s->gb, 2);
get_bits          352 libavcodec/dca_xll.c                 b->nscalablelsbs[i] = get_bits(&s->gb, 4);
get_bits          368 libavcodec/dca_xll.c                 b->bit_width_adjust[i] = get_bits(&s->gb, 4);
get_bits          466 libavcodec/dca_xll.c                 c->bitalloc_hybrid_linear[i] = get_bits(&s->gb, c->nabits) + 1;
get_bits          476 libavcodec/dca_xll.c                 c->bitalloc_part_a[i] = get_bits(&s->gb, c->nabits);
get_bits          492 libavcodec/dca_xll.c             c->bitalloc_part_b[i] = get_bits(&s->gb, c->nabits);
get_bits          534 libavcodec/dca_xll.c                 int nisosamples = get_bits(&s->gb, s->nsegsamples_log2);
get_bits          541 libavcodec/dca_xll.c                     int loc = get_bits(&s->gb, s->nsegsamples_log2);
get_bits          566 libavcodec/dca_xll.c         int nbits = get_bits(&s->gb, 5) + 1;
get_bits          776 libavcodec/dca_xll.c     stream_ver = get_bits(&s->gb, 4) + 1;
get_bits          783 libavcodec/dca_xll.c     header_size = get_bits(&s->gb, 8) + 1;
get_bits          792 libavcodec/dca_xll.c     frame_size_nbits = get_bits(&s->gb, 5) + 1;
get_bits          803 libavcodec/dca_xll.c     s->nchsets = get_bits(&s->gb, 4) + 1;
get_bits          810 libavcodec/dca_xll.c     nframesegs_log2 = get_bits(&s->gb, 4);
get_bits          820 libavcodec/dca_xll.c     s->nsegsamples_log2 = get_bits(&s->gb, 4);
get_bits          840 libavcodec/dca_xll.c     s->seg_size_nbits = get_bits(&s->gb, 5) + 1;
get_bits          847 libavcodec/dca_xll.c     s->band_crc_present = get_bits(&s->gb, 2);
get_bits          853 libavcodec/dca_xll.c     s->ch_mask_nbits = get_bits(&s->gb, 5) + 1;
get_bits          857 libavcodec/dca_xll.c         s->fixed_lsb_width = get_bits(&s->gb, 4);
get_bits          782 libavcodec/diracdec.c     int quant_base  = get_bits(gb, 7); /*[DIRAC_STD] qindex */
get_bits          849 libavcodec/diracdec.c     quant_idx = get_bits(gb, 8);
get_bits          868 libavcodec/diracdec.c         int64_t length = s->highquality.size_scaler*get_bits(gb, 8);
get_bits          488 libavcodec/dnxhddec.c         qscale = get_bits(&row->gb, 10);
get_bits          490 libavcodec/dnxhddec.c         qscale = get_bits(&row->gb, 11);
get_bits          101 libavcodec/dolby_e.c     mtd_size = get_bits(&s->gb, 10);
get_bits          111 libavcodec/dolby_e.c     s->prog_conf = get_bits(&s->gb, 6);
get_bits          120 libavcodec/dolby_e.c     s->fr_code      = get_bits(&s->gb, 4);
get_bits          121 libavcodec/dolby_e.c     s->fr_code_orig = get_bits(&s->gb, 4);
get_bits          130 libavcodec/dolby_e.c         s->ch_size[i] = get_bits(&s->gb, 10);
get_bits          131 libavcodec/dolby_e.c     s->mtd_ext_size = get_bits(&s->gb, 8);
get_bits          132 libavcodec/dolby_e.c     s->meter_size   = get_bits(&s->gb, 8);
get_bits          136 libavcodec/dolby_e.c         s->rev_id[i]     = get_bits(&s->gb,  4);
get_bits          138 libavcodec/dolby_e.c         s->begin_gain[i] = get_bits(&s->gb, 10);
get_bits          139 libavcodec/dolby_e.c         s->end_gain[i]   = get_bits(&s->gb, 10);
get_bits          164 libavcodec/dolby_e.c         mstr_exp[i] = get_bits(&s->gb, 2) * 6;
get_bits          167 libavcodec/dolby_e.c         bias_exp[i] = get_bits(&s->gb, 5);
get_bits          291 libavcodec/dolby_e.c              fg_spc[i] = get_bits(&s->gb, 2);
get_bits          292 libavcodec/dolby_e.c              fg_ofs[i] = get_bits(&s->gb, 3);
get_bits          306 libavcodec/dolby_e.c     snr_ofs = get_bits(&s->gb, 8);
get_bits          334 libavcodec/dolby_e.c             int start = get_bits(&s->gb, 6);
get_bits          345 libavcodec/dolby_e.c                 c->idx[g->exp_ofs + j] = get_bits(&s->gb, 2);
get_bits          428 libavcodec/dolby_e.c         c->gr_code = get_bits(&s->gb, 2);
get_bits          429 libavcodec/dolby_e.c         c->bw_code = get_bits(&s->gb, 3);
get_bits          323 libavcodec/dss_sp.c         fparam->filter_idx[i] = get_bits(&gb, 5);
get_bits          325 libavcodec/dss_sp.c         fparam->filter_idx[i] = get_bits(&gb, 4);
get_bits          327 libavcodec/dss_sp.c         fparam->filter_idx[i] = get_bits(&gb, 3);
get_bits          330 libavcodec/dss_sp.c         fparam->sf_adaptive_gain[subframe_idx] = get_bits(&gb, 5);
get_bits          334 libavcodec/dss_sp.c         fparam->sf[subframe_idx].gain = get_bits(&gb, 6);
get_bits          337 libavcodec/dss_sp.c             fparam->sf[subframe_idx].pulse_val[i] = get_bits(&gb, 3);
get_bits          399 libavcodec/dss_sp.c     combined_pitch = get_bits(&gb, 24);
get_bits          116 libavcodec/dstdec.c             map[ch] = get_bits(gb, bits);
get_bits          145 libavcodec/dstdec.c         dst[i] = (is_signed ? get_sbits(gb, coeff_bits) : get_bits(gb, coeff_bits)) + offset;
get_bits          154 libavcodec/dstdec.c         t->length[i] = get_bits(gb, length_bits) + 1;
get_bits          158 libavcodec/dstdec.c             int method = get_bits(gb, 2), lsb_size;
get_bits          164 libavcodec/dstdec.c             lsb_size  = get_bits(gb, 3);
get_bits          188 libavcodec/dstdec.c     ac->c = get_bits(gb, 12);
get_bits          208 libavcodec/dstdec.c         ac->c = (ac->c << n) | get_bits(gb, n);
get_bits          269 libavcodec/dstdec.c         if (get_bits(gb, 6))
get_bits          385 libavcodec/dvbsubdec.c         bits = get_bits(&gb, 2);
get_bits          398 libavcodec/dvbsubdec.c                 run_length = get_bits(&gb, 3) + 3;
get_bits          399 libavcodec/dvbsubdec.c                 bits = get_bits(&gb, 2);
get_bits          414 libavcodec/dvbsubdec.c                     bits = get_bits(&gb, 2);
get_bits          416 libavcodec/dvbsubdec.c                         run_length = get_bits(&gb, 4) + 12;
get_bits          417 libavcodec/dvbsubdec.c                         bits = get_bits(&gb, 2);
get_bits          430 libavcodec/dvbsubdec.c                         run_length = get_bits(&gb, 8) + 29;
get_bits          431 libavcodec/dvbsubdec.c                         bits = get_bits(&gb, 2);
get_bits          469 libavcodec/dvbsubdec.c     if (get_bits(&gb, 6))
get_bits          492 libavcodec/dvbsubdec.c         bits = get_bits(&gb, 4);
get_bits          505 libavcodec/dvbsubdec.c                 run_length = get_bits(&gb, 3);
get_bits          526 libavcodec/dvbsubdec.c                     run_length = get_bits(&gb, 2) + 4;
get_bits          527 libavcodec/dvbsubdec.c                     bits = get_bits(&gb, 4);
get_bits          540 libavcodec/dvbsubdec.c                     bits = get_bits(&gb, 2);
get_bits          542 libavcodec/dvbsubdec.c                         run_length = get_bits(&gb, 4) + 9;
get_bits          543 libavcodec/dvbsubdec.c                         bits = get_bits(&gb, 4);
get_bits          556 libavcodec/dvbsubdec.c                         run_length = get_bits(&gb, 8) + 25;
get_bits          557 libavcodec/dvbsubdec.c                         bits = get_bits(&gb, 4);
get_bits          592 libavcodec/dvbsubdec.c     if (get_bits(&gb, 8))
get_bits          265 libavcodec/dvdec.c         put_bits(pb, MIN_CACHE_BITS, get_bits(gb, MIN_CACHE_BITS));
get_bits          269 libavcodec/dvdec.c         put_bits(pb, bits_left, get_bits(gb, bits_left));
get_bits          374 libavcodec/dvdec.c             class1   = get_bits(&gb, 2);
get_bits           73 libavcodec/dvdsubdec.c         v = (v << 4) | get_bits(gb, 4);
get_bits           85 libavcodec/dvdsubdec.c     *color = get_bits(gb, 2 + 6*get_bits1(gb));
get_bits           88 libavcodec/dvdsubdec.c             len = get_bits(gb, 7);
get_bits           94 libavcodec/dvdsubdec.c             len = get_bits(gb, 3) + 2;
get_bits          185 libavcodec/dxtory.c         val = get_bits(gb, 8);
get_bits          253 libavcodec/dxtory.c         val = get_bits(gb, bits);
get_bits          145 libavcodec/dxva2_mpeg2.c     slice->wQuantizerScaleCode = get_bits(&gb, 5);
get_bits          203 libavcodec/eac3dec.c     gaq_mode = get_bits(gbc, 2);
get_bits          221 libavcodec/eac3dec.c                     int group_code = get_bits(gbc, 5);
get_bits          246 libavcodec/eac3dec.c             int v = get_bits(gbc, bits);
get_bits          329 libavcodec/eac3dec.c         s->dialog_normalization[i] = -get_bits(gbc, 5);
get_bits          339 libavcodec/eac3dec.c             s->heavy_dynamic_range[i] = AC3_HEAVY_RANGE(get_bits(gbc, 8));
get_bits          347 libavcodec/eac3dec.c             int channel_map = get_bits(gbc, 16);
get_bits          365 libavcodec/eac3dec.c             s->preferred_downmix = get_bits(gbc, 2);
get_bits          368 libavcodec/eac3dec.c                 s->center_mix_level_ltrt = get_bits(gbc, 3);
get_bits          369 libavcodec/eac3dec.c                 s->center_mix_level      = get_bits(gbc, 3);
get_bits          373 libavcodec/eac3dec.c                 s->surround_mix_level_ltrt = av_clip(get_bits(gbc, 3), 3, 7);
get_bits          374 libavcodec/eac3dec.c                 s->surround_mix_level      = av_clip(get_bits(gbc, 3), 3, 7);
get_bits          380 libavcodec/eac3dec.c             s->lfe_mix_level = get_bits(gbc, 5);
get_bits          395 libavcodec/eac3dec.c             switch(get_bits(gbc, 2)) {
get_bits          399 libavcodec/eac3dec.c                     int mix_data_size = (get_bits(gbc, 5) + 2) << 3;
get_bits          429 libavcodec/eac3dec.c         s->bitstream_mode = get_bits(gbc, 3);
get_bits          432 libavcodec/eac3dec.c             s->dolby_surround_mode  = get_bits(gbc, 2);
get_bits          433 libavcodec/eac3dec.c             s->dolby_headphone_mode = get_bits(gbc, 2);
get_bits          436 libavcodec/eac3dec.c             s->dolby_surround_ex_mode = get_bits(gbc, 2);
get_bits          464 libavcodec/eac3dec.c         int addbsil = get_bits(gbc, 6);
get_bits          482 libavcodec/eac3dec.c     s->snr_offset_strategy    = get_bits(gbc, 2);
get_bits          532 libavcodec/eac3dec.c                 s->exp_strategy[blk][ch] = get_bits(gbc, 2);
get_bits          538 libavcodec/eac3dec.c             int frmchexpstr = get_bits(gbc, 5);
get_bits          580 libavcodec/eac3dec.c         int csnroffst = (get_bits(gbc, 6) - 15) << 4;
get_bits          581 libavcodec/eac3dec.c         int snroffst = (csnroffst + get_bits(gbc, 4)) << 2;
get_bits          599 libavcodec/eac3dec.c             s->spx_atten_code[ch] = get_bits(gbc, 5);
get_bits          203 libavcodec/eamad.c         value += get_bits(gb, 4) + 1;
get_bits          217 libavcodec/eamad.c             mv_map = v ? get_bits(&s->gb, 6) : 63;
get_bits           77 libavcodec/eatgq.c             value = get_bits(gb, 6);
get_bits          216 libavcodec/eatgv.c             tmp[j] = get_bits(&gb, 8);
get_bits          218 libavcodec/eatgv.c             s->block_codebook[i][15-j] = tmp[get_bits(&gb, 2)];
get_bits          228 libavcodec/eatgv.c             unsigned int vector = get_bits(&gb, vector_bits);
get_bits          103 libavcodec/escape124.c         unsigned mask_bits = get_bits(gb, 4);
get_bits          104 libavcodec/escape124.c         unsigned color0 = get_bits(gb, 15);
get_bits          105 libavcodec/escape124.c         unsigned color1 = get_bits(gb, 15);
get_bits          128 libavcodec/escape124.c     value += get_bits(gb, 3);
get_bits          132 libavcodec/escape124.c     value += get_bits(gb, 7);
get_bits          136 libavcodec/escape124.c     return value + get_bits(gb, 12);
get_bits          255 libavcodec/escape124.c                 cb_size = get_bits(&gb, 20);
get_bits          262 libavcodec/escape124.c                 cb_depth = get_bits(&gb, 4);
get_bits          316 libavcodec/escape124.c                 mask = get_bits(&gb, 16);
get_bits          326 libavcodec/escape124.c                 unsigned inv_mask = get_bits(&gb, 4);
get_bits          331 libavcodec/escape124.c                         multi_mask ^= get_bits(&gb, 4) << i*4;
get_bits          345 libavcodec/escape124.c                     insert_mb_into_sb(&sb, mb, get_bits(&gb, 4));
get_bits          177 libavcodec/escape130.c     value = get_bits(gb, 3);
get_bits          181 libavcodec/escape130.c     value = get_bits(gb, 8);
get_bits          185 libavcodec/escape130.c     value = get_bits(gb, 15);
get_bits          258 libavcodec/escape130.c                 unsigned sign_selector       = get_bits(&gb, 6);
get_bits          259 libavcodec/escape130.c                 unsigned difference_selector = get_bits(&gb, 2);
get_bits          260 libavcodec/escape130.c                 y_avg = 2 * get_bits(&gb, 5);
get_bits          267 libavcodec/escape130.c                     y_avg = get_bits(&gb, 6);
get_bits          269 libavcodec/escape130.c                     unsigned adjust_index = get_bits(&gb, 3);
get_bits          278 libavcodec/escape130.c                     cb = get_bits(&gb, 5);
get_bits          279 libavcodec/escape130.c                     cr = get_bits(&gb, 5);
get_bits          281 libavcodec/escape130.c                     unsigned adjust_index = get_bits(&gb, 3);
get_bits          116 libavcodec/evrcdec.c         frame->lsp[0]          = get_bits(gb,  6);
get_bits          117 libavcodec/evrcdec.c         frame->lsp[1]          = get_bits(gb,  6);
get_bits          118 libavcodec/evrcdec.c         frame->lsp[2]          = get_bits(gb,  9);
get_bits          119 libavcodec/evrcdec.c         frame->lsp[3]          = get_bits(gb,  7);
get_bits          120 libavcodec/evrcdec.c         frame->pitch_delay     = get_bits(gb,  7);
get_bits          121 libavcodec/evrcdec.c         frame->delay_diff      = get_bits(gb,  5);
get_bits          122 libavcodec/evrcdec.c         frame->acb_gain[0]     = get_bits(gb,  3);
get_bits          123 libavcodec/evrcdec.c         frame->fcb_shape[0][0] = get_bits(gb,  8);
get_bits          124 libavcodec/evrcdec.c         frame->fcb_shape[0][1] = get_bits(gb,  8);
get_bits          125 libavcodec/evrcdec.c         frame->fcb_shape[0][2] = get_bits(gb,  8);
get_bits          126 libavcodec/evrcdec.c         frame->fcb_shape[0][3] = get_bits(gb, 11);
get_bits          127 libavcodec/evrcdec.c         frame->fcb_gain[0]     = get_bits(gb,  5);
get_bits          128 libavcodec/evrcdec.c         frame->acb_gain[1]     = get_bits(gb,  3);
get_bits          129 libavcodec/evrcdec.c         frame->fcb_shape[1][0] = get_bits(gb,  8);
get_bits          130 libavcodec/evrcdec.c         frame->fcb_shape[1][1] = get_bits(gb,  8);
get_bits          131 libavcodec/evrcdec.c         frame->fcb_shape[1][2] = get_bits(gb,  8);
get_bits          132 libavcodec/evrcdec.c         frame->fcb_shape[1][3] = get_bits(gb, 11);
get_bits          133 libavcodec/evrcdec.c         frame->fcb_gain    [1] = get_bits(gb,  5);
get_bits          134 libavcodec/evrcdec.c         frame->acb_gain    [2] = get_bits(gb,  3);
get_bits          135 libavcodec/evrcdec.c         frame->fcb_shape[2][0] = get_bits(gb,  8);
get_bits          136 libavcodec/evrcdec.c         frame->fcb_shape[2][1] = get_bits(gb,  8);
get_bits          137 libavcodec/evrcdec.c         frame->fcb_shape[2][2] = get_bits(gb,  8);
get_bits          138 libavcodec/evrcdec.c         frame->fcb_shape[2][3] = get_bits(gb, 11);
get_bits          139 libavcodec/evrcdec.c         frame->fcb_gain    [2] = get_bits(gb,  5);
get_bits          143 libavcodec/evrcdec.c         frame->lsp         [0] = get_bits(gb,  7);
get_bits          144 libavcodec/evrcdec.c         frame->lsp         [1] = get_bits(gb,  7);
get_bits          145 libavcodec/evrcdec.c         frame->lsp         [2] = get_bits(gb,  8);
get_bits          146 libavcodec/evrcdec.c         frame->pitch_delay     = get_bits(gb,  7);
get_bits          147 libavcodec/evrcdec.c         frame->acb_gain    [0] = get_bits(gb,  3);
get_bits          148 libavcodec/evrcdec.c         frame->fcb_shape[0][0] = get_bits(gb, 10);
get_bits          149 libavcodec/evrcdec.c         frame->fcb_gain    [0] = get_bits(gb,  4);
get_bits          150 libavcodec/evrcdec.c         frame->acb_gain    [1] = get_bits(gb,  3);
get_bits          151 libavcodec/evrcdec.c         frame->fcb_shape[1][0] = get_bits(gb, 10);
get_bits          152 libavcodec/evrcdec.c         frame->fcb_gain    [1] = get_bits(gb,  4);
get_bits          153 libavcodec/evrcdec.c         frame->acb_gain    [2] = get_bits(gb,  3);
get_bits          154 libavcodec/evrcdec.c         frame->fcb_shape[2][0] = get_bits(gb, 10);
get_bits          155 libavcodec/evrcdec.c         frame->fcb_gain    [2] = get_bits(gb,  4);
get_bits          158 libavcodec/evrcdec.c         frame->lsp         [0] = get_bits(gb, 4);
get_bits          159 libavcodec/evrcdec.c         frame->lsp         [1] = get_bits(gb, 4);
get_bits          160 libavcodec/evrcdec.c         frame->energy_gain     = get_bits(gb, 8);
get_bits          367 libavcodec/exr.c         uint64_t l = hcode[im] = get_bits(&gbit, 6);
get_bits          370 libavcodec/exr.c             int zerun = get_bits(&gbit, 8) + SHORTEST_LONG_RUN;
get_bits          299 libavcodec/faxcompr.c             int xxx = get_bits(gb, 3);
get_bits           81 libavcodec/ffv1dec_template.c                             run_count = get_bits(&s->gb, ff_log2_run[run_index]);
get_bits          153 libavcodec/fic.c     num_coeff = get_bits(gb, 7);
get_bits           46 libavcodec/flac.c     GET_UTF8(val, get_bits(gb, 8), return -1;)
get_bits           56 libavcodec/flac.c     if ((get_bits(gb, 15) & 0x7FFF) != 0x7FFC) {
get_bits           65 libavcodec/flac.c     bs_code = get_bits(gb, 4);
get_bits           66 libavcodec/flac.c     sr_code = get_bits(gb, 4);
get_bits           69 libavcodec/flac.c     fi->ch_mode = get_bits(gb, 4);
get_bits           83 libavcodec/flac.c     bps_code = get_bits(gb, 3);
get_bits          113 libavcodec/flac.c         fi->blocksize = get_bits(gb, 8) + 1;
get_bits          115 libavcodec/flac.c         fi->blocksize = get_bits(gb, 16) + 1;
get_bits          124 libavcodec/flac.c         fi->samplerate = get_bits(gb, 8) * 1000;
get_bits          126 libavcodec/flac.c         fi->samplerate = get_bits(gb, 16);
get_bits          128 libavcodec/flac.c         fi->samplerate = get_bits(gb, 16) * 10;
get_bits          211 libavcodec/flac.c     s->max_blocksize = get_bits(&gb, 16);
get_bits          220 libavcodec/flac.c     s->max_framesize = get_bits(&gb, 24);
get_bits          222 libavcodec/flac.c     s->samplerate = get_bits(&gb, 20);
get_bits          223 libavcodec/flac.c     s->channels = get_bits(&gb, 3) + 1;
get_bits          224 libavcodec/flac.c     s->bps = get_bits(&gb, 5) + 1;
get_bits          228 libavcodec/flacdec.c     method_type = get_bits(&gb, 2);
get_bits          229 libavcodec/flacdec.c     rice_order  = get_bits(&gb, 4);
get_bits          257 libavcodec/flacdec.c         tmp = get_bits(&gb, rice_bits);
get_bits          259 libavcodec/flacdec.c             tmp = get_bits(&gb, 5);
get_bits          373 libavcodec/flacdec.c     coeff_prec = get_bits(&s->gb, 4) + 1;
get_bits          424 libavcodec/flacdec.c     type = get_bits(&s->gb, 6);
get_bits          286 libavcodec/flashsv.c     s->block_width  = 16 * (get_bits(&gb, 4) + 1);
get_bits          287 libavcodec/flashsv.c     s->image_width  = get_bits(&gb, 12);
get_bits          288 libavcodec/flashsv.c     s->block_height = 16 * (get_bits(&gb, 4) + 1);
get_bits          289 libavcodec/flashsv.c     s->image_height = get_bits(&gb, 12);
get_bits          387 libavcodec/flashsv.c             int size = get_bits(&gb, 16);
get_bits          402 libavcodec/flashsv.c                 s->color_depth    = get_bits(&gb, 2);
get_bits          424 libavcodec/flashsv.c                     s->diff_start  = get_bits(&gb, 8);
get_bits          425 libavcodec/flashsv.c                     s->diff_height = get_bits(&gb, 8);
get_bits          442 libavcodec/flashsv.c                     int col = get_bits(&gb, 8);
get_bits          443 libavcodec/flashsv.c                     int row = get_bits(&gb, 8);
get_bits           33 libavcodec/flvdec.c     if (get_bits(&s->gb, 17) != 1) {
get_bits           37 libavcodec/flvdec.c     format = get_bits(&s->gb, 5);
get_bits           43 libavcodec/flvdec.c     s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */
get_bits           44 libavcodec/flvdec.c     format            = get_bits(&s->gb, 3);
get_bits           47 libavcodec/flvdec.c         width  = get_bits(&s->gb, 8);
get_bits           48 libavcodec/flvdec.c         height = get_bits(&s->gb, 8);
get_bits           51 libavcodec/flvdec.c         width  = get_bits(&s->gb, 16);
get_bits           52 libavcodec/flvdec.c         height = get_bits(&s->gb, 16);
get_bits           83 libavcodec/flvdec.c     s->pict_type = AV_PICTURE_TYPE_I + get_bits(&s->gb, 2);
get_bits           89 libavcodec/flvdec.c     s->chroma_qscale = s->qscale = get_bits(&s->gb, 5);
get_bits         1052 libavcodec/g2meet.c         if (get_bits(&gb, 8))
get_bits         1055 libavcodec/g2meet.c             col = get_bits(&gb, nb);
get_bits          111 libavcodec/g722dec.c         ihigh = get_bits(&gb, 2);
get_bits          112 libavcodec/g722dec.c         ilow = get_bits(&gb, 6 - skip);
get_bits           88 libavcodec/g723_1dec.c     info_bits = get_bits(&gb, 2);
get_bits           96 libavcodec/g723_1dec.c     p->lsp_index[2] = get_bits(&gb, 8);
get_bits           97 libavcodec/g723_1dec.c     p->lsp_index[1] = get_bits(&gb, 8);
get_bits           98 libavcodec/g723_1dec.c     p->lsp_index[0] = get_bits(&gb, 8);
get_bits          102 libavcodec/g723_1dec.c         p->subframe[0].amp_index = get_bits(&gb, 6);
get_bits          110 libavcodec/g723_1dec.c     p->pitch_lag[0] = get_bits(&gb, 7);
get_bits          114 libavcodec/g723_1dec.c     p->subframe[1].ad_cb_lag = get_bits(&gb, 2);
get_bits          116 libavcodec/g723_1dec.c     p->pitch_lag[1] = get_bits(&gb, 7);
get_bits          120 libavcodec/g723_1dec.c     p->subframe[3].ad_cb_lag = get_bits(&gb, 2);
get_bits          126 libavcodec/g723_1dec.c         temp = get_bits(&gb, 12);
get_bits          152 libavcodec/g723_1dec.c         temp = get_bits(&gb, 13);
get_bits          163 libavcodec/g723_1dec.c                                    get_bits(&gb, 16);
get_bits          165 libavcodec/g723_1dec.c                                    get_bits(&gb, 14);
get_bits          167 libavcodec/g723_1dec.c                                    get_bits(&gb, 16);
get_bits          169 libavcodec/g723_1dec.c                                    get_bits(&gb, 14);
get_bits          171 libavcodec/g723_1dec.c         p->subframe[0].pulse_sign = get_bits(&gb, 6);
get_bits          172 libavcodec/g723_1dec.c         p->subframe[1].pulse_sign = get_bits(&gb, 5);
get_bits          173 libavcodec/g723_1dec.c         p->subframe[2].pulse_sign = get_bits(&gb, 6);
get_bits          174 libavcodec/g723_1dec.c         p->subframe[3].pulse_sign = get_bits(&gb, 5);
get_bits          176 libavcodec/g723_1dec.c         p->subframe[0].pulse_pos  = get_bits(&gb, 12);
get_bits          177 libavcodec/g723_1dec.c         p->subframe[1].pulse_pos  = get_bits(&gb, 12);
get_bits          178 libavcodec/g723_1dec.c         p->subframe[2].pulse_pos  = get_bits(&gb, 12);
get_bits          179 libavcodec/g723_1dec.c         p->subframe[3].pulse_pos  = get_bits(&gb, 12);
get_bits          181 libavcodec/g723_1dec.c         p->subframe[0].pulse_sign = get_bits(&gb, 4);
get_bits          182 libavcodec/g723_1dec.c         p->subframe[1].pulse_sign = get_bits(&gb, 4);
get_bits          183 libavcodec/g723_1dec.c         p->subframe[2].pulse_sign = get_bits(&gb, 4);
get_bits          184 libavcodec/g723_1dec.c         p->subframe[3].pulse_sign = get_bits(&gb, 4);
get_bits          489 libavcodec/g726.c                                     get_bits(&gb, c->code_size));
get_bits          466 libavcodec/g729dec.c         ma_predictor     = get_bits(&gb, 1);
get_bits          467 libavcodec/g729dec.c         quantizer_1st    = get_bits(&gb, VQ_1ST_BITS);
get_bits          468 libavcodec/g729dec.c         quantizer_2nd_lo = get_bits(&gb, VQ_2ND_BITS);
get_bits          469 libavcodec/g729dec.c         quantizer_2nd_hi = get_bits(&gb, VQ_2ND_BITS);
get_bits          501 libavcodec/g729dec.c             ac_index      = get_bits(&gb, format->ac_index_bits[i]);
get_bits          504 libavcodec/g729dec.c             fc_indexes    = get_bits(&gb, format->fc_indexes_bits);
get_bits          505 libavcodec/g729dec.c             pulses_signs  = get_bits(&gb, format->fc_signs_bits);
get_bits          506 libavcodec/g729dec.c             gc_1st_index  = get_bits(&gb, format->gc_1st_index_bits);
get_bits          507 libavcodec/g729dec.c             gc_2nd_index  = get_bits(&gb, format->gc_2nd_index_bits);
get_bits           72 libavcodec/get_bits.h static inline unsigned int get_bits(GetBitContext *s, int n);
get_bits          364 libavcodec/get_bits.h     tmp = sign_extend(get_bits(s, n), n);
get_bits          417 libavcodec/get_bits.h     return n ? get_bits(s, n) : 0;
get_bits          553 libavcodec/get_bits.h     return get_bits(s, n);
get_bits          556 libavcodec/get_bits.h         return get_bits(s, n);
get_bits          559 libavcodec/get_bits.h         unsigned ret = get_bits(s, 16);
get_bits          560 libavcodec/get_bits.h         return ret | (get_bits(s, n - 16) << 16);
get_bits          562 libavcodec/get_bits.h         unsigned ret = get_bits(s, 16) << (n - 16);
get_bits          563 libavcodec/get_bits.h         return ret | get_bits(s, n - 16);
get_bits           89 libavcodec/gsmdec.c         if (get_bits(&gb, 4) != 0xd)
get_bits           34 libavcodec/gsmdec_template.c     int maxidx = get_bits(gb, 6);
get_bits           37 libavcodec/gsmdec_template.c         val = get_bits(gb, frame_bits[i]);
get_bits          129 libavcodec/gsmdec_template.c     lar[0] = decode_log_area(get_bits(gb, 6), 13107,  1 << 15);
get_bits          130 libavcodec/gsmdec_template.c     lar[1] = decode_log_area(get_bits(gb, 6), 13107,  1 << 15);
get_bits          131 libavcodec/gsmdec_template.c     lar[2] = decode_log_area(get_bits(gb, 5), 13107, (1 << 14) + 2048*2);
get_bits          132 libavcodec/gsmdec_template.c     lar[3] = decode_log_area(get_bits(gb, 5), 13107, (1 << 14) - 2560*2);
get_bits          133 libavcodec/gsmdec_template.c     lar[4] = decode_log_area(get_bits(gb, 4), 19223, (1 << 13) +   94*2);
get_bits          134 libavcodec/gsmdec_template.c     lar[5] = decode_log_area(get_bits(gb, 4), 17476, (1 << 13) - 1792*2);
get_bits          135 libavcodec/gsmdec_template.c     lar[6] = decode_log_area(get_bits(gb, 3), 31454, (1 << 12) -  341*2);
get_bits          136 libavcodec/gsmdec_template.c     lar[7] = decode_log_area(get_bits(gb, 3), 29708, (1 << 12) - 1144*2);
get_bits          139 libavcodec/gsmdec_template.c         int lag      = get_bits(gb, 7);
get_bits          140 libavcodec/gsmdec_template.c         int gain_idx = get_bits(gb, 2);
get_bits          141 libavcodec/gsmdec_template.c         int offset   = get_bits(gb, 2);
get_bits          114 libavcodec/h261dec.c     h->gob_number = get_bits(&s->gb, 4); /* GN */
get_bits          115 libavcodec/h261dec.c     s->qscale     = get_bits(&s->gb, 5); /* GQUANT */
get_bits          278 libavcodec/h261dec.c         level = get_bits(&s->gb, 8);
get_bits          405 libavcodec/h261dec.c         ff_set_qscale(s, get_bits(&s->gb, 5));
get_bits          485 libavcodec/h261dec.c         startcode = ((startcode << 1) | get_bits(&s->gb, 1)) & 0x000FFFFF;
get_bits          497 libavcodec/h261dec.c     i = get_bits(&s->gb, 5); /* picture timestamp */
get_bits          299 libavcodec/h2645_parse.c     nal->type = get_bits(gb, 6);
get_bits          301 libavcodec/h2645_parse.c     nal->nuh_layer_id = get_bits(gb, 6);
get_bits          302 libavcodec/h2645_parse.c     nal->temporal_id = get_bits(gb, 3) - 1;
get_bits          320 libavcodec/h2645_parse.c     nal->ref_idc = get_bits(gb, 2);
get_bits          321 libavcodec/h2645_parse.c     nal->type    = get_bits(gb, 5);
get_bits          510 libavcodec/h264_cavlc.c                     level_code= prefix + get_bits(gb, 4); //part
get_bits          520 libavcodec/h264_cavlc.c                 level_code += get_bits(gb, prefix-3); //part
get_bits          548 libavcodec/h264_cavlc.c                     level_code = (prefix<<suffix_length) + get_bits(gb, suffix_length);
get_bits          558 libavcodec/h264_cavlc.c                     level_code += get_bits(gb, prefix-3);
get_bits          820 libavcodec/h264_cavlc.c                     const int rem_mode= get_bits(&sl->gb, 3);
get_bits          109 libavcodec/h264_mb_template.c                     tmp_y[j] = get_bits(&gb, bit_depth);
get_bits          124 libavcodec/h264_mb_template.c                             tmp_cb[j] = get_bits(&gb, bit_depth);
get_bits          129 libavcodec/h264_mb_template.c                             tmp_cr[j] = get_bits(&gb, bit_depth);
get_bits          316 libavcodec/h264_mb_template.c                         tmp[j] = get_bits(&gb, bit_depth);
get_bits          321 libavcodec/h264_parser.c         nal.ref_idc = get_bits(&nal.gb, 2);
get_bits          322 libavcodec/h264_parser.c         nal.type    = get_bits(&nal.gb, 5);
get_bits          377 libavcodec/h264_parser.c             p->poc.frame_num = get_bits(&nal.gb, sps->log2_max_frame_num);
get_bits          424 libavcodec/h264_parser.c                 p->poc.poc_lsb = get_bits(&nal.gb, sps->log2_max_poc_lsb);
get_bits          118 libavcodec/h264_ps.c     get_bits(gb, 4); /* bit_rate_scale */
get_bits          119 libavcodec/h264_ps.c     get_bits(gb, 4); /* cpb_size_scale */
get_bits          125 libavcodec/h264_ps.c     sps->initial_cpb_removal_delay_length = get_bits(gb, 5) + 1;
get_bits          126 libavcodec/h264_ps.c     sps->cpb_removal_delay_length         = get_bits(gb, 5) + 1;
get_bits          127 libavcodec/h264_ps.c     sps->dpb_output_delay_length          = get_bits(gb, 5) + 1;
get_bits          128 libavcodec/h264_ps.c     sps->time_offset_length               = get_bits(gb, 5);
get_bits          142 libavcodec/h264_ps.c         aspect_ratio_idc = get_bits(gb, 8);
get_bits          144 libavcodec/h264_ps.c             sps->sar.num = get_bits(gb, 16);
get_bits          145 libavcodec/h264_ps.c             sps->sar.den = get_bits(gb, 16);
get_bits          162 libavcodec/h264_ps.c         get_bits(gb, 3);                 /* video_format */
get_bits          167 libavcodec/h264_ps.c             sps->color_primaries = get_bits(gb, 8); /* colour_primaries */
get_bits          168 libavcodec/h264_ps.c             sps->color_trc       = get_bits(gb, 8); /* transfer_characteristics */
get_bits          169 libavcodec/h264_ps.c             sps->colorspace      = get_bits(gb, 8); /* matrix_coefficients */
get_bits          355 libavcodec/h264_ps.c     profile_idc           = get_bits(gb, 8);
get_bits          363 libavcodec/h264_ps.c     level_idc = get_bits(gb, 8);
get_bits          833 libavcodec/h264_ps.c     pps->weighted_bipred_idc                  = get_bits(gb, 2);
get_bits           72 libavcodec/h264_sei.c         h->pic_struct = get_bits(&gb, 4);
get_bits           81 libavcodec/h264_sei.c             if (get_bits(&gb, 1)) {                      /* clock_timestamp_flag */
get_bits           85 libavcodec/h264_sei.c                 h->ct_type |= 1 << get_bits(&gb, 2);
get_bits           87 libavcodec/h264_sei.c                 counting_type = get_bits(&gb, 5);        /* counting_type */
get_bits           88 libavcodec/h264_sei.c                 full_timestamp_flag = get_bits(&gb, 1);
get_bits           90 libavcodec/h264_sei.c                 cnt_dropped_flag = get_bits(&gb, 1);      /* cnt_dropped_flag */
get_bits           93 libavcodec/h264_sei.c                 tc->frame = get_bits(&gb, 8);         /* n_frames */
get_bits           96 libavcodec/h264_sei.c                     tc->seconds = get_bits(&gb, 6); /* seconds_value 0..59 */
get_bits           97 libavcodec/h264_sei.c                     tc->minutes = get_bits(&gb, 6); /* minutes_value 0..59 */
get_bits           98 libavcodec/h264_sei.c                     tc->hours = get_bits(&gb, 5);   /* hours_value 0..23 */
get_bits          101 libavcodec/h264_sei.c                     if (get_bits(&gb, 1)) {             /* seconds_flag */
get_bits          102 libavcodec/h264_sei.c                         tc->seconds = get_bits(&gb, 6);
get_bits          103 libavcodec/h264_sei.c                         if (get_bits(&gb, 1)) {         /* minutes_flag */
get_bits          104 libavcodec/h264_sei.c                             tc->minutes = get_bits(&gb, 6);
get_bits          105 libavcodec/h264_sei.c                             if (get_bits(&gb, 1))       /* hours_flag */
get_bits          106 libavcodec/h264_sei.c                                 tc->hours = get_bits(&gb, 5);
get_bits          154 libavcodec/h264_sei.c     flag = get_bits(gb, 1);         // active_format_flag
get_bits          161 libavcodec/h264_sei.c         h->active_format_description = get_bits(gb, 4);
get_bits          179 libavcodec/h264_sei.c     user_data_type_code = get_bits(gb, 8);
get_bits          183 libavcodec/h264_sei.c         flag = get_bits(gb, 1);     // process_cc_data_flag
get_bits          186 libavcodec/h264_sei.c             cc_count = get_bits(gb, 5);
get_bits          206 libavcodec/h264_sei.c                     h->buf_ref->data[old_size++] = get_bits(gb, 8);
get_bits          207 libavcodec/h264_sei.c                     h->buf_ref->data[old_size++] = get_bits(gb, 8);
get_bits          208 libavcodec/h264_sei.c                     h->buf_ref->data[old_size++] = get_bits(gb, 8);
get_bits          233 libavcodec/h264_sei.c     country_code = get_bits(gb, 8); // itu_t_t35_country_code
get_bits          272 libavcodec/h264_sei.c         user_data[i] = get_bits(gb, 8);
get_bits          348 libavcodec/h264_sei.c         h->arrangement_type = get_bits(gb, 7);
get_bits          350 libavcodec/h264_sei.c         h->content_interpretation_type    = get_bits(gb, 6);
get_bits          377 libavcodec/h264_sei.c         h->anticlockwise_rotation = get_bits(gb, 16);
get_bits          387 libavcodec/h264_sei.c     h->green_metadata_type = get_bits(gb, 8);
get_bits          390 libavcodec/h264_sei.c         h->period_type = get_bits(gb, 8);
get_bits          393 libavcodec/h264_sei.c             h->num_seconds = get_bits(gb, 16);
get_bits          395 libavcodec/h264_sei.c             h->num_pictures = get_bits(gb, 16);
get_bits          397 libavcodec/h264_sei.c         h->percent_non_zero_macroblocks            = get_bits(gb, 8);
get_bits          398 libavcodec/h264_sei.c         h->percent_intra_coded_macroblocks         = get_bits(gb, 8);
get_bits          399 libavcodec/h264_sei.c         h->percent_six_tap_filtering               = get_bits(gb, 8);
get_bits          400 libavcodec/h264_sei.c         h->percent_alpha_point_deblocking_instance = get_bits(gb, 8);
get_bits          403 libavcodec/h264_sei.c         h->xsd_metric_type  = get_bits(gb, 8);
get_bits          404 libavcodec/h264_sei.c         h->xsd_metric_value = get_bits(gb, 16);
get_bits          414 libavcodec/h264_sei.c     h->preferred_transfer_characteristics = get_bits(gb, 8);
get_bits          433 libavcodec/h264_sei.c         } while (get_bits(gb, 8) == 255);
get_bits          439 libavcodec/h264_sei.c         } while (get_bits(gb, 8) == 255);
get_bits         1782 libavcodec/h264_slice.c     sl->frame_num = get_bits(&sl->gb, sps->log2_max_frame_num);
get_bits         1823 libavcodec/h264_slice.c         sl->poc_lsb = get_bits(&sl->gb, sps->log2_max_poc_lsb);
get_bits          123 libavcodec/hcadec.c     version = get_bits(gb, 16);
get_bits          139 libavcodec/hcadec.c         c->track_count = get_bits(gb, 8);
get_bits          140 libavcodec/hcadec.c         c->channel_config = get_bits(gb, 8);
get_bits          141 libavcodec/hcadec.c         c->total_band_count = get_bits(gb, 8);
get_bits          142 libavcodec/hcadec.c         c->base_band_count = get_bits(gb, 8);
get_bits          143 libavcodec/hcadec.c         c->stereo_band_count = get_bits(gb, 8);
get_bits          144 libavcodec/hcadec.c         c->bands_per_hfr_group = get_bits(gb, 8);
get_bits          149 libavcodec/hcadec.c         c->total_band_count = get_bits(gb, 8) + 1;
get_bits          150 libavcodec/hcadec.c         c->base_band_count = get_bits(gb, 8) + 1;
get_bits          151 libavcodec/hcadec.c         c->track_count = get_bits(gb, 4);
get_bits          152 libavcodec/hcadec.c         c->channel_config = get_bits(gb, 4);
get_bits          153 libavcodec/hcadec.c         if (!get_bits(gb, 8))
get_bits          170 libavcodec/hcadec.c             c->ath_type = get_bits(gb, 16);
get_bits          174 libavcodec/hcadec.c             skip_bits_long(gb, get_bits(gb, 8) * 8);
get_bits          333 libavcodec/hcadec.c     int delta_bits = get_bits(gb, 3);
get_bits          337 libavcodec/hcadec.c             ch->scale_factors[i] = get_bits(gb, 6);
get_bits          339 libavcodec/hcadec.c         int factor = get_bits(gb, 6);
get_bits          345 libavcodec/hcadec.c             int delta = get_bits(gb, delta_bits);
get_bits          348 libavcodec/hcadec.c                 factor = get_bits(gb, 6);
get_bits          361 libavcodec/hcadec.c         ch->intensity[0] = get_bits(gb, 4);
get_bits          364 libavcodec/hcadec.c                 ch->intensity[i] = get_bits(gb, 4);
get_bits          368 libavcodec/hcadec.c             ch->hfr_scale[i] = get_bits(gb, 6);
get_bits          404 libavcodec/hcadec.c     if (get_bits(gb, 16) != 0xFFFF)
get_bits          412 libavcodec/hcadec.c     packed_noise_level = (get_bits(gb, 9) << 8) - get_bits(gb, 7);
get_bits          157 libavcodec/hevc_parser.c         int pic_order_cnt_lsb = get_bits(gb, ps->sps->log2_max_poc_lsb);
get_bits          273 libavcodec/hevc_ps.c     ptl->profile_space = get_bits(gb, 2);
get_bits          275 libavcodec/hevc_ps.c     ptl->profile_idc   = get_bits(gb, 5);
get_bits          349 libavcodec/hevc_ps.c     ptl->general_ptl.level_idc = get_bits(gb, 8);
get_bits          372 libavcodec/hevc_ps.c                 ptl->sub_layer_ptl[i].level_idc = get_bits(gb, 8);
get_bits          484 libavcodec/hevc_ps.c     vps_id = get_bits(gb, 4);
get_bits          486 libavcodec/hevc_ps.c     if (get_bits(gb, 2) != 3) { // vps_reserved_three_2bits
get_bits          491 libavcodec/hevc_ps.c     vps->vps_max_layers               = get_bits(gb, 6) + 1;
get_bits          492 libavcodec/hevc_ps.c     vps->vps_max_sub_layers           = get_bits(gb, 3) + 1;
get_bits          495 libavcodec/hevc_ps.c     if (get_bits(gb, 16) != 0xffff) { // vps_reserved_ffff_16bits
get_bits          530 libavcodec/hevc_ps.c     vps->vps_max_layer_id   = get_bits(gb, 6);
get_bits          599 libavcodec/hevc_ps.c         uint8_t sar_idx = get_bits(gb, 8);
get_bits          603 libavcodec/hevc_ps.c             vui->sar.num = get_bits(gb, 16);
get_bits          604 libavcodec/hevc_ps.c             vui->sar.den = get_bits(gb, 16);
get_bits          616 libavcodec/hevc_ps.c         vui->video_format                    = get_bits(gb, 3);
get_bits          622 libavcodec/hevc_ps.c             vui->colour_primaries        = get_bits(gb, 8);
get_bits          623 libavcodec/hevc_ps.c             vui->transfer_characteristic = get_bits(gb, 8);
get_bits          624 libavcodec/hevc_ps.c             vui->matrix_coeffs           = get_bits(gb, 8);
get_bits          915 libavcodec/hevc_ps.c     sps->vps_id = get_bits(gb, 4);
get_bits          923 libavcodec/hevc_ps.c     sps->max_sub_layers = get_bits(gb, 3) + 1;
get_bits          930 libavcodec/hevc_ps.c     sps->temporal_id_nesting_flag = get_bits(gb, 1);
get_bits         1082 libavcodec/hevc_ps.c         sps->pcm.bit_depth   = get_bits(gb, 4) + 1;
get_bits         1083 libavcodec/hevc_ps.c         sps->pcm.bit_depth_chroma = get_bits(gb, 4) + 1;
get_bits         1118 libavcodec/hevc_ps.c             sps->lt_ref_pic_poc_lsb_sps[i]       = get_bits(gb, sps->log2_max_poc_lsb);
get_bits         1562 libavcodec/hevc_ps.c     pps->num_extra_slice_header_bits           = get_bits(gb, 3);
get_bits           35 libavcodec/hevc_sei.c     hash_type = get_bits(gb, 8);
get_bits           41 libavcodec/hevc_sei.c                 s->md5[cIdx][i] = get_bits(gb, 8);
get_bits           58 libavcodec/hevc_sei.c         s->display_primaries[i][0] = get_bits(gb, 16);
get_bits           59 libavcodec/hevc_sei.c         s->display_primaries[i][1] = get_bits(gb, 16);
get_bits           62 libavcodec/hevc_sei.c     s->white_point[0] = get_bits(gb, 16);
get_bits           63 libavcodec/hevc_sei.c     s->white_point[1] = get_bits(gb, 16);
get_bits           79 libavcodec/hevc_sei.c     s->max_content_light_level     = get_bits(gb, 16);
get_bits           80 libavcodec/hevc_sei.c     s->max_pic_average_light_level = get_bits(gb, 16);
get_bits           94 libavcodec/hevc_sei.c         s->arrangement_type               = get_bits(gb, 7);
get_bits           96 libavcodec/hevc_sei.c         s->content_interpretation_type    = get_bits(gb, 6);
get_bits          121 libavcodec/hevc_sei.c         s->anticlockwise_rotation = get_bits(gb, 16);
get_bits          139 libavcodec/hevc_sei.c         int pic_struct = get_bits(gb, 4);
get_bits          154 libavcodec/hevc_sei.c         get_bits(gb, 2);                   // source_scan_type
get_bits          155 libavcodec/hevc_sei.c         get_bits(gb, 1);                   // duplicate_flag
get_bits          174 libavcodec/hevc_sei.c     user_data_type_code = get_bits(gb, 8);
get_bits          178 libavcodec/hevc_sei.c         flag = get_bits(gb, 1); // process_cc_data_flag
get_bits          181 libavcodec/hevc_sei.c             cc_count = get_bits(gb, 5);
get_bits          200 libavcodec/hevc_sei.c                     s->buf_ref->data[old_size++] = get_bits(gb, 8);
get_bits          201 libavcodec/hevc_sei.c                     s->buf_ref->data[old_size++] = get_bits(gb, 8);
get_bits          202 libavcodec/hevc_sei.c                     s->buf_ref->data[old_size++] = get_bits(gb, 8);
get_bits          226 libavcodec/hevc_sei.c     country_code = get_bits(gb, 8);
get_bits          253 libavcodec/hevc_sei.c     get_bits(gb, 4); // active_video_parameter_set_id
get_bits          254 libavcodec/hevc_sei.c     get_bits(gb, 1); // self_contained_cvs_flag
get_bits          255 libavcodec/hevc_sei.c     get_bits(gb, 1); // num_sps_ids_minus1
get_bits          279 libavcodec/hevc_sei.c     s->preferred_transfer_characteristics = get_bits(gb, 8);
get_bits          336 libavcodec/hevc_sei.c         byte          = get_bits(gb, 8);
get_bits          343 libavcodec/hevc_sei.c         byte          = get_bits(gb, 8);
get_bits          288 libavcodec/hevcdec.c                 lt_idx_sps = get_bits(gb, av_ceil_log2(sps->num_long_term_ref_pics_sps));
get_bits          293 libavcodec/hevcdec.c             rps->poc[i]  = get_bits(gb, sps->log2_max_poc_lsb);
get_bits          621 libavcodec/hevcdec.c             sh->colour_plane_id = get_bits(gb, 2);
get_bits          626 libavcodec/hevcdec.c             sh->pic_order_cnt_lsb = get_bits(gb, s->ps.sps->log2_max_poc_lsb);
get_bits          654 libavcodec/hevcdec.c                 rps_idx = numbits > 0 ? get_bits(gb, numbits) : 0;
get_bits          731 libavcodec/hevcdec.c                         sh->list_entry_lx[0][i] = get_bits(gb, av_ceil_log2(nb_refs));
get_bits          738 libavcodec/hevcdec.c                             sh->list_entry_lx[1][i] = get_bits(gb, av_ceil_log2(nb_refs));
get_bits           39 libavcodec/hevcdsp_template.c             dst[x] = get_bits(gb, pcm_bit_depth) << (BIT_DEPTH - pcm_bit_depth);
get_bits           72 libavcodec/hq_hqa.c         q = ff_hq_quants[qsel][is_chroma][get_bits(gb, 2)];
get_bits           74 libavcodec/hq_hqa.c         q = ff_hq_quants[qsel][is_chroma][get_bits(gb, 2)];
get_bits           99 libavcodec/hq_hqa.c     qgroup = get_bits(gb, 4);
get_bits          131 libavcodec/hqx.c     q = quants[get_bits(gb, 2)];
get_bits          170 libavcodec/hqx.c     quants = hqx_quants[get_bits(gb, 4)];
get_bits          210 libavcodec/hqx.c         quants = hqx_quants[get_bits(gb, 4)];
get_bits          254 libavcodec/hqx.c     quants = hqx_quants[get_bits(gb, 4)];
get_bits          296 libavcodec/hqx.c         quants = hqx_quants[get_bits(gb, 4)];
get_bits          104 libavcodec/huffyuvdec.c         repeat = get_bits(gb, 3);
get_bits          105 libavcodec/huffyuvdec.c         val    = get_bits(gb, 5);
get_bits          107 libavcodec/huffyuvdec.c             repeat = get_bits(gb, 8);
get_bits          666 libavcodec/huffyuvdec.c     dst0 += get_bits(&s->gb, 2);\
get_bits          668 libavcodec/huffyuvdec.c     dst1 += get_bits(&s->gb, 2);\
get_bits          726 libavcodec/huffyuvdec.c             s->temp16[0][width-1] = dst + get_bits(&s->gb, 2);
get_bits          968 libavcodec/huffyuvdec.c             p->data[0][3] = get_bits(&s->gb, 8);
get_bits          969 libavcodec/huffyuvdec.c             p->data[0][2] = get_bits(&s->gb, 8);
get_bits          970 libavcodec/huffyuvdec.c             p->data[0][1] = get_bits(&s->gb, 8);
get_bits          971 libavcodec/huffyuvdec.c             p->data[0][0] = get_bits(&s->gb, 8);
get_bits          978 libavcodec/huffyuvdec.c             p->data[2][0 + y_offset * p->linesize[2]] = get_bits(&s->gb, 8);
get_bits          980 libavcodec/huffyuvdec.c             p->data[0][1 + y_offset * p->linesize[0]] = get_bits(&s->gb, 8);
get_bits          982 libavcodec/huffyuvdec.c             p->data[1][0 + y_offset * p->linesize[1]] = get_bits(&s->gb, 8);
get_bits          983 libavcodec/huffyuvdec.c             p->data[0][0 + y_offset * p->linesize[0]] = get_bits(&s->gb, 8);
get_bits         1136 libavcodec/huffyuvdec.c             left[A] = p->data[0][last_line + A] = get_bits(&s->gb, 8);
get_bits         1137 libavcodec/huffyuvdec.c             left[R] = p->data[0][last_line + R] = get_bits(&s->gb, 8);
get_bits         1138 libavcodec/huffyuvdec.c             left[G] = p->data[0][last_line + G] = get_bits(&s->gb, 8);
get_bits         1139 libavcodec/huffyuvdec.c             left[B] = p->data[0][last_line + B] = get_bits(&s->gb, 8);
get_bits         1141 libavcodec/huffyuvdec.c             left[R] = p->data[0][last_line + R] = get_bits(&s->gb, 8);
get_bits         1142 libavcodec/huffyuvdec.c             left[G] = p->data[0][last_line + G] = get_bits(&s->gb, 8);
get_bits         1143 libavcodec/huffyuvdec.c             left[B] = p->data[0][last_line + B] = get_bits(&s->gb, 8);
get_bits          134 libavcodec/ilbcdec.c     frame->lsf[0] = get_bits(gb, 6);
get_bits          135 libavcodec/ilbcdec.c     frame->lsf[1] = get_bits(gb, 7);
get_bits          136 libavcodec/ilbcdec.c     frame->lsf[2] = get_bits(gb, 7);
get_bits          139 libavcodec/ilbcdec.c         frame->start          = get_bits(gb, 2);
get_bits          141 libavcodec/ilbcdec.c         frame->ifm            = get_bits(gb, 6);
get_bits          142 libavcodec/ilbcdec.c         frame->cb_index[0]    = get_bits(gb, 6) << 1;
get_bits          143 libavcodec/ilbcdec.c         frame->gain_index[0]  = get_bits(gb, 2) << 3;
get_bits          145 libavcodec/ilbcdec.c         frame->cb_index[3]    = get_bits(gb, 7) << 1;
get_bits          150 libavcodec/ilbcdec.c         frame->lsf[3]         = get_bits(gb, 6);
get_bits          151 libavcodec/ilbcdec.c         frame->lsf[4]         = get_bits(gb, 7);
get_bits          152 libavcodec/ilbcdec.c         frame->lsf[5]         = get_bits(gb, 7);
get_bits          153 libavcodec/ilbcdec.c         frame->start          = get_bits(gb, 3);
get_bits          155 libavcodec/ilbcdec.c         frame->ifm            = get_bits(gb, 6);
get_bits          156 libavcodec/ilbcdec.c         frame->cb_index[0]    = get_bits(gb, 4) << 3;
get_bits          159 libavcodec/ilbcdec.c         frame->cb_index[3]    = get_bits(gb, 6) << 2;
get_bits          172 libavcodec/ilbcdec.c         frame->gain_index[3] |= get_bits(gb, 2) << 2;
get_bits          175 libavcodec/ilbcdec.c         frame->gain_index[7]  = get_bits(gb, 2) << 2;
get_bits          180 libavcodec/ilbcdec.c         frame->cb_index[0]    |= get_bits(gb, 2) << 1;
get_bits          185 libavcodec/ilbcdec.c         frame->cb_index[6]    |= get_bits(gb, 6) << 1;
get_bits          186 libavcodec/ilbcdec.c         frame->cb_index[9]     = get_bits(gb, 7) << 1;
get_bits          187 libavcodec/ilbcdec.c         frame->cb_index[12]    = get_bits(gb, 3) << 5;
get_bits          188 libavcodec/ilbcdec.c         frame->cb_index[12]   |= get_bits(gb, 4) << 1;
get_bits          189 libavcodec/ilbcdec.c         frame->gain_index[3]  |= get_bits(gb, 2) << 2;
get_bits          190 libavcodec/ilbcdec.c         frame->gain_index[4]  |= get_bits(gb, 2) << 1;
get_bits          191 libavcodec/ilbcdec.c         frame->gain_index[6]   = get_bits(gb, 2) << 3;
get_bits          192 libavcodec/ilbcdec.c         frame->gain_index[7]   = get_bits(gb, 2) << 2;
get_bits          200 libavcodec/ilbcdec.c         frame->idx[j] |= get_bits(gb, 2);
get_bits          203 libavcodec/ilbcdec.c         frame->idx[56]        |= get_bits(gb, 2);
get_bits          205 libavcodec/ilbcdec.c         frame->cb_index[1]     = get_bits(gb, 7);
get_bits          206 libavcodec/ilbcdec.c         frame->cb_index[2]     = get_bits(gb, 6) << 1;
get_bits          208 libavcodec/ilbcdec.c         frame->gain_index[0]  |= get_bits(gb, 3);
get_bits          209 libavcodec/ilbcdec.c         frame->gain_index[1]  |= get_bits(gb, 2);
get_bits          210 libavcodec/ilbcdec.c         frame->gain_index[2]   = get_bits(gb, 3);
get_bits          212 libavcodec/ilbcdec.c         frame->cb_index[4]     = get_bits(gb, 6) << 1;
get_bits          214 libavcodec/ilbcdec.c         frame->cb_index[5]     = get_bits(gb, 7);
get_bits          215 libavcodec/ilbcdec.c         frame->cb_index[6]     = get_bits(gb, 8);
get_bits          216 libavcodec/ilbcdec.c         frame->cb_index[7]     = get_bits(gb, 8);
get_bits          217 libavcodec/ilbcdec.c         frame->cb_index[8]     = get_bits(gb, 8);
get_bits          218 libavcodec/ilbcdec.c         frame->gain_index[3]  |= get_bits(gb, 2);
get_bits          219 libavcodec/ilbcdec.c         frame->gain_index[4]  |= get_bits(gb, 2);
get_bits          220 libavcodec/ilbcdec.c         frame->gain_index[5]   = get_bits(gb, 3);
get_bits          221 libavcodec/ilbcdec.c         frame->gain_index[6]  |= get_bits(gb, 3);
get_bits          222 libavcodec/ilbcdec.c         frame->gain_index[7]  |= get_bits(gb, 2);
get_bits          223 libavcodec/ilbcdec.c         frame->gain_index[8]   = get_bits(gb, 3);
get_bits          225 libavcodec/ilbcdec.c         frame->idx[56]        |= get_bits(gb, 2);
get_bits          226 libavcodec/ilbcdec.c         frame->idx[57]        |= get_bits(gb, 2);
get_bits          228 libavcodec/ilbcdec.c         frame->cb_index[1]     = get_bits(gb, 7);
get_bits          229 libavcodec/ilbcdec.c         frame->cb_index[2]     = get_bits(gb, 4) << 3;
get_bits          230 libavcodec/ilbcdec.c         frame->cb_index[2]    |= get_bits(gb, 3);
get_bits          231 libavcodec/ilbcdec.c         frame->gain_index[0]  |= get_bits(gb, 3);
get_bits          232 libavcodec/ilbcdec.c         frame->gain_index[1]  |= get_bits(gb, 2);
get_bits          233 libavcodec/ilbcdec.c         frame->gain_index[2]   = get_bits(gb, 3);
get_bits          235 libavcodec/ilbcdec.c         frame->cb_index[4]     = get_bits(gb, 4) << 3;
get_bits          236 libavcodec/ilbcdec.c         frame->cb_index[4]    |= get_bits(gb, 3);
get_bits          237 libavcodec/ilbcdec.c         frame->cb_index[5]     = get_bits(gb, 7);
get_bits          239 libavcodec/ilbcdec.c         frame->cb_index[7]     = get_bits(gb, 5) << 3;
get_bits          240 libavcodec/ilbcdec.c         frame->cb_index[7]    |= get_bits(gb, 3);
get_bits          241 libavcodec/ilbcdec.c         frame->cb_index[8]     = get_bits(gb, 8);
get_bits          243 libavcodec/ilbcdec.c         frame->cb_index[10]    = get_bits(gb, 4) << 4;
get_bits          244 libavcodec/ilbcdec.c         frame->cb_index[10]   |= get_bits(gb, 4);
get_bits          245 libavcodec/ilbcdec.c         frame->cb_index[11]    = get_bits(gb, 8);
get_bits          247 libavcodec/ilbcdec.c         frame->cb_index[13]    = get_bits(gb, 3) << 5;
get_bits          248 libavcodec/ilbcdec.c         frame->cb_index[13]   |= get_bits(gb, 5);
get_bits          249 libavcodec/ilbcdec.c         frame->cb_index[14]    = get_bits(gb, 8);
get_bits          250 libavcodec/ilbcdec.c         frame->gain_index[3]  |= get_bits(gb, 2);
get_bits          252 libavcodec/ilbcdec.c         frame->gain_index[5]   = get_bits(gb, 3);
get_bits          253 libavcodec/ilbcdec.c         frame->gain_index[6]  |= get_bits(gb, 3);
get_bits          254 libavcodec/ilbcdec.c         frame->gain_index[7]  |= get_bits(gb, 2);
get_bits          255 libavcodec/ilbcdec.c         frame->gain_index[8]   = get_bits(gb, 3);
get_bits          256 libavcodec/ilbcdec.c         frame->gain_index[9]  |= get_bits(gb, 4);
get_bits          258 libavcodec/ilbcdec.c         frame->gain_index[10] |= get_bits(gb, 2);
get_bits          259 libavcodec/ilbcdec.c         frame->gain_index[11]  = get_bits(gb, 3);
get_bits          260 libavcodec/ilbcdec.c         frame->gain_index[12] |= get_bits(gb, 4);
get_bits          261 libavcodec/ilbcdec.c         frame->gain_index[13] |= get_bits(gb, 3);
get_bits          262 libavcodec/ilbcdec.c         frame->gain_index[14]  = get_bits(gb, 3);
get_bits          348 libavcodec/imc.c         levlCoeffs[0] = get_bits(&q->gb, 7);
get_bits          353 libavcodec/imc.c             levlCoeffs[i] += get_bits(&q->gb, 4);
get_bits          362 libavcodec/imc.c     q->coef0_pos  = get_bits(&q->gb, 5);
get_bits          363 libavcodec/imc.c     levlCoeffs[0] = get_bits(&q->gb, 7);
get_bits          365 libavcodec/imc.c         levlCoeffs[i] = get_bits(&q->gb, 4);
get_bits          813 libavcodec/imc.c                         cw = get_bits(&q->gb, cw_len);
get_bits          877 libavcodec/imc.c     imc_hdr = get_bits(&q->gb, 9);
get_bits          883 libavcodec/imc.c     stream_format_code = get_bits(&q->gb, 3);
get_bits          155 libavcodec/imm4.c             len = get_bits(gb, 6);
get_bits          194 libavcodec/imm4.c             int x = get_bits(gb, 8);
get_bits          432 libavcodec/imm4.c     s->hi = get_bits(gb, 16);
get_bits          433 libavcodec/imm4.c     s->lo = get_bits(gb, 16);
get_bits          787 libavcodec/indeo3.c         switch (code = get_bits(&ctx->gb, 2)) {
get_bits          799 libavcodec/indeo3.c                 code = get_bits(&ctx->gb, 2);
get_bits           81 libavcodec/indeo4.c     switch (get_bits(gb, 2)) {
get_bits           86 libavcodec/indeo4.c             if (get_bits(gb, 2) != 3)
get_bits          111 libavcodec/indeo4.c     if (get_bits(&ctx->gb, 18) != 0x3FFF8) {
get_bits          117 libavcodec/indeo4.c     ctx->frame_type      = get_bits(&ctx->gb, 3);
get_bits          134 libavcodec/indeo4.c     ctx->data_size = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 24) : 0;
get_bits          150 libavcodec/indeo4.c     pic_size_indx = get_bits(&ctx->gb, 3);
get_bits          152 libavcodec/indeo4.c         pic_conf.pic_height = get_bits(&ctx->gb, 16);
get_bits          153 libavcodec/indeo4.c         pic_conf.pic_width  = get_bits(&ctx->gb, 16);
get_bits          162 libavcodec/indeo4.c         pic_conf.tile_height = scale_tile_size(pic_conf.pic_height, get_bits(&ctx->gb, 4));
get_bits          163 libavcodec/indeo4.c         pic_conf.tile_width  = scale_tile_size(pic_conf.pic_width,  get_bits(&ctx->gb, 4));
get_bits          170 libavcodec/indeo4.c     if (get_bits(&ctx->gb, 2)) {
get_bits          222 libavcodec/indeo4.c     ctx->frame_num = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 20) : 0;
get_bits          233 libavcodec/indeo4.c     ctx->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
get_bits          238 libavcodec/indeo4.c     ctx->pic_glob_quant = get_bits(&ctx->gb, 5);
get_bits          241 libavcodec/indeo4.c     ctx->unknown1 = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 0;
get_bits          243 libavcodec/indeo4.c     ctx->checksum = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 16) : 0;
get_bits          280 libavcodec/indeo4.c     plane    = get_bits(&ctx->gb, 2);
get_bits          281 libavcodec/indeo4.c     band_num = get_bits(&ctx->gb, 4);
get_bits          295 libavcodec/indeo4.c         band->is_halfpel = get_bits(&ctx->gb, 2);
get_bits          306 libavcodec/indeo4.c             band->checksum = get_bits(&ctx->gb, 16);
get_bits          308 libavcodec/indeo4.c         indx = get_bits(&ctx->gb, 2);
get_bits          319 libavcodec/indeo4.c         band->glob_quant = get_bits(&ctx->gb, 5);
get_bits          322 libavcodec/indeo4.c             transform_id = get_bits(&ctx->gb, 5);
get_bits          355 libavcodec/indeo4.c             scan_indx = get_bits(&ctx->gb, 4);
get_bits          373 libavcodec/indeo4.c             quant_mat = get_bits(&ctx->gb, 5);
get_bits          415 libavcodec/indeo4.c         band->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
get_bits          420 libavcodec/indeo4.c             band->num_corr = get_bits(&ctx->gb, 8); /* get number of correction pairs */
get_bits          429 libavcodec/indeo4.c                 band->corr[i] = get_bits(&ctx->gb, 8);
get_bits          546 libavcodec/indeo4.c                     mb->type = get_bits(&ctx->gb, mb_type_bits);
get_bits          549 libavcodec/indeo4.c                 mb->cbp = get_bits(&ctx->gb, blks_per_mb);
get_bits           66 libavcodec/indeo5.c     ctx->gop_flags = get_bits(&ctx->gb, 8);
get_bits           68 libavcodec/indeo5.c     ctx->gop_hdr_size = (ctx->gop_flags & 1) ? get_bits(&ctx->gb, 16) : 0;
get_bits           73 libavcodec/indeo5.c     tile_size = (ctx->gop_flags & 0x40) ? 64 << get_bits(&ctx->gb, 2) : 0;
get_bits           81 libavcodec/indeo5.c     pic_conf.luma_bands   = get_bits(&ctx->gb, 2) * 3 + 1;
get_bits           90 libavcodec/indeo5.c     pic_size_indx = get_bits(&ctx->gb, 4);
get_bits           92 libavcodec/indeo5.c         pic_conf.pic_height = get_bits(&ctx->gb, 13);
get_bits           93 libavcodec/indeo5.c         pic_conf.pic_width  = get_bits(&ctx->gb, 13);
get_bits          221 libavcodec/indeo5.c             if (get_bits(&ctx->gb, 2)) {
get_bits          261 libavcodec/indeo5.c         if (get_bits(&ctx->gb, 3)) {
get_bits          277 libavcodec/indeo5.c             i = get_bits(&ctx->gb, 16);
get_bits          297 libavcodec/indeo5.c         len = get_bits(gb, 8);
get_bits          318 libavcodec/indeo5.c     if (get_bits(&ctx->gb, 5) != 0x1F) {
get_bits          324 libavcodec/indeo5.c     ctx->frame_type      = get_bits(&ctx->gb, 3);
get_bits          331 libavcodec/indeo5.c     ctx->frame_num = get_bits(&ctx->gb, 8);
get_bits          349 libavcodec/indeo5.c         ctx->frame_flags = get_bits(&ctx->gb, 8);
get_bits          351 libavcodec/indeo5.c         ctx->pic_hdr_size = (ctx->frame_flags & 1) ? get_bits(&ctx->gb, 24) : 0;
get_bits          353 libavcodec/indeo5.c         ctx->checksum = (ctx->frame_flags & 0x10) ? get_bits(&ctx->gb, 16) : 0;
get_bits          388 libavcodec/indeo5.c     band_flags = get_bits(&ctx->gb, 8);
get_bits          395 libavcodec/indeo5.c     band->data_size = (ctx->frame_flags & 0x80) ? get_bits(&ctx->gb, 24) : 0;
get_bits          405 libavcodec/indeo5.c         band->num_corr = get_bits(&ctx->gb, 8); /* get number of correction pairs */
get_bits          414 libavcodec/indeo5.c             band->corr[i] = get_bits(&ctx->gb, 8);
get_bits          418 libavcodec/indeo5.c     band->rvmap_sel = (band_flags & 0x40) ? get_bits(&ctx->gb, 3) : 8;
get_bits          428 libavcodec/indeo5.c         band->checksum = get_bits(&ctx->gb, 16);
get_bits          430 libavcodec/indeo5.c     band->glob_quant = get_bits(&ctx->gb, 5);
get_bits          524 libavcodec/indeo5.c                 mb->cbp = get_bits(&ctx->gb, blks_per_mb);
get_bits           36 libavcodec/intelh263dec.c     if (get_bits(&s->gb, 22) != 0x20) {
get_bits           40 libavcodec/intelh263dec.c     s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */
get_bits           53 libavcodec/intelh263dec.c     format = get_bits(&s->gb, 3);
get_bits           78 libavcodec/intelh263dec.c         format = get_bits(&s->gb, 3);
get_bits           83 libavcodec/intelh263dec.c         if(get_bits(&s->gb, 2))
get_bits           90 libavcodec/intelh263dec.c         if(get_bits(&s->gb, 5))
get_bits           92 libavcodec/intelh263dec.c         if(get_bits(&s->gb, 5) != 1)
get_bits           96 libavcodec/intelh263dec.c         int ar = get_bits(&s->gb, 4);
get_bits          101 libavcodec/intelh263dec.c             s->avctx->sample_aspect_ratio.num = get_bits(&s->gb, 8); // aspect ratio - width
get_bits          102 libavcodec/intelh263dec.c             s->avctx->sample_aspect_ratio.den = get_bits(&s->gb, 8); // aspect ratio - height
get_bits          110 libavcodec/intelh263dec.c     s->chroma_qscale= s->qscale = get_bits(&s->gb, 5);
get_bits          128 libavcodec/interplayacm.c         b = get_bits(gb, ind);
get_bits          197 libavcodec/interplayacm.c         b = get_bits(gb, 2);
get_bits          215 libavcodec/interplayacm.c         b = get_bits(gb, 2);
get_bits          249 libavcodec/interplayacm.c         b = get_bits(gb, 2);
get_bits          274 libavcodec/interplayacm.c         b = get_bits(gb, 2);
get_bits          301 libavcodec/interplayacm.c         b = get_bits(gb, 3);
get_bits          319 libavcodec/interplayacm.c         b = get_bits(gb, 3);
get_bits          333 libavcodec/interplayacm.c         b = get_bits(gb, 5);
get_bits          362 libavcodec/interplayacm.c         b = get_bits(gb, 7);
get_bits          390 libavcodec/interplayacm.c         b = get_bits(gb, 7);
get_bits          427 libavcodec/interplayacm.c         ind = get_bits(gb, 5);
get_bits          520 libavcodec/interplayacm.c     pwr = get_bits(gb, 4);
get_bits          521 libavcodec/interplayacm.c     val = get_bits(gb, 16);
get_bits         1131 libavcodec/interplayvideo.c             opcode = get_bits(&gb, 4);
get_bits          143 libavcodec/intrax8.c     table_index       = get_bits(w->gb, 3);
get_bits          152 libavcodec/intrax8.c         int table_index = get_bits(w->gb, 1 + (w->quant < 13));
get_bits          251 libavcodec/intrax8.c         e    = get_bits(w->gb, sm & 0xF);
get_bits          268 libavcodec/intrax8.c         e      = get_bits(w->gb, 5); // get the extra bits
get_bits          272 libavcodec/intrax8.c         *level = get_bits(w->gb, 7 - 3 * (i & 1));
get_bits          273 libavcodec/intrax8.c         *run   = get_bits(w->gb, 6);
get_bits          293 libavcodec/intrax8.c         int table_index = get_bits(w->gb, 3);
get_bits          312 libavcodec/intrax8.c     e = get_bits(w->gb, c); // get the extra bits
get_bits          146 libavcodec/ituh263dec.c     mb_pos  = get_bits(&s->gb, ff_mba_length[i]);
get_bits          188 libavcodec/ituh263dec.c         s->qscale = get_bits(&s->gb, 5); /* SQUANT */
get_bits          193 libavcodec/ituh263dec.c         gob_number = get_bits(&s->gb, 5); /* GN */
get_bits          197 libavcodec/ituh263dec.c         s->qscale = get_bits(&s->gb, 5); /* GQUANT */
get_bits          222 libavcodec/ituh263dec.c             get_bits(&s->gb, 8);
get_bits          285 libavcodec/ituh263dec.c         val |= get_bits(&s->gb, shift);
get_bits          437 libavcodec/ituh263dec.c             s->qscale= get_bits(&s->gb, 5);
get_bits          439 libavcodec/ituh263dec.c         s->qscale += quant_tab[get_bits(&s->gb, 2)];
get_bits          479 libavcodec/ituh263dec.c                 level = get_bits(&s->gb, 8);
get_bits          484 libavcodec/ituh263dec.c             level = get_bits(&s->gb, 8);
get_bits          626 libavcodec/ituh263dec.c         *cbpb = get_bits(gb, 6);
get_bits         1010 libavcodec/ituh263dec.c     startcode= get_bits(&s->gb, 22-8);
get_bits         1013 libavcodec/ituh263dec.c         startcode = ((startcode << 8) | get_bits(&s->gb, 8)) & 0x003FFFFF;
get_bits         1024 libavcodec/ituh263dec.c     i = get_bits(&s->gb, 8); /* picture timestamp */
get_bits         1042 libavcodec/ituh263dec.c     format = get_bits(&s->gb, 3);
get_bits         1070 libavcodec/ituh263dec.c         s->chroma_qscale= s->qscale = get_bits(&s->gb, 5);
get_bits         1082 libavcodec/ituh263dec.c         ufep = get_bits(&s->gb, 3); /* Update Full Extended PTYPE */
get_bits         1087 libavcodec/ituh263dec.c             format = get_bits(&s->gb, 3);
get_bits         1122 libavcodec/ituh263dec.c         s->pict_type = get_bits(&s->gb, 3);
get_bits         1140 libavcodec/ituh263dec.c                 s->aspect_ratio_info = get_bits(&s->gb, 4);
get_bits         1151 libavcodec/ituh263dec.c                 width = (get_bits(&s->gb, 9) + 1) * 4;
get_bits         1153 libavcodec/ituh263dec.c                 height = get_bits(&s->gb, 9) * 4;
get_bits         1157 libavcodec/ituh263dec.c                     s->avctx->sample_aspect_ratio.num= get_bits(&s->gb, 8);
get_bits         1158 libavcodec/ituh263dec.c                     s->avctx->sample_aspect_ratio.den= get_bits(&s->gb, 8);
get_bits         1177 libavcodec/ituh263dec.c                 s->avctx->framerate.den *= get_bits(&s->gb, 7);
get_bits         1215 libavcodec/ituh263dec.c         s->qscale = get_bits(&s->gb, 5);
get_bits         1288 libavcodec/ituh263dec.c                 int v= get_bits(&s->gb, 8);
get_bits          238 libavcodec/ivi.c     huff_tab->tab_sel = get_bits(gb, 3);
get_bits          241 libavcodec/ivi.c         new_huff.num_rows = get_bits(gb, 4);
get_bits          248 libavcodec/ivi.c             new_huff.xbits[i] = get_bits(gb, 4);
get_bits          476 libavcodec/ivi.c         len = get_bits(gb, 8);
get_bits          478 libavcodec/ivi.c             len = get_bits(gb, 24);
get_bits         1184 libavcodec/ivi.c         while (get_bits(&ctx->gb, 8)) {
get_bits          186 libavcodec/jpeg2000dec.c             if ((ret = get_bits(s, 1)) > 0) {
get_bits          999 libavcodec/jpeg2000dec.c     if (!get_bits(s, 1))
get_bits         1001 libavcodec/jpeg2000dec.c     if (!get_bits(s, 1))
get_bits         1003 libavcodec/jpeg2000dec.c     if ((num = get_bits(s, 2)) != 3)
get_bits         1005 libavcodec/jpeg2000dec.c     if ((num = get_bits(s, 5)) != 31)
get_bits         1007 libavcodec/jpeg2000dec.c     num = get_bits(s, 7);
get_bits         1014 libavcodec/jpeg2000dec.c     while (ret = get_bits(s, 1)) {
get_bits         1052 libavcodec/jpeg2000dec.c     if (!(ret = get_bits(s, 1))) {
get_bits         1073 libavcodec/jpeg2000dec.c                 incl = get_bits(s, 1);
get_bits         1129 libavcodec/jpeg2000dec.c                 if ((ret = get_bits(s, av_log2(newpasses1) + cblk->lblock)) < 0)
get_bits           56 libavcodec/jpeglsdec.c     int len = get_bits(&s->gb, 16);
get_bits           57 libavcodec/jpeglsdec.c     id = get_bits(&s->gb, 8);
get_bits           64 libavcodec/jpeglsdec.c         s->maxval = get_bits(&s->gb, 16);
get_bits           65 libavcodec/jpeglsdec.c         s->t1     = get_bits(&s->gb, 16);
get_bits           66 libavcodec/jpeglsdec.c         s->t2     = get_bits(&s->gb, 16);
get_bits           67 libavcodec/jpeglsdec.c         s->t3     = get_bits(&s->gb, 16);
get_bits           68 libavcodec/jpeglsdec.c         s->reset  = get_bits(&s->gb, 16);
get_bits           81 libavcodec/jpeglsdec.c         tid= get_bits(&s->gb, 8);
get_bits           82 libavcodec/jpeglsdec.c         wt = get_bits(&s->gb, 8);
get_bits          127 libavcodec/jpeglsdec.c                     pal[k] |= get_bits(&s->gb, 8) << (8*(wt-j-1));
get_bits          399 libavcodec/jpeglsenc.c         v = get_bits(&gb, 8);
get_bits          402 libavcodec/jpeglsenc.c             v = get_bits(&gb, 7);
get_bits           69 libavcodec/jvdec.c     switch (get_bits(gb, 2)) {
get_bits           71 libavcodec/jvdec.c         v[0] = get_bits(gb, 8);
get_bits           76 libavcodec/jvdec.c         v[0] = get_bits(gb, 8);
get_bits           77 libavcodec/jvdec.c         v[1] = get_bits(gb, 8);
get_bits           85 libavcodec/jvdec.c                 dst[j * linesize + i] = get_bits(gb, 8);
get_bits           96 libavcodec/jvdec.c     switch (get_bits(gb, 2)) {
get_bits           98 libavcodec/jvdec.c         v[0] = get_bits(gb, 8);
get_bits          103 libavcodec/jvdec.c         v[0] = get_bits(gb, 8);
get_bits          104 libavcodec/jvdec.c         v[1] = get_bits(gb, 8);
get_bits          127 libavcodec/jvdec.c     switch (get_bits(gb, 2)) {
get_bits          129 libavcodec/jvdec.c         v[0] = get_bits(gb, 8);
get_bits          133 libavcodec/jvdec.c         v[0] = get_bits(gb, 8);
get_bits          134 libavcodec/jvdec.c         v[1] = get_bits(gb, 8);
get_bits          238 libavcodec/magicyuv.c         flags = get_bits(&gb, 8);
get_bits          239 libavcodec/magicyuv.c         pred  = get_bits(&gb, 8);
get_bits          247 libavcodec/magicyuv.c                     dst[x] = get_bits(&gb, bps);
get_bits          368 libavcodec/magicyuv.c         flags = get_bits(&gb, 8);
get_bits          369 libavcodec/magicyuv.c         pred  = get_bits(&gb, 8);
get_bits          377 libavcodec/magicyuv.c                     dst[x] = get_bits(&gb, 8);
get_bits          483 libavcodec/magicyuv.c         int b = get_bits(gbit, 1);
get_bits          484 libavcodec/magicyuv.c         int x = get_bits(gbit, 7);
get_bits          194 libavcodec/mdec.c     a->qscale  = get_bits(&a->gb, 16);
get_bits          195 libavcodec/mdec.c     a->version = get_bits(&a->gb, 16);
get_bits          160 libavcodec/metasound.c         *dst++ = get_bits(gb, tctx->bits_main_spec[0][ftype][bs_second_part]);
get_bits          161 libavcodec/metasound.c         *dst++ = get_bits(gb, tctx->bits_main_spec[1][ftype][bs_second_part]);
get_bits          182 libavcodec/metasound.c         bits->window_type = get_bits(&gb, TWINVQ_WINDOW_TYPE_BITS);
get_bits          194 libavcodec/metasound.c             get_bits(&gb, 2);
get_bits          202 libavcodec/metasound.c                         get_bits(&gb, mtab->fmode[bits->ftype].bark_n_bit);
get_bits          210 libavcodec/metasound.c                 bits->gain_bits[i] = get_bits(&gb, TWINVQ_GAIN_BITS);
get_bits          213 libavcodec/metasound.c                 bits->gain_bits[i] = get_bits(&gb, TWINVQ_GAIN_BITS);
get_bits          216 libavcodec/metasound.c                         get_bits(&gb, TWINVQ_SUB_GAIN_BITS);
get_bits          221 libavcodec/metasound.c             bits->lpc_hist_idx[i] = get_bits(&gb, mtab->lsp_bit0);
get_bits          222 libavcodec/metasound.c             bits->lpc_idx1[i]     = get_bits(&gb, mtab->lsp_bit1);
get_bits          225 libavcodec/metasound.c                 bits->lpc_idx2[i][j] = get_bits(&gb, mtab->lsp_bit2);
get_bits          231 libavcodec/metasound.c                 bits->p_coef[i] = get_bits(&gb, mtab->ppc_period_bit);
get_bits          232 libavcodec/metasound.c                 bits->g_coef[i] = get_bits(&gb, mtab->pgain_bit);
get_bits          235 libavcodec/mimic.c     block[0] = get_bits(&ctx->gb, 8) << 3;
get_bits          255 libavcodec/mimic.c         value = get_bits(&ctx->gb, num_bits);
get_bits          304 libavcodec/mimic.c                         unsigned int backref = get_bits(&ctx->gb, 4);
get_bits          204 libavcodec/mjpegdec.c     len = get_bits(&s->gb, 16) - 2;
get_bits          212 libavcodec/mjpegdec.c         int pr = get_bits(&s->gb, 4);
get_bits          217 libavcodec/mjpegdec.c         index = get_bits(&s->gb, 4);
get_bits          223 libavcodec/mjpegdec.c             s->quant_matrixes[index][i] = get_bits(&s->gb, pr ? 16 : 8);
get_bits          248 libavcodec/mjpegdec.c     len = get_bits(&s->gb, 16) - 2;
get_bits          258 libavcodec/mjpegdec.c         class = get_bits(&s->gb, 4);
get_bits          261 libavcodec/mjpegdec.c         index = get_bits(&s->gb, 4);
get_bits          266 libavcodec/mjpegdec.c             bits_table[i] = get_bits(&s->gb, 8);
get_bits          275 libavcodec/mjpegdec.c             v = get_bits(&s->gb, 8);
get_bits          316 libavcodec/mjpegdec.c     len     = get_bits(&s->gb, 16);
get_bits          317 libavcodec/mjpegdec.c     bits    = get_bits(&s->gb, 8);
get_bits          339 libavcodec/mjpegdec.c     height = get_bits(&s->gb, 16);
get_bits          340 libavcodec/mjpegdec.c     width  = get_bits(&s->gb, 16);
get_bits          352 libavcodec/mjpegdec.c     nb_components = get_bits(&s->gb, 8);
get_bits          379 libavcodec/mjpegdec.c         s->component_id[i] = get_bits(&s->gb, 8) - 1;
get_bits          380 libavcodec/mjpegdec.c         h_count[i]         = get_bits(&s->gb, 4);
get_bits          381 libavcodec/mjpegdec.c         v_count[i]         = get_bits(&s->gb, 4);
get_bits          387 libavcodec/mjpegdec.c         s->quant_index[i] = get_bits(&s->gb, 8);
get_bits         1049 libavcodec/mjpegdec.c                 if (get_bits_left(&s->gb) >= 8 && (get_bits(&s->gb, 8) & 0xF8) == 0xD0) {
get_bits         1645 libavcodec/mjpegdec.c     len = get_bits(&s->gb, 16);
get_bits         1646 libavcodec/mjpegdec.c     nb_components = get_bits(&s->gb, 8);
get_bits         1658 libavcodec/mjpegdec.c         id = get_bits(&s->gb, 8) - 1;
get_bits         1684 libavcodec/mjpegdec.c         s->dc_index[i] = get_bits(&s->gb, 4);
get_bits         1685 libavcodec/mjpegdec.c         s->ac_index[i] = get_bits(&s->gb, 4);
get_bits         1694 libavcodec/mjpegdec.c     predictor = get_bits(&s->gb, 8);       /* JPEG Ss / lossless JPEG predictor /JPEG-LS NEAR */
get_bits         1695 libavcodec/mjpegdec.c     ilv = get_bits(&s->gb, 8);             /* JPEG Se / JPEG-LS ILV */
get_bits         1697 libavcodec/mjpegdec.c         prev_shift      = get_bits(&s->gb, 4); /* Ah */
get_bits         1698 libavcodec/mjpegdec.c         point_transform = get_bits(&s->gb, 4); /* Al */
get_bits         1801 libavcodec/mjpegdec.c     if (get_bits(&s->gb, 16) != 4)
get_bits         1803 libavcodec/mjpegdec.c     s->restart_interval = get_bits(&s->gb, 16);
get_bits         1815 libavcodec/mjpegdec.c     len = get_bits(&s->gb, 16);
get_bits         1847 libavcodec/mjpegdec.c         i = get_bits(&s->gb, 8); len--;
get_bits         1857 libavcodec/mjpegdec.c         v1 = get_bits(&s->gb, 8);
get_bits         1858 libavcodec/mjpegdec.c         v2 = get_bits(&s->gb, 8);
get_bits         1861 libavcodec/mjpegdec.c         s->avctx->sample_aspect_ratio.num = get_bits(&s->gb, 16);
get_bits         1862 libavcodec/mjpegdec.c         s->avctx->sample_aspect_ratio.den = get_bits(&s->gb, 16);
get_bits         1878 libavcodec/mjpegdec.c             t_w = get_bits(&s->gb, 8);
get_bits         1879 libavcodec/mjpegdec.c             t_h = get_bits(&s->gb, 8);
get_bits         1898 libavcodec/mjpegdec.c         s->adobe_transform = get_bits(&s->gb,  8);
get_bits         1915 libavcodec/mjpegdec.c         switch (i=get_bits(&s->gb, 8)) {
get_bits         1941 libavcodec/mjpegdec.c         s->colr = get_bits(&s->gb, 8);
get_bits         1948 libavcodec/mjpegdec.c         s->xfrm = get_bits(&s->gb, 8);
get_bits         1964 libavcodec/mjpegdec.c         flags  = get_bits(&s->gb, 8);
get_bits         1965 libavcodec/mjpegdec.c         layout = get_bits(&s->gb, 8);
get_bits         1966 libavcodec/mjpegdec.c         type   = get_bits(&s->gb, 8);
get_bits         2057 libavcodec/mjpegdec.c         id2  = get_bits(&s->gb, 24);
get_bits         2065 libavcodec/mjpegdec.c         seqno  = get_bits(&s->gb, 8);
get_bits         2072 libavcodec/mjpegdec.c         nummarkers  = get_bits(&s->gb, 8);
get_bits         2130 libavcodec/mjpegdec.c     int len = get_bits(&s->gb, 16);
get_bits         2138 libavcodec/mjpegdec.c             cbuf[i] = get_bits(&s->gb, 8);
get_bits          105 libavcodec/mlp_parse.c     if (get_bits(gb, 24) != 0xf8726f) /* Sync words */
get_bits          108 libavcodec/mlp_parse.c     mh->stream_type = get_bits(gb, 8);
get_bits          112 libavcodec/mlp_parse.c         mh->group1_bits = mlp_quants[get_bits(gb, 4)];
get_bits          113 libavcodec/mlp_parse.c         mh->group2_bits = mlp_quants[get_bits(gb, 4)];
get_bits          115 libavcodec/mlp_parse.c         ratebits = get_bits(gb, 4);
get_bits          117 libavcodec/mlp_parse.c         mh->group2_samplerate = mlp_samplerate(get_bits(gb, 4));
get_bits          122 libavcodec/mlp_parse.c         channel_arrangement    = get_bits(gb, 5);
get_bits          129 libavcodec/mlp_parse.c         ratebits = get_bits(gb, 4);
get_bits          135 libavcodec/mlp_parse.c         mh->channel_modifier_thd_stream0 = get_bits(gb, 2);
get_bits          136 libavcodec/mlp_parse.c         mh->channel_modifier_thd_stream1 = get_bits(gb, 2);
get_bits          139 libavcodec/mlp_parse.c         channel_arrangement            = get_bits(gb, 5);
get_bits          143 libavcodec/mlp_parse.c         mh->channel_modifier_thd_stream2 = get_bits(gb, 2);
get_bits          145 libavcodec/mlp_parse.c         channel_arrangement            = get_bits(gb, 13);
get_bits          158 libavcodec/mlp_parse.c     mh->peak_bitrate = (get_bits(gb, 15) * mh->group1_samplerate + 8) >> 4;
get_bits          160 libavcodec/mlp_parse.c     mh->num_substreams = get_bits(gb, 4);
get_bits          487 libavcodec/mlpdec.c     sync_word = get_bits(gbp, 13);
get_bits          504 libavcodec/mlpdec.c     min_channel        = get_bits(gbp, 4);
get_bits          505 libavcodec/mlpdec.c     max_channel        = get_bits(gbp, 4);
get_bits          506 libavcodec/mlpdec.c     max_matrix_channel = get_bits(gbp, 4);
get_bits          551 libavcodec/mlpdec.c     s->noise_shift   = get_bits(gbp,  4);
get_bits          552 libavcodec/mlpdec.c     s->noisegen_seed = get_bits(gbp, 23);
get_bits          557 libavcodec/mlpdec.c     lossless_check = get_bits(gbp, 8);
get_bits          572 libavcodec/mlpdec.c         int ch_assign = get_bits(gbp, 6);
get_bits          590 libavcodec/mlpdec.c     if (checksum != get_bits(gbp, 8))
get_bits          662 libavcodec/mlpdec.c     order = get_bits(gbp, 4);
get_bits          675 libavcodec/mlpdec.c         fp->shift = get_bits(gbp, 4);
get_bits          677 libavcodec/mlpdec.c         coeff_bits  = get_bits(gbp, 5);
get_bits          678 libavcodec/mlpdec.c         coeff_shift = get_bits(gbp, 3);
get_bits          704 libavcodec/mlpdec.c             state_bits  = get_bits(gbp, 4);
get_bits          705 libavcodec/mlpdec.c             state_shift = get_bits(gbp, 4);
get_bits          732 libavcodec/mlpdec.c     s->num_primitive_matrices = get_bits(gbp, 4);
get_bits          743 libavcodec/mlpdec.c         s->matrix_out_ch[mat] = get_bits(gbp, 4);
get_bits          744 libavcodec/mlpdec.c         frac_bits             = get_bits(gbp, 4);
get_bits          772 libavcodec/mlpdec.c             s->matrix_noise_shift[mat] = get_bits(gbp, 4);
get_bits          829 libavcodec/mlpdec.c     cp->codebook  = get_bits(gbp, 2);
get_bits          830 libavcodec/mlpdec.c     cp->huff_lsbs = get_bits(gbp, 5);
get_bits          854 libavcodec/mlpdec.c             s->param_presence_flags = get_bits(gbp, 8);
get_bits          858 libavcodec/mlpdec.c             s->blocksize = get_bits(gbp, 9);
get_bits          890 libavcodec/mlpdec.c                 s->quant_step_size[ch] = get_bits(gbp, 4);
get_bits          963 libavcodec/mlpdec.c         expected_stream_pos += get_bits(gbp, 16);
get_bits         1184 libavcodec/mlpdec.c         end = get_bits(&gb, 12) * 2;
get_bits         1279 libavcodec/mlpdec.c             if (get_bits(&gb, 16) != 0xD234)
get_bits         1282 libavcodec/mlpdec.c             shorten_by = get_bits(&gb, 16);
get_bits         1301 libavcodec/mlpdec.c             if ((get_bits(&gb, 8) ^ parity) != 0xa9    )
get_bits         1303 libavcodec/mlpdec.c             if ( get_bits(&gb, 8)           != checksum)
get_bits          108 libavcodec/motionpixels.c         w      = get_bits(gb, bits_len) + 1;
get_bits          109 libavcodec/motionpixels.c         h      = get_bits(gb, bits_len) + 1;
get_bits          111 libavcodec/motionpixels.c             color = get_bits(gb, 15);
get_bits          155 libavcodec/motionpixels.c         mp->codes[0].delta = get_bits(gb, 4);
get_bits          160 libavcodec/motionpixels.c         mp->max_codes_bits = get_bits(gb, 4);
get_bits          162 libavcodec/motionpixels.c             mp->codes[i].delta = get_bits(gb, 4);
get_bits          310 libavcodec/motionpixels.c         count1 = get_bits(&gb, 12);
get_bits          311 libavcodec/motionpixels.c         count2 = get_bits(&gb, 12);
get_bits          316 libavcodec/motionpixels.c     mp->codes_count = get_bits(&gb, 4);
get_bits          321 libavcodec/motionpixels.c         *(uint16_t *)mp->frame->data[0] = get_bits(&gb, 15);
get_bits          327 libavcodec/motionpixels.c     sz = get_bits(&gb, 18);
get_bits          329 libavcodec/motionpixels.c         sz += get_bits(&gb, 18);
get_bits           81 libavcodec/mpc7.c     c->maxbands = get_bits(&gb, 6);
get_bits           88 libavcodec/mpc7.c     c->lastframelen = get_bits(&gb, 11);
get_bits          177 libavcodec/mpc7.c             *dst++ = get_bits(gb, idx - 1) - t;
get_bits          188 libavcodec/mpc7.c         return get_bits(gb, 6);
get_bits          243 libavcodec/mpc7.c             if(t == 4) bands[i].res[ch] = get_bits(&gb, 4);
get_bits          128 libavcodec/mpc8.c     c->maxbands = get_bits(&gb, 5) + 1;
get_bits          133 libavcodec/mpc8.c     channels = get_bits(&gb, 4) + 1;
get_bits          139 libavcodec/mpc8.c     c->frames = 1 << (get_bits(&gb, 3) * 2);
get_bits          332 libavcodec/mpc8.c                 bands[i].scf_idx[ch][0] = get_bits(gb, 7) - 6;
get_bits          337 libavcodec/mpc8.c                     t += get_bits(gb, 6);
get_bits          346 libavcodec/mpc8.c                         t = 64 + get_bits(gb, 6);
get_bits          406 libavcodec/mpc8.c                         c->Q[ch][off + j] |= get_bits(gb, res - 9);
get_bits          117 libavcodec/mpeg12dec.c         val |= get_bits(&s->gb, shift);
get_bits          825 libavcodec/mpeg12dec.c                 motion_type = get_bits(&s->gb, 2);
get_bits          986 libavcodec/mpeg12dec.c                 cbp  |= get_bits(&s->gb, mb_block_count - 6);
get_bits         1356 libavcodec/mpeg12dec.c     ref = get_bits(&s->gb, 10); /* temporal ref */
get_bits         1357 libavcodec/mpeg12dec.c     s->pict_type = get_bits(&s->gb, 3);
get_bits         1361 libavcodec/mpeg12dec.c     vbv_delay = get_bits(&s->gb, 16);
get_bits         1366 libavcodec/mpeg12dec.c         f_code = get_bits(&s->gb, 3);
get_bits         1375 libavcodec/mpeg12dec.c         f_code = get_bits(&s->gb, 3);
get_bits         1402 libavcodec/mpeg12dec.c     s->avctx->profile       = get_bits(&s->gb, 3);
get_bits         1403 libavcodec/mpeg12dec.c     s->avctx->level         = get_bits(&s->gb, 4);
get_bits         1405 libavcodec/mpeg12dec.c     s->chroma_format        = get_bits(&s->gb, 2); /* chroma_format 1=420, 2=422, 3=444 */
get_bits         1412 libavcodec/mpeg12dec.c     horiz_size_ext          = get_bits(&s->gb, 2);
get_bits         1413 libavcodec/mpeg12dec.c     vert_size_ext           = get_bits(&s->gb, 2);
get_bits         1416 libavcodec/mpeg12dec.c     bit_rate_ext = get_bits(&s->gb, 12);  /* XXX: handle it */
get_bits         1419 libavcodec/mpeg12dec.c     s1->rc_buffer_size += get_bits(&s->gb, 8) * 1024 * 16 << 10;
get_bits         1425 libavcodec/mpeg12dec.c     s1->frame_rate_ext.num = get_bits(&s->gb, 2) + 1;
get_bits         1426 libavcodec/mpeg12dec.c     s1->frame_rate_ext.den = get_bits(&s->gb, 5) + 1;
get_bits         1452 libavcodec/mpeg12dec.c         s->avctx->color_primaries = get_bits(&s->gb, 8);
get_bits         1453 libavcodec/mpeg12dec.c         s->avctx->color_trc       = get_bits(&s->gb, 8);
get_bits         1454 libavcodec/mpeg12dec.c         s->avctx->colorspace      = get_bits(&s->gb, 8);
get_bits         1456 libavcodec/mpeg12dec.c     w = get_bits(&s->gb, 14);
get_bits         1458 libavcodec/mpeg12dec.c     h = get_bits(&s->gb, 14);
get_bits         1509 libavcodec/mpeg12dec.c         int v = get_bits(&s->gb, 8);
get_bits         1544 libavcodec/mpeg12dec.c     s->mpeg_f_code[0][0] = get_bits(&s->gb, 4);
get_bits         1545 libavcodec/mpeg12dec.c     s->mpeg_f_code[0][1] = get_bits(&s->gb, 4);
get_bits         1546 libavcodec/mpeg12dec.c     s->mpeg_f_code[1][0] = get_bits(&s->gb, 4);
get_bits         1547 libavcodec/mpeg12dec.c     s->mpeg_f_code[1][1] = get_bits(&s->gb, 4);
get_bits         1566 libavcodec/mpeg12dec.c     s->intra_dc_precision         = get_bits(&s->gb, 2);
get_bits         1567 libavcodec/mpeg12dec.c     s->picture_structure          = get_bits(&s->gb, 2);
get_bits         2101 libavcodec/mpeg12dec.c     width  = get_bits(&s->gb, 12);
get_bits         2102 libavcodec/mpeg12dec.c     height = get_bits(&s->gb, 12);
get_bits         2109 libavcodec/mpeg12dec.c     s->aspect_ratio_info = get_bits(&s->gb, 4);
get_bits         2115 libavcodec/mpeg12dec.c     s->frame_rate_index = get_bits(&s->gb, 4);
get_bits         2121 libavcodec/mpeg12dec.c     s->bit_rate = get_bits(&s->gb, 18) * 400LL;
get_bits         2126 libavcodec/mpeg12dec.c     s1->rc_buffer_size = get_bits(&s->gb, 10) * 1024 * 16;
get_bits         2264 libavcodec/mpeg12dec.c         cc_count = get_bits(&gb, 5);
get_bits         2276 libavcodec/mpeg12dec.c                     field = get_bits(&gb, 2);
get_bits         2278 libavcodec/mpeg12dec.c                     cc1 = get_bits(&gb, 8);
get_bits         2279 libavcodec/mpeg12dec.c                     cc2 = get_bits(&gb, 8);
get_bits         2439 libavcodec/mpeg12dec.c     tc = s-> timecode_frame_start = get_bits(&s->gb, 25);
get_bits         2583 libavcodec/mpeg12dec.c             switch (get_bits(&s2->gb, 4)) {
get_bits           55 libavcodec/mpeg4audio.c     c->channels    = get_bits(gb, 16) + 1;
get_bits           73 libavcodec/mpeg4audio.c     int object_type = get_bits(gb, 5);
get_bits           75 libavcodec/mpeg4audio.c         object_type = 32 + get_bits(gb, 6);
get_bits           81 libavcodec/mpeg4audio.c     *index = get_bits(gb, 4);
get_bits           82 libavcodec/mpeg4audio.c     return *index == 0x0f ? get_bits(gb, 24) :
get_bits           93 libavcodec/mpeg4audio.c     c->chan_config = get_bits(gb, 4);
get_bits          112 libavcodec/mpeg4audio.c             c->ext_chan_config = get_bits(gb, 4);
get_bits          134 libavcodec/mpeg4audio.c                 get_bits(gb, 11);
get_bits          141 libavcodec/mpeg4audio.c                 if (get_bits_left(gb) > 11 && get_bits(gb, 11) == 0x548)
get_bits          141 libavcodec/mpeg4audio.h     unsigned int el = get_bits(gb, bits);
get_bits          161 libavcodec/mpeg4videodec.c             mb_num = get_bits(&s->gb, mb_num_bits);
get_bits          435 libavcodec/mpeg4videodec.c     get_bits(gb, len);
get_bits          437 libavcodec/mpeg4videodec.c         get_bits(gb, len);
get_bits          472 libavcodec/mpeg4videodec.c     mb_num = get_bits(&s->gb, mb_num_bits);
get_bits          483 libavcodec/mpeg4videodec.c         int qscale = get_bits(&s->gb, s->quant_precision);
get_bits          517 libavcodec/mpeg4videodec.c                 int f_code = get_bits(&s->gb, 3);       /* fcode_for */
get_bits          523 libavcodec/mpeg4videodec.c                 int b_code = get_bits(&s->gb, 3);
get_bits          557 libavcodec/mpeg4videodec.c         mb_num = get_bits(gb, vlc_len);
get_bits          665 libavcodec/mpeg4videodec.c                     level = get_bits(&s->gb, code - 1) + (1 << (code - 1));
get_bits          667 libavcodec/mpeg4videodec.c                     level = -get_bits(&s->gb, code - 1) - (1 << (code - 1));
get_bits          730 libavcodec/mpeg4videodec.c                     ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
get_bits          926 libavcodec/mpeg4videodec.c                         ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
get_bits          958 libavcodec/mpeg4videodec.c                         ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
get_bits         1004 libavcodec/mpeg4videodec.c         if (get_bits(&s->gb, 19) != DC_MARKER) {
get_bits         1013 libavcodec/mpeg4videodec.c         if (get_bits(&s->gb, 17) != MOTION_MARKER) {
get_bits         1470 libavcodec/mpeg4videodec.c             ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
get_bits         1602 libavcodec/mpeg4videodec.c                 cbp = get_bits(&s->gb, 6);
get_bits         1731 libavcodec/mpeg4videodec.c             ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
get_bits         1786 libavcodec/mpeg4videodec.c         get_bits(gb, 8);
get_bits         1893 libavcodec/mpeg4videodec.c                 run += get_bits(&s->gb, additional_code_len);
get_bits         1898 libavcodec/mpeg4videodec.c             code = get_bits(&s->gb, additional_code_len);
get_bits         1919 libavcodec/mpeg4videodec.c             flc = get_bits(&s->gb, additional_code_len);
get_bits         1943 libavcodec/mpeg4videodec.c     block_mean = get_bits(&s->gb, s->avctx->bits_per_raw_sample);
get_bits         1950 libavcodec/mpeg4videodec.c     rice_parameter = get_bits(&s->gb, 4);
get_bits         1976 libavcodec/mpeg4videodec.c                 dpcm_residual = get_bits(&s->gb, s->avctx->bits_per_raw_sample);
get_bits         2074 libavcodec/mpeg4videodec.c     hours   = get_bits(gb, 5);
get_bits         2075 libavcodec/mpeg4videodec.c     minutes = get_bits(gb, 6);
get_bits         2077 libavcodec/mpeg4videodec.c     seconds = get_bits(gb, 6);
get_bits         2090 libavcodec/mpeg4videodec.c     *profile = get_bits(gb, 4);
get_bits         2091 libavcodec/mpeg4videodec.c     *level   = get_bits(gb, 4);
get_bits         2109 libavcodec/mpeg4videodec.c     visual_object_type = get_bits(gb, 4);
get_bits         2123 libavcodec/mpeg4videodec.c                 s->avctx->color_primaries = get_bits(gb, 8);
get_bits         2124 libavcodec/mpeg4videodec.c                 s->avctx->color_trc       = get_bits(gb, 8);
get_bits         2125 libavcodec/mpeg4videodec.c                 s->avctx->colorspace      = get_bits(gb, 8);
get_bits         2157 libavcodec/mpeg4videodec.c     s->vo_type = get_bits(gb, 8);
get_bits         2176 libavcodec/mpeg4videodec.c         vo_ver_id = get_bits(gb, 4);    /* vo_ver_id */
get_bits         2181 libavcodec/mpeg4videodec.c     s->aspect_ratio_info = get_bits(gb, 4);
get_bits         2183 libavcodec/mpeg4videodec.c         s->avctx->sample_aspect_ratio.num = get_bits(gb, 8);  // par_width
get_bits         2184 libavcodec/mpeg4videodec.c         s->avctx->sample_aspect_ratio.den = get_bits(gb, 8);  // par_height
get_bits         2190 libavcodec/mpeg4videodec.c         int chroma_format = get_bits(gb, 2);
get_bits         2196 libavcodec/mpeg4videodec.c             get_bits(gb, 15);   /* first_half_bitrate */
get_bits         2198 libavcodec/mpeg4videodec.c             get_bits(gb, 15);   /* latter_half_bitrate */
get_bits         2200 libavcodec/mpeg4videodec.c             get_bits(gb, 15);   /* first_half_vbv_buffer_size */
get_bits         2202 libavcodec/mpeg4videodec.c             get_bits(gb, 3);    /* latter_half_vbv_buffer_size */
get_bits         2203 libavcodec/mpeg4videodec.c             get_bits(gb, 11);   /* first_half_vbv_occupancy */
get_bits         2205 libavcodec/mpeg4videodec.c             get_bits(gb, 15);   /* latter_half_vbv_occupancy */
get_bits         2223 libavcodec/mpeg4videodec.c     ctx->shape = get_bits(gb, 2); /* vol shape */
get_bits         2233 libavcodec/mpeg4videodec.c     s->avctx->framerate.num = get_bits(gb, 16);
get_bits         2246 libavcodec/mpeg4videodec.c         s->avctx->framerate.den = get_bits(gb, ctx->time_increment_bits);
get_bits         2257 libavcodec/mpeg4videodec.c             width = get_bits(gb, 13);
get_bits         2259 libavcodec/mpeg4videodec.c             height = get_bits(gb, 13);
get_bits         2280 libavcodec/mpeg4videodec.c             ctx->vol_sprite_usage = get_bits(gb, 2);  /* vol_sprite_usage */
get_bits         2296 libavcodec/mpeg4videodec.c             ctx->num_sprite_warping_points = get_bits(gb, 6);
get_bits         2304 libavcodec/mpeg4videodec.c             s->sprite_warping_accuracy  = get_bits(gb, 2);
get_bits         2312 libavcodec/mpeg4videodec.c             s->quant_precision = get_bits(gb, 4);   /* quant_precision */
get_bits         2313 libavcodec/mpeg4videodec.c             if (get_bits(gb, 4) != 8)               /* bits_per_pixel */
get_bits         2341 libavcodec/mpeg4videodec.c                     v = get_bits(gb, 8);
get_bits         2368 libavcodec/mpeg4videodec.c                     v = get_bits(gb, 8);
get_bits         2401 libavcodec/mpeg4videodec.c             int estimation_method = get_bits(gb, 2);
get_bits         2487 libavcodec/mpeg4videodec.c             h_sampling_factor_n = get_bits(gb, 5);
get_bits         2488 libavcodec/mpeg4videodec.c             h_sampling_factor_m = get_bits(gb, 5);
get_bits         2489 libavcodec/mpeg4videodec.c             v_sampling_factor_n = get_bits(gb, 5);
get_bits         2490 libavcodec/mpeg4videodec.c             v_sampling_factor_m = get_bits(gb, 5);
get_bits         2537 libavcodec/mpeg4videodec.c         buf[i] = get_bits(gb, 8);
get_bits         2707 libavcodec/mpeg4videodec.c     s->pict_type = get_bits(gb, 2) + AV_PICTURE_TYPE_I;        /* pict type: I = 0 , P = 1 */
get_bits         2754 libavcodec/mpeg4videodec.c         time_increment = get_bits(gb, ctx->time_increment_bits);
get_bits         2854 libavcodec/mpeg4videodec.c         ctx->intra_dc_threshold = ff_mpeg4_dc_threshold[get_bits(gb, 3)];
get_bits         2891 libavcodec/mpeg4videodec.c         s->chroma_qscale = s->qscale = get_bits(gb, s->quant_precision);
get_bits         2899 libavcodec/mpeg4videodec.c             s->f_code = get_bits(gb, 3);        /* fcode_for */
get_bits         2910 libavcodec/mpeg4videodec.c             s->b_code = get_bits(gb, 3);
get_bits         2983 libavcodec/mpeg4videodec.c             v = get_bits(gb, 8);
get_bits         2995 libavcodec/mpeg4videodec.c             get_bits(gb, 8);
get_bits         3004 libavcodec/mpeg4videodec.c             v = get_bits(gb, 8);
get_bits         3015 libavcodec/mpeg4videodec.c             get_bits(gb, 8);
get_bits         3033 libavcodec/mpeg4videodec.c             extension_type = get_bits(gb, 4);
get_bits         3074 libavcodec/mpeg4videodec.c     s->pict_type = get_bits(gb, 2) + AV_PICTURE_TYPE_I; /* vop_coding_type */
get_bits         3089 libavcodec/mpeg4videodec.c         s->dct_precision = get_bits(gb, 2);
get_bits         3090 libavcodec/mpeg4videodec.c         s->intra_dc_precision = get_bits(gb, 2);
get_bits         3120 libavcodec/mpeg4videodec.c         visual_object_type = get_bits(gb, 4);
get_bits         3142 libavcodec/mpeg4videodec.c             ctx->shape = get_bits(gb, 2); /* video_object_layer_shape */
get_bits         3151 libavcodec/mpeg4videodec.c                 chroma_format = get_bits(gb, 2); /* chroma_format */
get_bits         3157 libavcodec/mpeg4videodec.c                 bits_per_raw_sample = get_bits(gb, 4); /* bit_depth */
get_bits         3178 libavcodec/mpeg4videodec.c                 width = get_bits(gb, 14); /* video_object_layer_width */
get_bits         3180 libavcodec/mpeg4videodec.c                 height = get_bits(gb, 14); /* video_object_layer_height */
get_bits         3192 libavcodec/mpeg4videodec.c             s->aspect_ratio_info = get_bits(gb, 4);
get_bits         3194 libavcodec/mpeg4videodec.c                 s->avctx->sample_aspect_ratio.num = get_bits(gb, 8);  // par_width
get_bits         3195 libavcodec/mpeg4videodec.c                 s->avctx->sample_aspect_ratio.den = get_bits(gb, 8);  // par_height
get_bits         3246 libavcodec/mpeg4videodec.c         if (get_bits(gb, 8) == 0xF0)
get_bits         3264 libavcodec/mpeg4videodec.c         v = get_bits(gb, 8);
get_bits          518 libavcodec/mpegaudiodec_template.c             allocation[ch][i] = get_bits(&s->gb, 4);
get_bits          522 libavcodec/mpegaudiodec_template.c         allocation[0][i] = get_bits(&s->gb, 4);
get_bits          528 libavcodec/mpegaudiodec_template.c                 scale_factors[ch][i] = get_bits(&s->gb, 6);
get_bits          533 libavcodec/mpegaudiodec_template.c             scale_factors[0][i] = get_bits(&s->gb, 6);
get_bits          534 libavcodec/mpegaudiodec_template.c             scale_factors[1][i] = get_bits(&s->gb, 6);
get_bits          544 libavcodec/mpegaudiodec_template.c                     mant = get_bits(&s->gb, n + 1);
get_bits          555 libavcodec/mpegaudiodec_template.c                 mant = get_bits(&s->gb, n + 1);
get_bits          601 libavcodec/mpegaudiodec_template.c             bit_alloc[ch][i] = get_bits(&s->gb, bit_alloc_bits);
get_bits          606 libavcodec/mpegaudiodec_template.c         v = get_bits(&s->gb, bit_alloc_bits);
get_bits          616 libavcodec/mpegaudiodec_template.c                 scale_code[ch][i] = get_bits(&s->gb, 2);
get_bits          628 libavcodec/mpegaudiodec_template.c                     sf[0] = get_bits(&s->gb, 6);
get_bits          629 libavcodec/mpegaudiodec_template.c                     sf[1] = get_bits(&s->gb, 6);
get_bits          630 libavcodec/mpegaudiodec_template.c                     sf[2] = get_bits(&s->gb, 6);
get_bits          633 libavcodec/mpegaudiodec_template.c                     sf[0] = get_bits(&s->gb, 6);
get_bits          638 libavcodec/mpegaudiodec_template.c                     sf[0] = get_bits(&s->gb, 6);
get_bits          639 libavcodec/mpegaudiodec_template.c                     sf[2] = get_bits(&s->gb, 6);
get_bits          643 libavcodec/mpegaudiodec_template.c                     sf[0] = get_bits(&s->gb, 6);
get_bits          644 libavcodec/mpegaudiodec_template.c                     sf[2] = get_bits(&s->gb, 6);
get_bits          667 libavcodec/mpegaudiodec_template.c                             v = get_bits(&s->gb, -bits);
get_bits          679 libavcodec/mpegaudiodec_template.c                                 v = get_bits(&s->gb, bits);
get_bits          705 libavcodec/mpegaudiodec_template.c                         v = get_bits(&s->gb, -bits);
get_bits          725 libavcodec/mpegaudiodec_template.c                             mant = get_bits(&s->gb, bits);
get_bits         1316 libavcodec/mpegaudiodec_template.c         main_data_begin = get_bits(&s->gb, 8);
get_bits         1320 libavcodec/mpegaudiodec_template.c         main_data_begin = get_bits(&s->gb, 9);
get_bits         1328 libavcodec/mpegaudiodec_template.c             s->granules[ch][1].scfsi = get_bits(&s->gb, 4);
get_bits         1336 libavcodec/mpegaudiodec_template.c             g->part2_3_length = get_bits(&s->gb, 12);
get_bits         1337 libavcodec/mpegaudiodec_template.c             g->big_values     = get_bits(&s->gb,  9);
get_bits         1343 libavcodec/mpegaudiodec_template.c             g->global_gain = get_bits(&s->gb, 8);
get_bits         1350 libavcodec/mpegaudiodec_template.c                 g->scalefac_compress = get_bits(&s->gb, 9);
get_bits         1352 libavcodec/mpegaudiodec_template.c                 g->scalefac_compress = get_bits(&s->gb, 4);
get_bits         1355 libavcodec/mpegaudiodec_template.c                 g->block_type = get_bits(&s->gb, 2);
get_bits         1362 libavcodec/mpegaudiodec_template.c                     g->table_select[i] = get_bits(&s->gb, 5);
get_bits         1364 libavcodec/mpegaudiodec_template.c                     g->subblock_gain[i] = get_bits(&s->gb, 3);
get_bits         1371 libavcodec/mpegaudiodec_template.c                     g->table_select[i] = get_bits(&s->gb, 5);
get_bits         1373 libavcodec/mpegaudiodec_template.c                 region_address1 = get_bits(&s->gb, 4);
get_bits         1374 libavcodec/mpegaudiodec_template.c                 region_address2 = get_bits(&s->gb, 3);
get_bits         1446 libavcodec/mpegaudiodec_template.c                             g->scale_factors[j++] = get_bits(&s->gb, slen1);
get_bits         1453 libavcodec/mpegaudiodec_template.c                             g->scale_factors[j++] = get_bits(&s->gb, slen2);
get_bits         1469 libavcodec/mpegaudiodec_template.c                                     g->scale_factors[j++] = get_bits(&s->gb, slen);
get_bits         1528 libavcodec/mpegaudiodec_template.c                             g->scale_factors[j++] = get_bits(&s->gb, sl);
get_bits         1570 libavcodec/mpegaudiodec_template.c         uint16_t crc = get_bits(&s->gb, 16);
get_bits          766 libavcodec/mpegvideo.h     int qscale = get_bits(&s->gb, 5);
get_bits           89 libavcodec/msmpeg4dec.c         val |= get_bits(&s->gb, shift);
get_bits          433 libavcodec/msmpeg4dec.c     s->pict_type = get_bits(&s->gb, 2) + 1;
get_bits          439 libavcodec/msmpeg4dec.c     s->chroma_qscale= s->qscale = get_bits(&s->gb, 5);
get_bits          446 libavcodec/msmpeg4dec.c         code = get_bits(&s->gb, 5);
get_bits          575 libavcodec/msmpeg4dec.c         s->bit_rate= get_bits(&s->gb, 11)*1024;
get_bits          624 libavcodec/msmpeg4dec.c             level = get_bits(&s->gb, 8);
get_bits          857 libavcodec/msmpeg4dec.c         mx = get_bits(&s->gb, 6);
get_bits          858 libavcodec/msmpeg4dec.c         my = get_bits(&s->gb, 6);
get_bits          116 libavcodec/mss1.c     c->value         = get_bits(gb, 16);
get_bits          259 libavcodec/mss2.c         x     = get_bits(gb, 12);
get_bits          260 libavcodec/mss2.c         y     = get_bits(gb, 12);
get_bits          261 libavcodec/mss2.c         clipw = get_bits(gb, 12) + 1;
get_bits          262 libavcodec/mss2.c         cliph = get_bits(gb, 12) + 1;
get_bits          285 libavcodec/mss2.c             int symbol = get_bits(gb, 8);
get_bits          299 libavcodec/mss2.c         current_codes   = get_bits(gb, av_ceil_log2(remaining_codes + 1));
get_bits          342 libavcodec/mss2.c                         b = get_bits(gb, 4) + 10;
get_bits          347 libavcodec/mss2.c                         repeat = get_bits(gb, b);
get_bits          505 libavcodec/mss2.c                     ctx->split_position = get_bits(&gb, 16);
get_bits          507 libavcodec/mss2.c                     ctx->split_position = get_bits(&gb, 12);
get_bits          509 libavcodec/mss2.c                 ctx->split_position = get_bits(&gb, 8) << 4;
get_bits          212 libavcodec/mss4.c     val = get_bits(gb, nbits);
get_bits          342 libavcodec/mss4.c                 vec_pos[i] = get_bits(gb, sel_len[i]);
get_bits          362 libavcodec/mss4.c     prev[component] = get_bits(gb, 8 - shift) << shift;
get_bits          418 libavcodec/mss4.c                     split = get_bits(gb, 4);
get_bits          440 libavcodec/mss4.c                 split = get_bits(gb, 4);
get_bits          386 libavcodec/mv30.c             int x = get_bits(gb, value);
get_bits          397 libavcodec/mv30.c             i += get_bits(gb, 3 + flag * 3) + 1 + flag * 8;
get_bits          428 libavcodec/mv30.c         int nb_codes = get_bits(gb, 16);
get_bits          511 libavcodec/mv30.c         int nb_codes = get_bits(gb, 16);
get_bits          535 libavcodec/mv30.c                 flags = get_bits(&mask, 8);
get_bits          613 libavcodec/mv30.c     s->intra_quant = get_bits(gb, 8);
get_bits          202 libavcodec/mvha.c         first_symbol = get_bits(gb, 8);
get_bits          203 libavcodec/mvha.c         s->nb_symbols = get_bits(gb, 8) + 1;
get_bits          213 libavcodec/mvha.c                 prob = get_bits(gb, 12);
get_bits          215 libavcodec/mvha.c                 prob = get_bits(gb, 3);
get_bits           74 libavcodec/nellymoserdec.c     val = ff_nelly_init_table[get_bits(&s->gb, 6)];
get_bits           77 libavcodec/nellymoserdec.c             val += ff_nelly_delta_table[get_bits(&s->gb, 5)];
get_bits          100 libavcodec/nellymoserdec.c                 v = get_bits(&s->gb, bits[j]);
get_bits          261 libavcodec/notchlc.c                 dsty[x + i * ylinesize + 0] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
get_bits          262 libavcodec/notchlc.c                 dsty[x + i * ylinesize + 1] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
get_bits          263 libavcodec/notchlc.c                 dsty[x + i * ylinesize + 2] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
get_bits          264 libavcodec/notchlc.c                 dsty[x + i * ylinesize + 3] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
get_bits          117 libavcodec/on2avc.c         band_type = get_bits(gb, 4);
get_bits          120 libavcodec/on2avc.c             run = get_bits(gb, bits_per_sect);
get_bits          169 libavcodec/on2avc.c                 scale = get_bits(gb, 7);
get_bits          812 libavcodec/on2avc.c     c->window_type      = get_bits(&gb, 3);
get_bits           50 libavcodec/opus_rc.c         rc->value = ((rc->value << OPUS_RC_SYM) | (get_bits(&rc->gb, OPUS_RC_SYM) ^ OPUS_RC_CEIL)) & (OPUS_RC_TOP - 1);
get_bits          345 libavcodec/opus_rc.c     rc->value = 127 - get_bits(&rc->gb, 7);
get_bits          210 libavcodec/pcx.c                 ptr[x] = get_bits(&s, bits_per_pixel);
get_bits          147 libavcodec/pixlet.c             escape = get_bits(bc, 16);
get_bits          167 libavcodec/pixlet.c             rlen = get_bits(bc, 16);
get_bits          231 libavcodec/pixlet.c             cnt1 = get_bits(bc, nbits);
get_bits          287 libavcodec/pixlet.c                 value = get_bits(bc, 16);
get_bits          289 libavcodec/pixlet.c                 value = get_bits(bc, 8);
get_bits           64 libavcodec/proresdec2.c                 val = get_bits(gb, num_bits);
get_bits           67 libavcodec/proresdec2.c                 val  = get_bits(gb, num_bits == 16 ? 7 : 4);
get_bits           90 libavcodec/proresdec2.c         val = get_bits(gb, 4);
get_bits           92 libavcodec/proresdec2.c             val = get_bits(gb, 11);
get_bits          728 libavcodec/qcelpdec.c             unpacked_data[bitmaps->index] |= get_bits(&q->gb, bitmaps->bitlen) << bitmaps->bitpos;
get_bits          209 libavcodec/qdm2.c         value = get_bits(gb, get_bits(gb, 3) + 1);
get_bits          223 libavcodec/qdm2.c             tmp += get_bits(gb, (value >> 2));
get_bits          265 libavcodec/qdm2.c     sub_packet->type = get_bits(gb, 8);
get_bits          271 libavcodec/qdm2.c         sub_packet->size = get_bits(gb, 8);
get_bits          275 libavcodec/qdm2.c             sub_packet->size  |= get_bits(gb, 8);
get_bits          280 libavcodec/qdm2.c             sub_packet->type |= (get_bits(gb, 8) << 8);
get_bits          721 libavcodec/qdm2.c                                 n = get_bits(gb, 8);
get_bits          762 libavcodec/qdm2.c                                 n = get_bits (gb, 8);
get_bits          780 libavcodec/qdm2.c                             n = get_bits(gb, 7);
get_bits          812 libavcodec/qdm2.c                                 type34_div = (float)(1 << get_bits(gb, 2));
get_bits          813 libavcodec/qdm2.c                                 samples[0] = ((float)get_bits(gb, 5) - 16.0) / 15.0;
get_bits         1049 libavcodec/qdm2.c         int c = get_bits(&gb, 13);
get_bits         1149 libavcodec/qdm2.c         int csum = 257 * get_bits(&gb, 8);
get_bits         1150 libavcodec/qdm2.c         csum += 2 * get_bits(&gb, 8);
get_bits         1218 libavcodec/qdm2.c                 q->fft_level_exp[j] = get_bits(&gb, 6);
get_bits         1323 libavcodec/qdm2.c         phase        = get_bits(gb, 3);
get_bits         1408 libavcodec/qdm2.c                 q->fft_level_exp[j] = get_bits(&gb, 6);
get_bits          378 libavcodec/qdmc.c         v = get_bits(gb, get_bits(gb, 3) + 1);
get_bits          393 libavcodec/qdmc.c     uint16_t sum = 226, checksum = get_bits(gb, 16);
get_bits          500 libavcodec/qdmc.c                 stereo_mode = get_bits(gb, 2);
get_bits          505 libavcodec/qdmc.c             phase = get_bits(gb, 3);
get_bits           90 libavcodec/qsvenc_hevc.c     get_bits(&gb, 1);
get_bits           91 libavcodec/qsvenc_hevc.c     type = get_bits(&gb, 6);
get_bits           98 libavcodec/qsvenc_hevc.c     get_bits(&gb, 9);
get_bits           52 libavcodec/ra144dec.c     int cba_idx = get_bits(gb, 7); // index of the adaptive CB, 0 if none
get_bits           53 libavcodec/ra144dec.c     int gain    = get_bits(gb, 8);
get_bits           54 libavcodec/ra144dec.c     int cb1_idx = get_bits(gb, 7);
get_bits           55 libavcodec/ra144dec.c     int cb2_idx = get_bits(gb, 7);
get_bits           96 libavcodec/ra144dec.c         lpc_refl[i] = ff_lpc_refl_cb[i][get_bits(&gb, sizes[i])];
get_bits          101 libavcodec/ra144dec.c     energy = ff_energy_tab[get_bits(&gb, 5)];
get_bits          222 libavcodec/ra288.c         float gain = amptable[get_bits(&gb, 3)];
get_bits          223 libavcodec/ra288.c         int cb_coef = get_bits(&gb, 6 + (i&1));
get_bits          223 libavcodec/ralf.c         val = ((unsigned)val << bits) | get_bits(gb, bits);
get_bits          244 libavcodec/ralf.c             dst[i] = get_bits(gb, bits);
get_bits          308 libavcodec/ralf.c             dst[i]     |= get_bits(gb, add_bits);
get_bits          309 libavcodec/ralf.c             dst[i + 1] |= get_bits(gb, add_bits);
get_bits          362 libavcodec/ralf.c         dmode = get_bits(gb, 2) + 1;
get_bits          487 libavcodec/ralf.c         ctx->block_size[ctx->num_blocks] = get_bits(&gb, 13 + avctx->channels);
get_bits          489 libavcodec/ralf.c             ctx->block_pts[ctx->num_blocks] = get_bits(&gb, 9);
get_bits          161 libavcodec/rawdec.c             int sample = get_bits(&gb, avctx->bits_per_coded_sample); \
get_bits           50 libavcodec/rtjpeg.c     uint8_t dc = get_bits(gb, 8);
get_bits           57 libavcodec/rtjpeg.c     coeff = get_bits(gb, 6);
get_bits          208 libavcodec/rv10.c             code = get_bits(&s->gb, 7);
get_bits          210 libavcodec/rv10.c                 code = (int8_t) (get_bits(&s->gb, 7) + 1);
get_bits          212 libavcodec/rv10.c                 code = -128 + get_bits(&s->gb, 7);
get_bits          215 libavcodec/rv10.c                     code = (int8_t) (get_bits(&s->gb, 8) + 1);
get_bits          217 libavcodec/rv10.c                     code = (int8_t) (get_bits(&s->gb, 8));
get_bits          229 libavcodec/rv10.c             code = get_bits(&s->gb, 9);
get_bits          231 libavcodec/rv10.c                 code = (int8_t) (get_bits(&s->gb, 7) + 1);
get_bits          233 libavcodec/rv10.c                 code = -128 + get_bits(&s->gb, 7);
get_bits          272 libavcodec/rv10.c     s->qscale = get_bits(&s->gb, 5);
get_bits          281 libavcodec/rv10.c             s->last_dc[0] = get_bits(&s->gb, 8);
get_bits          282 libavcodec/rv10.c             s->last_dc[1] = get_bits(&s->gb, 8);
get_bits          283 libavcodec/rv10.c             s->last_dc[2] = get_bits(&s->gb, 8);
get_bits          293 libavcodec/rv10.c         s->mb_x  = get_bits(&s->gb, 6); /* mb_x */
get_bits          294 libavcodec/rv10.c         s->mb_y  = get_bits(&s->gb, 6); /* mb_y */
get_bits          295 libavcodec/rv10.c         mb_count = get_bits(&s->gb, 12);
get_bits          314 libavcodec/rv10.c     i = get_bits(&s->gb, 2);
get_bits          347 libavcodec/rv10.c     s->qscale = get_bits(&s->gb, 5);
get_bits          357 libavcodec/rv10.c         seq = get_bits(&s->gb, 8) << 7;
get_bits          359 libavcodec/rv10.c         seq = get_bits(&s->gb, 13) << 2;
get_bits          366 libavcodec/rv10.c         f = get_bits(&s->gb, rpr_bits);
get_bits           45 libavcodec/rv30.c     if(get_bits(gb, 3))
get_bits           47 libavcodec/rv30.c     si->type = get_bits(gb, 2);
get_bits           51 libavcodec/rv30.c     si->quant = get_bits(gb, 5);
get_bits           53 libavcodec/rv30.c     si->pts = get_bits(gb, 13);
get_bits           54 libavcodec/rv30.c     rpr = get_bits(gb, av_log2(r->max_rpr) + 1);
get_bits           78 libavcodec/rv30.c     si->start = get_bits(gb, mb_bits);
get_bits          228 libavcodec/rv34.c                 coef = 22 + ((1 << coef) | get_bits(gb, coef));
get_bits          364 libavcodec/rv34.c         t = get_bits(gb, 2);
get_bits          418 libavcodec/rv34.c             t = get_bits(gb, 2);
get_bits          106 libavcodec/rv40.c     int t   = get_bits(gb, 3);
get_bits          114 libavcodec/rv40.c             t = get_bits(gb, 8);
get_bits          140 libavcodec/rv40.c     si->type = get_bits(gb, 2);
get_bits          142 libavcodec/rv40.c     si->quant = get_bits(gb, 5);
get_bits          143 libavcodec/rv40.c     if(get_bits(gb, 2))
get_bits          145 libavcodec/rv40.c     si->vlc_set = get_bits(gb, 2);
get_bits          147 libavcodec/rv40.c     si->pts = get_bits(gb, 13);
get_bits          156 libavcodec/rv40.c     si->start = get_bits(gb, mb_bits);
get_bits           54 libavcodec/sheervideo.c                 dst_a[x] = get_bits(gb, 10);
get_bits           55 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 10);
get_bits           56 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 10);
get_bits           57 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 10);
get_bits           97 libavcodec/sheervideo.c             dst_a[x] = get_bits(gb, 10);
get_bits           98 libavcodec/sheervideo.c             dst_y[x] = get_bits(gb, 10);
get_bits           99 libavcodec/sheervideo.c             dst_u[x] = get_bits(gb, 10);
get_bits          100 libavcodec/sheervideo.c             dst_v[x] = get_bits(gb, 10);
get_bits          128 libavcodec/sheervideo.c                 dst_a[x] = get_bits(gb, 10);
get_bits          129 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 10);
get_bits          130 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 10);
get_bits          131 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 10);
get_bits          185 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 10);
get_bits          186 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 10);
get_bits          187 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 10);
get_bits          223 libavcodec/sheervideo.c             dst_y[x] = get_bits(gb, 10);
get_bits          224 libavcodec/sheervideo.c             dst_u[x] = get_bits(gb, 10);
get_bits          225 libavcodec/sheervideo.c             dst_v[x] = get_bits(gb, 10);
get_bits          250 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 10);
get_bits          251 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 10);
get_bits          252 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 10);
get_bits          300 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 10);
get_bits          301 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 10);
get_bits          302 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 10);
get_bits          303 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 10);
get_bits          341 libavcodec/sheervideo.c             dst_y[x    ] = get_bits(gb, 10);
get_bits          342 libavcodec/sheervideo.c             dst_u[x / 2] = get_bits(gb, 10);
get_bits          343 libavcodec/sheervideo.c             dst_y[x + 1] = get_bits(gb, 10);
get_bits          344 libavcodec/sheervideo.c             dst_v[x / 2] = get_bits(gb, 10);
get_bits          371 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 10);
get_bits          372 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 10);
get_bits          373 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 10);
get_bits          374 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 10);
get_bits          426 libavcodec/sheervideo.c                 dst_a[x    ] = get_bits(gb, 10);
get_bits          427 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 10);
get_bits          428 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 10);
get_bits          429 libavcodec/sheervideo.c                 dst_a[x + 1] = get_bits(gb, 10);
get_bits          430 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 10);
get_bits          431 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 10);
get_bits          475 libavcodec/sheervideo.c             dst_a[x    ] = get_bits(gb, 10);
get_bits          476 libavcodec/sheervideo.c             dst_y[x    ] = get_bits(gb, 10);
get_bits          477 libavcodec/sheervideo.c             dst_u[x / 2] = get_bits(gb, 10);
get_bits          478 libavcodec/sheervideo.c             dst_a[x + 1] = get_bits(gb, 10);
get_bits          479 libavcodec/sheervideo.c             dst_y[x + 1] = get_bits(gb, 10);
get_bits          480 libavcodec/sheervideo.c             dst_v[x / 2] = get_bits(gb, 10);
get_bits          512 libavcodec/sheervideo.c                 dst_a[x    ] = get_bits(gb, 10);
get_bits          513 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 10);
get_bits          514 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 10);
get_bits          515 libavcodec/sheervideo.c                 dst_a[x + 1] = get_bits(gb, 10);
get_bits          516 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 10);
get_bits          517 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 10);
get_bits          578 libavcodec/sheervideo.c                 dst_a[x    ] = get_bits(gb, 8);
get_bits          579 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 8);
get_bits          580 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 8);
get_bits          581 libavcodec/sheervideo.c                 dst_a[x + 1] = get_bits(gb, 8);
get_bits          582 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 8);
get_bits          583 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 8);
get_bits          627 libavcodec/sheervideo.c             dst_a[x    ] = get_bits(gb, 8);
get_bits          628 libavcodec/sheervideo.c             dst_y[x    ] = get_bits(gb, 8);
get_bits          629 libavcodec/sheervideo.c             dst_u[x / 2] = get_bits(gb, 8);
get_bits          630 libavcodec/sheervideo.c             dst_a[x + 1] = get_bits(gb, 8);
get_bits          631 libavcodec/sheervideo.c             dst_y[x + 1] = get_bits(gb, 8);
get_bits          632 libavcodec/sheervideo.c             dst_v[x / 2] = get_bits(gb, 8);
get_bits          664 libavcodec/sheervideo.c                 dst_a[x    ] = get_bits(gb, 8);
get_bits          665 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 8);
get_bits          666 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 8);
get_bits          667 libavcodec/sheervideo.c                 dst_a[x + 1] = get_bits(gb, 8);
get_bits          668 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 8);
get_bits          669 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 8);
get_bits          728 libavcodec/sheervideo.c             dst_y[x    ] = get_bits(gb, 8);
get_bits          729 libavcodec/sheervideo.c             dst_u[x / 2] = get_bits(gb, 8) + 128;
get_bits          730 libavcodec/sheervideo.c             dst_y[x + 1] = get_bits(gb, 8);
get_bits          731 libavcodec/sheervideo.c             dst_v[x / 2] = get_bits(gb, 8) + 128;
get_bits          758 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 8);
get_bits          759 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 8) + 128;
get_bits          760 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 8);
get_bits          761 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 8) + 128;
get_bits          811 libavcodec/sheervideo.c             dst_y[x    ] = get_bits(gb, 8);
get_bits          812 libavcodec/sheervideo.c             dst_u[x / 2] = get_bits(gb, 8);
get_bits          813 libavcodec/sheervideo.c             dst_y[x + 1] = get_bits(gb, 8);
get_bits          814 libavcodec/sheervideo.c             dst_v[x / 2] = get_bits(gb, 8);
get_bits          841 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 8);
get_bits          842 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 8);
get_bits          843 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 8);
get_bits          844 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 8);
get_bits          885 libavcodec/sheervideo.c             dst_y[x    ] = get_bits(gb, 8);
get_bits          886 libavcodec/sheervideo.c             dst_u[x / 2] = get_bits(gb, 8);
get_bits          887 libavcodec/sheervideo.c             dst_y[x + 1] = get_bits(gb, 8);
get_bits          888 libavcodec/sheervideo.c             dst_v[x / 2] = get_bits(gb, 8);
get_bits          915 libavcodec/sheervideo.c                 dst_y[x    ] = get_bits(gb, 8);
get_bits          916 libavcodec/sheervideo.c                 dst_u[x / 2] = get_bits(gb, 8);
get_bits          917 libavcodec/sheervideo.c                 dst_y[x + 1] = get_bits(gb, 8);
get_bits          918 libavcodec/sheervideo.c                 dst_v[x / 2] = get_bits(gb, 8);
get_bits          968 libavcodec/sheervideo.c             dst_y[x] = get_bits(gb, 8);
get_bits          969 libavcodec/sheervideo.c             dst_u[x] = get_bits(gb, 8);
get_bits          970 libavcodec/sheervideo.c             dst_v[x] = get_bits(gb, 8);
get_bits          995 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 8);
get_bits          996 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 8);
get_bits          997 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 8);
get_bits         1036 libavcodec/sheervideo.c             dst_y[x] = get_bits(gb, 8);
get_bits         1037 libavcodec/sheervideo.c             dst_u[x] = get_bits(gb, 8);
get_bits         1038 libavcodec/sheervideo.c             dst_v[x] = get_bits(gb, 8);
get_bits         1063 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 8);
get_bits         1064 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 8);
get_bits         1065 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 8);
get_bits         1113 libavcodec/sheervideo.c             dst_a[x] = get_bits(gb, 8);
get_bits         1114 libavcodec/sheervideo.c             dst_y[x] = get_bits(gb, 8);
get_bits         1115 libavcodec/sheervideo.c             dst_u[x] = get_bits(gb, 8);
get_bits         1116 libavcodec/sheervideo.c             dst_v[x] = get_bits(gb, 8);
get_bits         1144 libavcodec/sheervideo.c                 dst_a[x] = get_bits(gb, 8);
get_bits         1145 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 8);
get_bits         1146 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 8);
get_bits         1147 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 8);
get_bits         1191 libavcodec/sheervideo.c             dst_a[x] = get_bits(gb, 8);
get_bits         1192 libavcodec/sheervideo.c             dst_y[x] = get_bits(gb, 8);
get_bits         1193 libavcodec/sheervideo.c             dst_u[x] = get_bits(gb, 8);
get_bits         1194 libavcodec/sheervideo.c             dst_v[x] = get_bits(gb, 8);
get_bits         1222 libavcodec/sheervideo.c                 dst_a[x] = get_bits(gb, 8);
get_bits         1223 libavcodec/sheervideo.c                 dst_y[x] = get_bits(gb, 8);
get_bits         1224 libavcodec/sheervideo.c                 dst_u[x] = get_bits(gb, 8);
get_bits         1225 libavcodec/sheervideo.c                 dst_v[x] = get_bits(gb, 8);
get_bits         1280 libavcodec/sheervideo.c                 dst_a[x] = get_bits(gb, 10);
get_bits         1281 libavcodec/sheervideo.c                 dst_r[x] = get_bits(gb, 10);
get_bits         1282 libavcodec/sheervideo.c                 dst_g[x] = get_bits(gb, 10);
get_bits         1283 libavcodec/sheervideo.c                 dst_b[x] = get_bits(gb, 10);
get_bits         1323 libavcodec/sheervideo.c             dst_a[x] = get_bits(gb, 10);
get_bits         1324 libavcodec/sheervideo.c             dst_r[x] = get_bits(gb, 10);
get_bits         1325 libavcodec/sheervideo.c             dst_g[x] = get_bits(gb, 10);
get_bits         1326 libavcodec/sheervideo.c             dst_b[x] = get_bits(gb, 10);
get_bits         1354 libavcodec/sheervideo.c                 dst_a[x] = get_bits(gb, 10);
get_bits         1355 libavcodec/sheervideo.c                 dst_r[x] = get_bits(gb, 10);
get_bits         1356 libavcodec/sheervideo.c                 dst_g[x] = get_bits(gb, 10);
get_bits         1357 libavcodec/sheervideo.c                 dst_b[x] = get_bits(gb, 10);
get_bits         1411 libavcodec/sheervideo.c                 dst_r[x] = get_bits(gb, 10);
get_bits         1412 libavcodec/sheervideo.c                 dst_g[x] = get_bits(gb, 10);
get_bits         1413 libavcodec/sheervideo.c                 dst_b[x] = get_bits(gb, 10);
get_bits         1449 libavcodec/sheervideo.c             dst_r[x] = get_bits(gb, 10);
get_bits         1450 libavcodec/sheervideo.c             dst_g[x] = get_bits(gb, 10);
get_bits         1451 libavcodec/sheervideo.c             dst_b[x] = get_bits(gb, 10);
get_bits         1476 libavcodec/sheervideo.c                 dst_r[x] = get_bits(gb, 10);
get_bits         1477 libavcodec/sheervideo.c                 dst_g[x] = get_bits(gb, 10);
get_bits         1478 libavcodec/sheervideo.c                 dst_b[x] = get_bits(gb, 10);
get_bits         1522 libavcodec/sheervideo.c             dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1523 libavcodec/sheervideo.c             dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1524 libavcodec/sheervideo.c             dst[x * 4 + 2] = get_bits(gb, 8);
get_bits         1525 libavcodec/sheervideo.c             dst[x * 4 + 3] = get_bits(gb, 8);
get_bits         1549 libavcodec/sheervideo.c                 dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1550 libavcodec/sheervideo.c                 dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1551 libavcodec/sheervideo.c                 dst[x * 4 + 2] = get_bits(gb, 8);
get_bits         1552 libavcodec/sheervideo.c                 dst[x * 4 + 3] = get_bits(gb, 8);
get_bits         1588 libavcodec/sheervideo.c             dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1589 libavcodec/sheervideo.c             dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1590 libavcodec/sheervideo.c             dst[x * 4 + 2] = get_bits(gb, 8);
get_bits         1591 libavcodec/sheervideo.c             dst[x * 4 + 3] = get_bits(gb, 8);
get_bits         1615 libavcodec/sheervideo.c                 dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1616 libavcodec/sheervideo.c                 dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1617 libavcodec/sheervideo.c                 dst[x * 4 + 2] = get_bits(gb, 8);
get_bits         1618 libavcodec/sheervideo.c                 dst[x * 4 + 3] = get_bits(gb, 8);
get_bits         1664 libavcodec/sheervideo.c             dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1665 libavcodec/sheervideo.c             dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1666 libavcodec/sheervideo.c             dst[x * 4 + 2] = get_bits(gb, 8);
get_bits         1688 libavcodec/sheervideo.c                 dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1689 libavcodec/sheervideo.c                 dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1690 libavcodec/sheervideo.c                 dst[x * 4 + 2] = get_bits(gb, 8);
get_bits         1723 libavcodec/sheervideo.c             dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1724 libavcodec/sheervideo.c             dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1725 libavcodec/sheervideo.c             dst[x * 4 + 2] = get_bits(gb, 8);
get_bits         1747 libavcodec/sheervideo.c                 dst[x * 4 + 0] = get_bits(gb, 8);
get_bits         1748 libavcodec/sheervideo.c                 dst[x * 4 + 1] = get_bits(gb, 8);
get_bits         1749 libavcodec/sheervideo.c                 dst[x * 4 + 2] = get_bits(gb, 8);
get_bits          418 libavcodec/shorten.c     s->version        = get_bits(&s->gb, 8);
get_bits          199 libavcodec/sipr.c         parms->ma_pred_switch       = get_bits(pgb, p->ma_predictor_bits);
get_bits          202 libavcodec/sipr.c         parms->vq_indexes[i]        = get_bits(pgb, p->vq_indexes_bits[i]);
get_bits          205 libavcodec/sipr.c         parms->pitch_delay[i]       = get_bits(pgb, p->pitch_delay_bits[i]);
get_bits          207 libavcodec/sipr.c             parms->gp_index[i]      = get_bits(pgb, p->gp_index_bits);
get_bits          210 libavcodec/sipr.c             parms->fc_indexes[i][j] = get_bits(pgb, p->fc_index_bits[j]);
get_bits          212 libavcodec/sipr.c         parms->gc_index[i]          = get_bits(pgb, p->gc_index_bits);
get_bits          430 libavcodec/siren.c     absolute_region_power_index[0] = (int)get_bits(gb, 5) - esf_adjustment;
get_bits          690 libavcodec/siren.c     rate_control = get_bits(gb, 4);
get_bits          117 libavcodec/smacker.c         hc->values[hc->current] = get_bits(gb, 8);
get_bits          264 libavcodec/smacker.c     escapes[0]  = get_bits(gb, 16);
get_bits          265 libavcodec/smacker.c     escapes[1]  = get_bits(gb, 16);
get_bits          266 libavcodec/smacker.c     escapes[2]  = get_bits(gb, 16);
get_bits          724 libavcodec/smacker.c             pred[i] = sign_extend(av_bswap16(get_bits(&gb, 16)), 16);
get_bits          782 libavcodec/smacker.c             pred[i] = get_bits(&gb, 8);
get_bits          364 libavcodec/sonic.c         low_bits = get_bits(gb, 4);
get_bits          368 libavcodec/sonic.c                 buf[i] = get_bits(gb, low_bits);
get_bits          879 libavcodec/sonic.c     s->version = get_bits(&gb, 2);
get_bits          881 libavcodec/sonic.c         s->version       = get_bits(&gb, 8);
get_bits          882 libavcodec/sonic.c         s->minor_version = get_bits(&gb, 8);
get_bits          893 libavcodec/sonic.c         s->channels = get_bits(&gb, 2);
get_bits          894 libavcodec/sonic.c         sample_rate_index = get_bits(&gb, 4);
get_bits          914 libavcodec/sonic.c     s->decorrelation = get_bits(&gb, 2);
get_bits          920 libavcodec/sonic.c     s->downsampling = get_bits(&gb, 2);
get_bits          926 libavcodec/sonic.c     s->num_taps = (get_bits(&gb, 5)+1)<<5;
get_bits          149 libavcodec/svq1dec.c         bit_cache = get_bits(bitbuf, 4 * stages);                       \
get_bits          510 libavcodec/svq1dec.c     out[0] = get_bits(bitbuf, 8);
get_bits          514 libavcodec/svq1dec.c         out[i] = get_bits(bitbuf, 8) ^ seed;
get_bits          532 libavcodec/svq1dec.c     switch (get_bits(bitbuf, 2)) {
get_bits          549 libavcodec/svq1dec.c             int csum = get_bits(bitbuf, 16);
get_bits          571 libavcodec/svq1dec.c         frame_size_code = get_bits(bitbuf, 3);
get_bits          575 libavcodec/svq1dec.c             width  = get_bits(bitbuf, 12);
get_bits          576 libavcodec/svq1dec.c             height = get_bits(bitbuf, 12);
get_bits          592 libavcodec/svq1dec.c         if (get_bits(bitbuf, 2) != 0)
get_bits          631 libavcodec/svq1dec.c     s->frame_code = get_bits(&s->gb, 22);
get_bits         1027 libavcodec/svq3.c     header = get_bits(&s->gb, 8);
get_bits         1074 libavcodec/svq3.c         get_bits(&s->gb_slice, i);
get_bits         1080 libavcodec/svq3.c     s->slice_num      = get_bits(&s->gb_slice, 8);
get_bits         1081 libavcodec/svq3.c     s->qscale         = get_bits(&s->gb_slice, 5);
get_bits         1198 libavcodec/svq3.c         frame_size_code = get_bits(&gb, 3);
get_bits         1229 libavcodec/svq3.c             w = get_bits(&gb, 12);
get_bits         1230 libavcodec/svq3.c             h = get_bits(&gb, 12);
get_bits         1266 libavcodec/svq3.c             int u2                    = get_bits(&gb, 8);
get_bits         1267 libavcodec/svq3.c             int u3                    = get_bits(&gb, 2);
get_bits           98 libavcodec/tak.c     s->codec = get_bits(gb, TAK_ENCODER_CODEC_BITS);
get_bits          101 libavcodec/tak.c     frame_type = get_bits(gb, TAK_SIZE_FRAME_DURATION_BITS);
get_bits          104 libavcodec/tak.c     s->data_type   = get_bits(gb, TAK_FORMAT_DATA_TYPE_BITS);
get_bits          105 libavcodec/tak.c     s->sample_rate = get_bits(gb, TAK_FORMAT_SAMPLE_RATE_BITS) +
get_bits          107 libavcodec/tak.c     s->bps         = get_bits(gb, TAK_FORMAT_BPS_BITS) +
get_bits          109 libavcodec/tak.c     s->channels    = get_bits(gb, TAK_FORMAT_CHANNEL_BITS) +
get_bits          116 libavcodec/tak.c                 int value = get_bits(gb, TAK_FORMAT_CH_LAYOUT_BITS);
get_bits          144 libavcodec/tak.c     if (get_bits(gb, TAK_FRAME_HEADER_SYNC_ID_BITS) != TAK_FRAME_HEADER_SYNC_ID) {
get_bits          149 libavcodec/tak.c     ti->flags     = get_bits(gb, TAK_FRAME_HEADER_FLAGS_BITS);
get_bits          150 libavcodec/tak.c     ti->frame_num = get_bits(gb, TAK_FRAME_HEADER_NO_BITS);
get_bits          153 libavcodec/tak.c         ti->last_frame_samples = get_bits(gb, TAK_FRAME_HEADER_SAMPLE_COUNT_BITS) + 1;
get_bits          162 libavcodec/tak.c         if (get_bits(gb, 6))
get_bits          276 libavcodec/takdec.c                     int scale_bits = get_bits(gb, 3);
get_bits          279 libavcodec/takdec.c                             scale_bits += get_bits(gb, 5);
get_bits          321 libavcodec/takdec.c         s->coding_mode[0] = mode = get_bits(gb, 6);
get_bits          328 libavcodec/takdec.c                 mode = get_bits(gb, 6);
get_bits          369 libavcodec/takdec.c         mode = get_bits(gb, 6);
get_bits          380 libavcodec/takdec.c         return get_bits(gb, 4) + 1;
get_bits          396 libavcodec/takdec.c     filter_order = predictor_sizes[get_bits(gb, 4)];
get_bits          413 libavcodec/takdec.c         lpc_mode = get_bits(gb, 2);
get_bits          429 libavcodec/takdec.c         filter_quant -= get_bits(gb, 3) + 1;
get_bits          443 libavcodec/takdec.c                 x = tmp - get_bits(gb, 2);
get_bits          522 libavcodec/takdec.c     s->lpc_mode[chan] = get_bits(gb, 2);
get_bits          523 libavcodec/takdec.c     s->nb_subframes   = get_bits(gb, 3) + 1;
get_bits          530 libavcodec/takdec.c             int v = get_bits(gb, 6);
get_bits          602 libavcodec/takdec.c                 code_size = 14 - get_bits(gb, 3);
get_bits          780 libavcodec/takdec.c                 s->nb_subframes = get_bits(gb, 1) + 1;
get_bits          782 libavcodec/takdec.c                     s->subframe_len[1] = get_bits(gb, 6);
get_bits          785 libavcodec/takdec.c                 s->dmode = get_bits(gb, 3);
get_bits          793 libavcodec/takdec.c                 chan = get_bits(gb, 4) + 1;
get_bits          798 libavcodec/takdec.c                     int nbit = get_bits(gb, 4);
get_bits          808 libavcodec/takdec.c                         s->mcdparams[i].index = get_bits(gb, 2);
get_bits          809 libavcodec/takdec.c                         s->mcdparams[i].chan2 = get_bits(gb, 4);
get_bits          119 libavcodec/tiertexseqv.c                 dst[i] = color_table[get_bits(&gb, bits)];
get_bits          194 libavcodec/tiertexseqv.c                 op = get_bits(&gb, 2);
get_bits          322 libavcodec/tiff.c                 dst16[i] = get_bits(&gb, bpp) << shift;
get_bits          357 libavcodec/tiff.c         dst[i] = get_bits(&gb, bpp);
get_bits           82 libavcodec/truehd_core_bsf.c         units[i].offset = get_bits(&gbc, 12);
get_bits           89 libavcodec/truehd_core_bsf.c             units[i].optional = get_bits(&gbc, 16);
get_bits          155 libavcodec/truemotion2.c     huff.val_bits = get_bits(&ctx->gb, 5);
get_bits          156 libavcodec/truemotion2.c     huff.max_bits = get_bits(&ctx->gb, 5);
get_bits          157 libavcodec/truemotion2.c     huff.min_bits = get_bits(&ctx->gb, 5);
get_bits          158 libavcodec/truemotion2.c     huff.nodes    = get_bits(&ctx->gb, 17);
get_bits          273 libavcodec/truemotion2.c     d  = get_bits(&ctx->gb, 9);
get_bits          274 libavcodec/truemotion2.c     mb = get_bits(&ctx->gb, 5);
get_bits          136 libavcodec/truemotion2rt.c             diff  += delta_tabs[delta_mode][get_bits(gb, s->delta_size)];
get_bits          162 libavcodec/truemotion2rt.c             diff  += delta_tabs[delta_mode][get_bits(gb, s->delta_size)];
get_bits          188 libavcodec/truemotion2rt.c             diff  += delta_tabs[delta_mode][get_bits(gb, s->delta_size)];
get_bits           85 libavcodec/truespeech.c     dec->vector[7] = ts_codebook[7][get_bits(&gb, 3)];
get_bits           86 libavcodec/truespeech.c     dec->vector[6] = ts_codebook[6][get_bits(&gb, 3)];
get_bits           87 libavcodec/truespeech.c     dec->vector[5] = ts_codebook[5][get_bits(&gb, 3)];
get_bits           88 libavcodec/truespeech.c     dec->vector[4] = ts_codebook[4][get_bits(&gb, 4)];
get_bits           89 libavcodec/truespeech.c     dec->vector[3] = ts_codebook[3][get_bits(&gb, 4)];
get_bits           90 libavcodec/truespeech.c     dec->vector[2] = ts_codebook[2][get_bits(&gb, 4)];
get_bits           91 libavcodec/truespeech.c     dec->vector[1] = ts_codebook[1][get_bits(&gb, 5)];
get_bits           92 libavcodec/truespeech.c     dec->vector[0] = ts_codebook[0][get_bits(&gb, 5)];
get_bits           95 libavcodec/truespeech.c     dec->offset1[0] = get_bits(&gb, 4) << 4;
get_bits           96 libavcodec/truespeech.c     dec->offset2[3] = get_bits(&gb, 7);
get_bits           97 libavcodec/truespeech.c     dec->offset2[2] = get_bits(&gb, 7);
get_bits           98 libavcodec/truespeech.c     dec->offset2[1] = get_bits(&gb, 7);
get_bits           99 libavcodec/truespeech.c     dec->offset2[0] = get_bits(&gb, 7);
get_bits          101 libavcodec/truespeech.c     dec->offset1[1]  = get_bits(&gb, 4);
get_bits          102 libavcodec/truespeech.c     dec->pulseval[1] = get_bits(&gb, 14);
get_bits          103 libavcodec/truespeech.c     dec->pulseval[0] = get_bits(&gb, 14);
get_bits          105 libavcodec/truespeech.c     dec->offset1[1] |= get_bits(&gb, 4) << 4;
get_bits          106 libavcodec/truespeech.c     dec->pulseval[3] = get_bits(&gb, 14);
get_bits          107 libavcodec/truespeech.c     dec->pulseval[2] = get_bits(&gb, 14);
get_bits          111 libavcodec/truespeech.c     dec->pulseoff[0] = get_bits(&gb, 4);
get_bits          115 libavcodec/truespeech.c     dec->pulseoff[1] = get_bits(&gb, 4);
get_bits          119 libavcodec/truespeech.c     dec->pulseoff[2] = get_bits(&gb, 4);
get_bits          123 libavcodec/truespeech.c     dec->pulseoff[3] = get_bits(&gb, 4);
get_bits          136 libavcodec/tscc2.c             val = get_bits(gb, 8);
get_bits          144 libavcodec/tscc2.c                     dst[j] = get_bits(gb, 8);
get_bits          155 libavcodec/tscc2.c                 dc = get_bits(gb, 8);
get_bits          161 libavcodec/tscc2.c                     dc = get_bits(gb, 8);
get_bits          178 libavcodec/tscc2.c                     ac = get_bits(gb, 12);
get_bits          145 libavcodec/tta.c         s->format = get_bits(&gb, 16);
get_bits          157 libavcodec/tta.c         avctx->channels = s->channels = get_bits(&gb, 16);
get_bits          160 libavcodec/tta.c         avctx->bits_per_raw_sample = get_bits(&gb, 16);
get_bits          292 libavcodec/tta.c             value = (unary << k) + get_bits(&gb, k);
get_bits          246 libavcodec/twinvqdec.c         *dst++ = get_bits(gb, tctx->bits_main_spec[0][ftype][bs_second_part]);
get_bits          247 libavcodec/twinvqdec.c         *dst++ = get_bits(gb, tctx->bits_main_spec[1][ftype][bs_second_part]);
get_bits          263 libavcodec/twinvqdec.c     skip_bits(&gb, get_bits(&gb, 8));
get_bits          265 libavcodec/twinvqdec.c     bits->window_type = get_bits(&gb, TWINVQ_WINDOW_TYPE_BITS);
get_bits          282 libavcodec/twinvqdec.c                     get_bits(&gb, mtab->fmode[bits->ftype].bark_n_bit);
get_bits          290 libavcodec/twinvqdec.c             bits->gain_bits[i] = get_bits(&gb, TWINVQ_GAIN_BITS);
get_bits          293 libavcodec/twinvqdec.c             bits->gain_bits[i] = get_bits(&gb, TWINVQ_GAIN_BITS);
get_bits          295 libavcodec/twinvqdec.c                 bits->sub_gain_bits[i * sub + j] = get_bits(&gb,
get_bits          301 libavcodec/twinvqdec.c         bits->lpc_hist_idx[i] = get_bits(&gb, mtab->lsp_bit0);
get_bits          302 libavcodec/twinvqdec.c         bits->lpc_idx1[i]     = get_bits(&gb, mtab->lsp_bit1);
get_bits          305 libavcodec/twinvqdec.c             bits->lpc_idx2[i][j] = get_bits(&gb, mtab->lsp_bit2);
get_bits          311 libavcodec/twinvqdec.c             bits->p_coef[i] = get_bits(&gb, mtab->ppc_period_bit);
get_bits          312 libavcodec/twinvqdec.c             bits->g_coef[i] = get_bits(&gb, mtab->pgain_bit);
get_bits          144 libavcodec/vaapi_mpeg2.c     quantiser_scale_code = get_bits(&gb, 5);
get_bits           98 libavcodec/vble.c                 int v = (1 << val[j]) + get_bits(gb, val[j]) - 1;
get_bits          241 libavcodec/vc1.c         v->dqprofile = get_bits(gb, 2);
get_bits          245 libavcodec/vc1.c             v->dqsbedge = get_bits(gb, 2);
get_bits          258 libavcodec/vc1.c     pqdiff = get_bits(gb, 3);
get_bits          260 libavcodec/vc1.c         v->altpq = get_bits(gb, 5);
get_bits          279 libavcodec/vc1.c     v->profile = get_bits(gb, 2);
get_bits          302 libavcodec/vc1.c     v->frmrtq_postproc = get_bits(gb, 3); //common
get_bits          304 libavcodec/vc1.c     v->bitrtq_postproc = get_bits(gb, 5); //common
get_bits          339 libavcodec/vc1.c     v->dquant          = get_bits(gb, 2); //common
get_bits          358 libavcodec/vc1.c     v->s.max_b_frames = avctx->max_b_frames = get_bits(gb, 3); //common
get_bits          359 libavcodec/vc1.c     v->quantizer_mode = get_bits(gb, 2); //common
get_bits          364 libavcodec/vc1.c         int w = get_bits(gb, 11);
get_bits          365 libavcodec/vc1.c         int h = get_bits(gb, 11);
get_bits          400 libavcodec/vc1.c     v->level = get_bits(gb, 3);
get_bits          404 libavcodec/vc1.c     v->chromaformat = get_bits(gb, 2);
get_bits          412 libavcodec/vc1.c     v->frmrtq_postproc       = get_bits(gb, 3); //common
get_bits          414 libavcodec/vc1.c     v->bitrtq_postproc       = get_bits(gb, 5); //common
get_bits          417 libavcodec/vc1.c     v->max_coded_width       = (get_bits(gb, 12) + 1) << 1;
get_bits          418 libavcodec/vc1.c     v->max_coded_height      = (get_bits(gb, 12) + 1) << 1;
get_bits          442 libavcodec/vc1.c         w = get_bits(gb, 14) + 1;
get_bits          443 libavcodec/vc1.c         h = get_bits(gb, 14) + 1;
get_bits          446 libavcodec/vc1.c             ar = get_bits(gb, 4);
get_bits          450 libavcodec/vc1.c             w = get_bits(gb, 8) + 1;
get_bits          451 libavcodec/vc1.c             h = get_bits(gb, 8) + 1;
get_bits          472 libavcodec/vc1.c                 v->s.avctx->framerate.num = get_bits(gb, 16) + 1;
get_bits          475 libavcodec/vc1.c                 nr = get_bits(gb, 8);
get_bits          476 libavcodec/vc1.c                 dr = get_bits(gb, 4);
get_bits          488 libavcodec/vc1.c             v->color_prim    = get_bits(gb, 8);
get_bits          489 libavcodec/vc1.c             v->transfer_char = get_bits(gb, 8);
get_bits          490 libavcodec/vc1.c             v->matrix_coef   = get_bits(gb, 8);
get_bits          497 libavcodec/vc1.c         v->hrd_num_leaky_buckets = get_bits(gb, 5);
get_bits          524 libavcodec/vc1.c     v->dquant         = get_bits(gb, 2);
get_bits          527 libavcodec/vc1.c     v->quantizer_mode = get_bits(gb, 2);
get_bits          536 libavcodec/vc1.c         w = (get_bits(gb, 12)+1)<<1;
get_bits          537 libavcodec/vc1.c         h = (get_bits(gb, 12)+1)<<1;
get_bits          551 libavcodec/vc1.c         v->range_mapy = get_bits(gb, 3);
get_bits          555 libavcodec/vc1.c         v->range_mapuv = get_bits(gb, 3);
get_bits          639 libavcodec/vc1.c         v->multires = get_bits(gb, 2) == 1;
get_bits          675 libavcodec/vc1.c     pqindex = get_bits(gb, 5);
get_bits          709 libavcodec/vc1.c         v->respic = get_bits(gb, 2);
get_bits          730 libavcodec/vc1.c             v->lumscale = get_bits(gb, 6);
get_bits          731 libavcodec/vc1.c             v->lumshift = get_bits(gb, 6);
get_bits          767 libavcodec/vc1.c         v->s.mv_table_index = get_bits(gb, 2); //but using ff_vc1_ tables
get_bits          768 libavcodec/vc1.c         v->cbptab = get_bits(gb, 2);
get_bits          779 libavcodec/vc1.c                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
get_bits          806 libavcodec/vc1.c         v->s.mv_table_index = get_bits(gb, 2);
get_bits          807 libavcodec/vc1.c         v->cbptab           = get_bits(gb, 2);
get_bits          818 libavcodec/vc1.c                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
get_bits          884 libavcodec/vc1.c         v->fptype = get_bits(gb, 3);
get_bits          914 libavcodec/vc1.c             v->rptfrm = get_bits(gb, 2);
get_bits          938 libavcodec/vc1.c             v->refdist = get_bits(gb, 2);
get_bits          969 libavcodec/vc1.c     pqindex = get_bits(gb, 5);
get_bits          997 libavcodec/vc1.c         v->postproc = get_bits(gb, 2);
get_bits         1054 libavcodec/vc1.c                     v->lumscale = get_bits(gb, 6);
get_bits         1055 libavcodec/vc1.c                     v->lumshift = get_bits(gb, 6);
get_bits         1065 libavcodec/vc1.c                 v->mbmodetab = get_bits(gb, 2);
get_bits         1070 libavcodec/vc1.c                 v->imvtab      = get_bits(gb, 2);
get_bits         1073 libavcodec/vc1.c                 v->icbptab     = get_bits(gb, 3);
get_bits         1075 libavcodec/vc1.c                 v->twomvbptab     = get_bits(gb, 2);
get_bits         1078 libavcodec/vc1.c                     v->fourmvbptab     = get_bits(gb, 2);
get_bits         1106 libavcodec/vc1.c                     v->lumscale = get_bits(gb, 6);
get_bits         1107 libavcodec/vc1.c                     v->lumshift = get_bits(gb, 6);
get_bits         1110 libavcodec/vc1.c                     v->lumscale2 = get_bits(gb, 6);
get_bits         1111 libavcodec/vc1.c                     v->lumshift2 = get_bits(gb, 6);
get_bits         1162 libavcodec/vc1.c             v->s.mv_table_index = get_bits(gb, 2); //but using ff_vc1_ tables
get_bits         1163 libavcodec/vc1.c             v->cbptab           = get_bits(gb, 2);
get_bits         1170 libavcodec/vc1.c             v->mbmodetab = get_bits(gb, 3);
get_bits         1171 libavcodec/vc1.c             v->imvtab = get_bits(gb, 2 + v->numref);
get_bits         1176 libavcodec/vc1.c             v->icbptab = get_bits(gb, 3);
get_bits         1180 libavcodec/vc1.c                 v->fourmvbptab     = get_bits(gb, 2);
get_bits         1195 libavcodec/vc1.c                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
get_bits         1238 libavcodec/vc1.c             v->mbmodetab = get_bits(gb, 3);
get_bits         1243 libavcodec/vc1.c             v->imvtab     = get_bits(gb, 3);
get_bits         1245 libavcodec/vc1.c             v->icbptab   = get_bits(gb, 3);
get_bits         1248 libavcodec/vc1.c                 v->fourmvbptab     = get_bits(gb, 2);
get_bits         1273 libavcodec/vc1.c             v->mbmodetab       = get_bits(gb, 2);
get_bits         1275 libavcodec/vc1.c             v->imvtab       = get_bits(gb, 2);
get_bits         1278 libavcodec/vc1.c             v->icbptab      = get_bits(gb, 3);
get_bits         1280 libavcodec/vc1.c             v->twomvbptab      = get_bits(gb, 2);
get_bits         1282 libavcodec/vc1.c             v->fourmvbptab     = get_bits(gb, 2);
get_bits         1299 libavcodec/vc1.c             v->s.mv_table_index = get_bits(gb, 2);
get_bits         1300 libavcodec/vc1.c             v->cbptab = get_bits(gb, 2);
get_bits         1312 libavcodec/vc1.c                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
get_bits          188 libavcodec/vc1_block.c                 mqdiff = get_bits(gb, 3);                      \
get_bits          192 libavcodec/vc1_block.c                     mquant = -get_bits(gb, 5);                 \
get_bits          236 libavcodec/vc1_block.c         _dmv_x = get_bits(gb, v->k_x - 1 + s->quarter_sample);          \
get_bits          237 libavcodec/vc1_block.c         _dmv_y = get_bits(gb, v->k_y - 1 + s->quarter_sample);          \
get_bits          247 libavcodec/vc1_block.c             val = get_bits(gb, val);                                    \
get_bits          256 libavcodec/vc1_block.c             val = get_bits(gb, val);                                    \
get_bits          282 libavcodec/vc1_block.c         *dmv_x = get_bits(gb, v->k_x);
get_bits          283 libavcodec/vc1_block.c         *dmv_y = get_bits(gb, v->k_y);
get_bits          294 libavcodec/vc1_block.c             val    = get_bits(gb, index1 + extend_x);
get_bits          301 libavcodec/vc1_block.c             val    = get_bits(gb, (index1 >> v->numref) + extend_y);
get_bits          550 libavcodec/vc1_block.c                     v->s.esc3_level_length = get_bits(gb, 3);
get_bits          552 libavcodec/vc1_block.c                         v->s.esc3_level_length = get_bits(gb, 2) + 8;
get_bits          556 libavcodec/vc1_block.c                 v->s.esc3_run_length = 3 + get_bits(gb, 2);
get_bits          558 libavcodec/vc1_block.c             run   = get_bits(gb, v->s.esc3_run_length);
get_bits          560 libavcodec/vc1_block.c             level = get_bits(gb, v->s.esc3_level_length);
get_bits          602 libavcodec/vc1_block.c             dcdiff = get_bits(gb, 8 + m);
get_bits          605 libavcodec/vc1_block.c                 dcdiff = (dcdiff << m) + get_bits(gb, m) - ((1 << m) - 1);
get_bits          750 libavcodec/vc1_block.c             dcdiff = get_bits(gb, 8 + m);
get_bits          753 libavcodec/vc1_block.c                 dcdiff = (dcdiff << m) + get_bits(gb, m) - ((1 << m) - 1);
get_bits          954 libavcodec/vc1_block.c             dcdiff = get_bits(gb, 8 + m);
get_bits          957 libavcodec/vc1_block.c                 dcdiff = (dcdiff << m) + get_bits(gb, m) - ((1 << m) - 1);
get_bits           74 libavcodec/vc1dec.c     switch (get_bits(gb, 2)) {
get_bits          123 libavcodec/vc1dec.c         switch (sd->effect_pcount1 = get_bits(gb, 4)) {
get_bits          145 libavcodec/vc1dec.c         sd->effect_pcount2 = get_bits(gb, 16);
get_bits          742 libavcodec/vc1dec.c                     slices[n_slices].mby_start = get_bits(&slices[n_slices].gb, 9);
get_bits          173 libavcodec/vima.c             lookup      = get_bits(&gb, lookup_size);
get_bits          130 libavcodec/vorbis_parser.c         if (get_bits(&gb, 8) > 63 || get_bits(&gb, 16) || get_bits(&gb, 16))
get_bits          137 libavcodec/vorbis_parser.c         if (get_bits(&gb0, 6) + 1 == mode_count) {
get_bits          172 libavcodec/vorbisdec.c         idx = get_bits(gb, bits);\
get_bits          247 libavcodec/vorbisdec.c     vc->codebook_count = get_bits(gb, 8) + 1;
get_bits          267 libavcodec/vorbisdec.c         if (get_bits(gb, 24) != 0x564342) {
get_bits          274 libavcodec/vorbisdec.c         codebook_setup->dimensions=get_bits(gb, 16);
get_bits          282 libavcodec/vorbisdec.c         entries = get_bits(gb, 24);
get_bits          309 libavcodec/vorbisdec.c                         tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
get_bits          319 libavcodec/vorbisdec.c                     tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
get_bits          323 libavcodec/vorbisdec.c             unsigned current_length = get_bits(gb, 5) + 1;
get_bits          333 libavcodec/vorbisdec.c                 number = get_bits(gb, ilog(entries - current_entry));
get_bits          350 libavcodec/vorbisdec.c         codebook_setup->lookup_type = get_bits(gb, 4);
get_bits          363 libavcodec/vorbisdec.c             unsigned codebook_value_bits = get_bits(gb, 4) + 1;
get_bits          372 libavcodec/vorbisdec.c                 codebook_multiplicands[i] = get_bits(gb, codebook_value_bits);
get_bits          476 libavcodec/vorbisdec.c     unsigned i, vorbis_time_count = get_bits(gb, 6) + 1;
get_bits          479 libavcodec/vorbisdec.c         unsigned vorbis_tdtransform = get_bits(gb, 16);
get_bits          504 libavcodec/vorbisdec.c     vc->floor_count = get_bits(gb, 6) + 1;
get_bits          513 libavcodec/vorbisdec.c         floor_setup->floor_type = get_bits(gb, 16);
get_bits          523 libavcodec/vorbisdec.c             floor_setup->data.t1.partitions = get_bits(gb, 5);
get_bits          529 libavcodec/vorbisdec.c                 floor_setup->data.t1.partition_class[j] = get_bits(gb, 4);
get_bits          541 libavcodec/vorbisdec.c                 floor_setup->data.t1.class_dimensions[j] = get_bits(gb, 3) + 1;
get_bits          542 libavcodec/vorbisdec.c                 floor_setup->data.t1.class_subclasses[j] = get_bits(gb, 2);
get_bits          555 libavcodec/vorbisdec.c                     int16_t bits = get_bits(gb, 8) - 1;
get_bits          564 libavcodec/vorbisdec.c             floor_setup->data.t1.multiplier = get_bits(gb, 2) + 1;
get_bits          575 libavcodec/vorbisdec.c             rangebits = get_bits(gb, 4);
get_bits          593 libavcodec/vorbisdec.c                     floor_setup->data.t1.list[floor1_values].x = get_bits(gb, rangebits);
get_bits          611 libavcodec/vorbisdec.c             floor_setup->data.t0.order          = get_bits(gb,  8);
get_bits          616 libavcodec/vorbisdec.c             floor_setup->data.t0.rate           = get_bits(gb, 16);
get_bits          621 libavcodec/vorbisdec.c             floor_setup->data.t0.bark_map_size  = get_bits(gb, 16);
get_bits          627 libavcodec/vorbisdec.c             floor_setup->data.t0.amplitude_bits = get_bits(gb,  6);
get_bits          628 libavcodec/vorbisdec.c             floor_setup->data.t0.amplitude_offset = get_bits(gb, 8);
get_bits          629 libavcodec/vorbisdec.c             floor_setup->data.t0.num_books        = get_bits(gb, 4) + 1;
get_bits          694 libavcodec/vorbisdec.c     vc->residue_count = get_bits(gb, 6)+1;
get_bits          706 libavcodec/vorbisdec.c         res_setup->type = get_bits(gb, 16);
get_bits          710 libavcodec/vorbisdec.c         res_setup->begin          = get_bits(gb, 24);
get_bits          711 libavcodec/vorbisdec.c         res_setup->end            = get_bits(gb, 24);
get_bits          712 libavcodec/vorbisdec.c         res_setup->partition_size = get_bits(gb, 24) + 1;
get_bits          723 libavcodec/vorbisdec.c         res_setup->classifications = get_bits(gb, 6) + 1;
get_bits          740 libavcodec/vorbisdec.c             low_bits  = get_bits(gb, 3);
get_bits          742 libavcodec/vorbisdec.c                 high_bits = get_bits(gb, 5);
get_bits          775 libavcodec/vorbisdec.c     vc->mapping_count = get_bits(gb, 6)+1;
get_bits          785 libavcodec/vorbisdec.c         if (get_bits(gb, 16)) {
get_bits          790 libavcodec/vorbisdec.c             mapping_setup->submaps = get_bits(gb, 4) + 1;
get_bits          796 libavcodec/vorbisdec.c             mapping_setup->coupling_steps = get_bits(gb, 8) + 1;
get_bits          820 libavcodec/vorbisdec.c         if (get_bits(gb, 2)) {
get_bits          832 libavcodec/vorbisdec.c                 mapping_setup->mux[j] = get_bits(gb, 4);
get_bits          890 libavcodec/vorbisdec.c     vc->mode_count = get_bits(gb, 6) + 1;
get_bits          901 libavcodec/vorbisdec.c         mode_setup->windowtype    = get_bits(gb, 16); //FIXME check
get_bits          902 libavcodec/vorbisdec.c         mode_setup->transformtype = get_bits(gb, 16); //FIXME check
get_bits          919 libavcodec/vorbisdec.c     if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
get_bits          920 libavcodec/vorbisdec.c         (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
get_bits          921 libavcodec/vorbisdec.c         (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
get_bits          965 libavcodec/vorbisdec.c     if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
get_bits          966 libavcodec/vorbisdec.c         (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
get_bits          967 libavcodec/vorbisdec.c         (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
get_bits          973 libavcodec/vorbisdec.c     vc->audio_channels = get_bits(gb, 8);
get_bits          986 libavcodec/vorbisdec.c     bl0 = get_bits(gb, 4);
get_bits          987 libavcodec/vorbisdec.c     bl1 = get_bits(gb, 4);
get_bits         1056 libavcodec/vorbisdec.c     hdr_type = get_bits(gb, 8);
get_bits         1068 libavcodec/vorbisdec.c     hdr_type = get_bits(gb, 8);
get_bits         1113 libavcodec/vorbisdec.c         book_idx = get_bits(&vc->gb, ilog(vf->num_books));
get_bits         1228 libavcodec/vorbisdec.c     floor1_Y[0] = get_bits(gb, ilog(range - 1));
get_bits         1229 libavcodec/vorbisdec.c     floor1_Y[1] = get_bits(gb, ilog(range - 1));
get_bits         1641 libavcodec/vorbisdec.c         int code = get_bits(gb, 2);
get_bits          496 libavcodec/vp3.c                 current_run += get_bits(gb, 12);
get_bits          530 libavcodec/vp3.c                     current_run += get_bits(gb, 12);
get_bits          662 libavcodec/vp3.c     v += (1 << n) + get_bits(gb, n); }
get_bits          806 libavcodec/vp3.c         scheme = get_bits(gb, 3);
get_bits          813 libavcodec/vp3.c                 custom_mode_alphabet[get_bits(gb, 3)] = i;
get_bits          850 libavcodec/vp3.c                         coding_mode = get_bits(gb, 3);
get_bits          955 libavcodec/vp3.c                         motion_x[0] = fixed_motion_vector_table[get_bits(gb, 6)];
get_bits          956 libavcodec/vp3.c                         motion_y[0] = fixed_motion_vector_table[get_bits(gb, 6)];
get_bits          985 libavcodec/vp3.c                                 motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)];
get_bits          986 libavcodec/vp3.c                                 motion_y[k] = fixed_motion_vector_table[get_bits(gb, 6)];
get_bits         1116 libavcodec/vp3.c                 run_length += get_bits(gb, 12);
get_bits         1143 libavcodec/vp3.c         v += get_bits(gb, eob_run_table[token].bits);
get_bits         1153 libavcodec/vp3.c         bits_to_get = get_bits(gb, bits_to_get);
get_bits         1158 libavcodec/vp3.c         zero_run += get_bits(gb, zero_run_get_bits[token]);
get_bits         1313 libavcodec/vp3.c     dc_y_table = get_bits(gb, 4);
get_bits         1314 libavcodec/vp3.c     dc_c_table = get_bits(gb, 4);
get_bits         1348 libavcodec/vp3.c     ac_y_table = get_bits(gb, 4);
get_bits         1349 libavcodec/vp3.c     ac_c_table = get_bits(gb, 4);
get_bits         1537 libavcodec/vp3.c     dc_y_table = get_bits(gb, 4);
get_bits         1538 libavcodec/vp3.c     dc_c_table = get_bits(gb, 4);
get_bits         1540 libavcodec/vp3.c     ac_y_table = get_bits(gb, 4);
get_bits         1541 libavcodec/vp3.c     ac_c_table = get_bits(gb, 4);
get_bits         2646 libavcodec/vp3.c         int type = get_bits(&gb, 7);
get_bits         2694 libavcodec/vp3.c         s->qps[s->nqps++] = get_bits(&gb, 6);
get_bits         2733 libavcodec/vp3.c                 s->version = get_bits(&gb, 5);
get_bits         2750 libavcodec/vp3.c                 mb_height = get_bits(&gb, 8);
get_bits         2751 libavcodec/vp3.c                 mb_width  = get_bits(&gb, 8);
get_bits         2756 libavcodec/vp3.c                 mb_width_mul = get_bits(&gb, 5);
get_bits         2757 libavcodec/vp3.c                 mb_width_div = get_bits(&gb, 3);
get_bits         2758 libavcodec/vp3.c                 mb_height_mul = get_bits(&gb, 5);
get_bits         2759 libavcodec/vp3.c                 mb_height_div = get_bits(&gb, 3);
get_bits         2763 libavcodec/vp3.c                 if (get_bits(&gb, 2))
get_bits         2886 libavcodec/vp3.c         token = get_bits(gb, 5);
get_bits         2924 libavcodec/vp3.c     s->theora = get_bits(gb, 24);
get_bits         2940 libavcodec/vp3.c     s->width       = get_bits(gb, 16) << 4;
get_bits         2942 libavcodec/vp3.c     s->height      = get_bits(gb, 16) << 4;
get_bits         2945 libavcodec/vp3.c         visible_width  = get_bits(gb, 24);
get_bits         2946 libavcodec/vp3.c         visible_height = get_bits(gb, 24);
get_bits         2948 libavcodec/vp3.c         offset_x = get_bits(gb, 8); /* offset x */
get_bits         2949 libavcodec/vp3.c         offset_y = get_bits(gb, 8); /* offset y, from bottom */
get_bits         2974 libavcodec/vp3.c     aspect.num = get_bits(gb, 24);
get_bits         2975 libavcodec/vp3.c     aspect.den = get_bits(gb, 24);
get_bits         2985 libavcodec/vp3.c     colorspace = get_bits(gb, 8);
get_bits         2992 libavcodec/vp3.c         avctx->pix_fmt = theora_pix_fmts[get_bits(gb, 2)];
get_bits         3036 libavcodec/vp3.c         n = get_bits(gb, 3);
get_bits         3040 libavcodec/vp3.c                 s->filter_limit_values[i] = get_bits(gb, n);
get_bits         3044 libavcodec/vp3.c         n = get_bits(gb, 4) + 1;
get_bits         3049 libavcodec/vp3.c         s->coded_ac_scale_factor[i] = get_bits(gb, n);
get_bits         3052 libavcodec/vp3.c         n = get_bits(gb, 4) + 1;
get_bits         3058 libavcodec/vp3.c         s->coded_dc_scale_factor[1][i] = get_bits(gb, n);
get_bits         3061 libavcodec/vp3.c         matrices = get_bits(gb, 9) + 1;
get_bits         3072 libavcodec/vp3.c             s->base_matrix[n][i] = get_bits(gb, 8);
get_bits         3098 libavcodec/vp3.c                     i = get_bits(gb, av_log2(matrices - 1) + 1);
get_bits         3107 libavcodec/vp3.c                     i = get_bits(gb, av_log2(63 - qi) + 1) + 1;
get_bits         3172 libavcodec/vp3.c         ptype = get_bits(&gb, 8);
get_bits          395 libavcodec/vp6.c     unsigned val = get_bits(&s->gb, 2);
get_bits          397 libavcodec/vp6.c         val += get_bits(&s->gb, 2);
get_bits          400 libavcodec/vp6.c         val = 6+val + get_bits(&s->gb, 2+val);
get_bits          434 libavcodec/vp6.c                             run += get_bits(&s->gb, 6);
get_bits          445 libavcodec/vp6.c                         coeff2 += get_bits(&s->gb, coeff <= 9 ? coeff - 4 : 11);
get_bits          368 libavcodec/vp9.c     int v = get_bits(gb, n);
get_bits          452 libavcodec/vp9.c     avctx->colorspace = colorspaces[get_bits(&s->gb, 3)];
get_bits          515 libavcodec/vp9.c     if (get_bits(&s->gb, 2) != 0x2) { // frame marker
get_bits          528 libavcodec/vp9.c         *ref = get_bits(&s->gb, 3);
get_bits          541 libavcodec/vp9.c         if (get_bits(&s->gb, 24) != VP9_SYNCCODE) { // synccode
get_bits          549 libavcodec/vp9.c         w = get_bits(&s->gb, 16) + 1;
get_bits          550 libavcodec/vp9.c         h = get_bits(&s->gb, 16) + 1;
get_bits          555 libavcodec/vp9.c         s->s.h.resetctx  = s->s.h.errorres ? 0 : get_bits(&s->gb, 2);
get_bits          557 libavcodec/vp9.c             if (get_bits(&s->gb, 24) != VP9_SYNCCODE) { // synccode
get_bits          573 libavcodec/vp9.c             s->s.h.refreshrefmask = get_bits(&s->gb, 8);
get_bits          574 libavcodec/vp9.c             w = get_bits(&s->gb, 16) + 1;
get_bits          575 libavcodec/vp9.c             h = get_bits(&s->gb, 16) + 1;
get_bits          579 libavcodec/vp9.c             s->s.h.refreshrefmask = get_bits(&s->gb, 8);
get_bits          580 libavcodec/vp9.c             s->s.h.refidx[0]      = get_bits(&s->gb, 3);
get_bits          582 libavcodec/vp9.c             s->s.h.refidx[1]      = get_bits(&s->gb, 3);
get_bits          584 libavcodec/vp9.c             s->s.h.refidx[2]      = get_bits(&s->gb, 3);
get_bits          602 libavcodec/vp9.c                 w = get_bits(&s->gb, 16) + 1;
get_bits          603 libavcodec/vp9.c                 h = get_bits(&s->gb, 16) + 1;
get_bits          614 libavcodec/vp9.c                                                   get_bits(&s->gb, 2);
get_bits          636 libavcodec/vp9.c     s->s.h.framectxid   = c = get_bits(&s->gb, 2);
get_bits          651 libavcodec/vp9.c     s->s.h.filter.level = get_bits(&s->gb, 6);
get_bits          652 libavcodec/vp9.c     sharp = get_bits(&s->gb, 3);
get_bits          682 libavcodec/vp9.c     s->s.h.yac_qi      = get_bits(&s->gb, 8);
get_bits          696 libavcodec/vp9.c                                  get_bits(&s->gb, 8) : 255;
get_bits          700 libavcodec/vp9.c                                          get_bits(&s->gb, 8) : 255;
get_bits          711 libavcodec/vp9.c                     s->s.h.segmentation.feat[i].ref_val = get_bits(&s->gb, 2);
get_bits          873 libavcodec/vp9.c     s->s.h.compressed_header_size = size2 = get_bits(&s->gb, 16);
get_bits           41 libavcodec/vp9_parser.c     get_bits(&gb, 2); // frame marker
get_bits           88 libavcodec/vp9_raw_reorder_bsf.c     frame_marker = get_bits(&bc, 2);
get_bits          109 libavcodec/vp9_raw_reorder_bsf.c         frame->frame_to_show = get_bits(&bc, 3);
get_bits          118 libavcodec/vp9_raw_reorder_bsf.c         frame_sync_code = get_bits(&bc, 24);
get_bits          137 libavcodec/vp9_raw_reorder_bsf.c             frame_sync_code = get_bits(&bc, 24);
get_bits          149 libavcodec/vp9_raw_reorder_bsf.c                 color_space = get_bits(&bc, 3);
get_bits          162 libavcodec/vp9_raw_reorder_bsf.c             frame->refresh_frame_flags = get_bits(&bc, 8);
get_bits          164 libavcodec/vp9_raw_reorder_bsf.c             frame->refresh_frame_flags = get_bits(&bc, 8);
get_bits          122 libavcodec/vp9_superframe_bsf.c     get_bits(&gb, 2); // frame marker
get_bits          110 libavcodec/vp9_superframe_split_bsf.c         get_bits(&gb, 2); // frame_marker
get_bits          352 libavcodec/wavpack.c                 S = get_bits(&s->gb_extra_bits, 23);
get_bits          372 libavcodec/wavpack.c                     S |= get_bits(&s->gb_extra_bits, shift);
get_bits          384 libavcodec/wavpack.c                 S = get_bits(&s->gb_extra_bits, 23);
get_bits          386 libavcodec/wavpack.c                     exp = get_bits(&s->gb_extra_bits, 8);
get_bits          351 libavcodec/webp.c         hc->simple_symbols[0] = get_bits(&s->gb, 8);
get_bits          356 libavcodec/webp.c         hc->simple_symbols[1] = get_bits(&s->gb, 8);
get_bits          368 libavcodec/webp.c     int num_codes = 4 + get_bits(&s->gb, 4);
get_bits          374 libavcodec/webp.c         code_length_code_lengths[code_length_code_order[i]] = get_bits(&s->gb, 3);
get_bits          388 libavcodec/webp.c         int bits   = 2 + 2 * get_bits(&s->gb, 3);
get_bits          389 libavcodec/webp.c         max_symbol = 2 + get_bits(&s->gb, bits);
get_bits          420 libavcodec/webp.c                 repeat = 3 + get_bits(&s->gb, 2);
get_bits          426 libavcodec/webp.c                 repeat = 3 + get_bits(&s->gb, 3);
get_bits          431 libavcodec/webp.c                 repeat = 11 + get_bits(&s->gb, 7);
get_bits          458 libavcodec/webp.c     block_bits = get_bits(&s->gb, 3) + 2;                                   \
get_bits          535 libavcodec/webp.c     index_size = get_bits(&s->gb, 8) + 1;
get_bits          616 libavcodec/webp.c         img->color_cache_bits = get_bits(&s->gb, 4);
get_bits          695 libavcodec/webp.c                 length = offset + get_bits(&s->gb, extra_bits) + 1;
get_bits          708 libavcodec/webp.c                 distance = offset + get_bits(&s->gb, extra_bits) + 1;
get_bits         1059 libavcodec/webp.c                 p[2] = get_bits(&gb_g, pixel_bits);
get_bits         1135 libavcodec/webp.c         if (get_bits(&s->gb, 8) != 0x2F) {
get_bits         1140 libavcodec/webp.c         w = get_bits(&s->gb, 14) + 1;
get_bits         1141 libavcodec/webp.c         h = get_bits(&s->gb, 14) + 1;
get_bits         1151 libavcodec/webp.c         if (get_bits(&s->gb, 3) != 0x0) {
get_bits         1167 libavcodec/webp.c         enum TransformType transform = get_bits(&s->gb, 2);
get_bits          452 libavcodec/wma.c                 level = get_bits(gb, coef_nb_bits);
get_bits          455 libavcodec/wma.c                 offset += get_bits(gb, frame_len_bits);
get_bits          466 libavcodec/wma.c                             offset += get_bits(gb, frame_len_bits) + 4;
get_bits          468 libavcodec/wma.c                         offset += get_bits(gb, 2) + 1;
get_bits          223 libavcodec/wmadec.c             val = get_bits(&s->gb, 3);
get_bits          225 libavcodec/wmadec.c             val = get_bits(&s->gb, 4);
get_bits          332 libavcodec/wmadec.c         last_exp  = get_bits(&s->gb, 5) + 10;
get_bits          450 libavcodec/wmadec.c             v                      = get_bits(&s->gb, n);
get_bits          458 libavcodec/wmadec.c             v                      = get_bits(&s->gb, n);
get_bits          471 libavcodec/wmadec.c         v = get_bits(&s->gb, n);
get_bits          522 libavcodec/wmadec.c         a           = get_bits(&s->gb, 7);
get_bits          559 libavcodec/wmadec.c                             val = get_bits(&s->gb, 7) - 19;
get_bits          845 libavcodec/wmadec.c         nb_frames = get_bits(&s->gb, 4) - (s->last_superframe_len <= 0);
get_bits          861 libavcodec/wmadec.c                 *q++ = get_bits (&s->gb, 8);
get_bits          882 libavcodec/wmadec.c         bit_offset = get_bits(&s->gb, s->byte_offset_bits + 3);
get_bits          898 libavcodec/wmadec.c                 *q++ = get_bits(&s->gb, 8);
get_bits          902 libavcodec/wmadec.c                 *q++ = get_bits(&s->gb, len) << (8 - len);
get_bits          300 libavcodec/wmalosslessdec.c     frame_len_ratio = get_bits(&s->gb, len);
get_bits          421 libavcodec/wmalosslessdec.c     s->acfilter_order   = get_bits(&s->gb, 4) + 1;
get_bits          422 libavcodec/wmalosslessdec.c     s->acfilter_scaling = get_bits(&s->gb, 4);
get_bits          430 libavcodec/wmalosslessdec.c     s->mclms_order   = (get_bits(&s->gb, 4) + 1) * 2;
get_bits          431 libavcodec/wmalosslessdec.c     s->mclms_scaling = get_bits(&s->gb, 4);
get_bits          441 libavcodec/wmalosslessdec.c             s->mclms_coeffs[i] = get_bits(&s->gb, send_coef_bits);
get_bits          446 libavcodec/wmalosslessdec.c                 s->mclms_coeffs_cur[i * s->num_channels + c] = get_bits(&s->gb, send_coef_bits);
get_bits          457 libavcodec/wmalosslessdec.c         s->cdlms_ttl[c] = get_bits(&s->gb, 3) + 1;
get_bits          459 libavcodec/wmalosslessdec.c             s->cdlms[c][i].order = (get_bits(&s->gb, 7) + 1) * 8;
get_bits          477 libavcodec/wmalosslessdec.c             s->cdlms[c][i].scaling = get_bits(&s->gb, 4);
get_bits          485 libavcodec/wmalosslessdec.c                 s->cdlms[c][i].coefsend = get_bits(&s->gb, cbits) + 1;
get_bits          496 libavcodec/wmalosslessdec.c                         (get_bits(&s->gb, s->cdlms[c][i].bitsend) << shift_l) >> shift_r;
get_bits          514 libavcodec/wmalosslessdec.c         s->transient_pos[ch] = get_bits(&s->gb, av_log2(tile_size));
get_bits          523 libavcodec/wmalosslessdec.c         ave_mean = get_bits(&s->gb, s->bits_per_sample);
get_bits          543 libavcodec/wmalosslessdec.c             quo += get_bits_long(&s->gb, get_bits(&s->gb, 5) + 1);
get_bits          568 libavcodec/wmalosslessdec.c     s->lpc_order   = get_bits(&s->gb, 5) + 1;
get_bits          569 libavcodec/wmalosslessdec.c     s->lpc_scaling = get_bits(&s->gb, 4);
get_bits          570 libavcodec/wmalosslessdec.c     s->lpc_intbits = get_bits(&s->gb, 3) + 1;
get_bits          900 libavcodec/wmalosslessdec.c         s->movave_scaling = get_bits(&s->gb, 3);
get_bits          901 libavcodec/wmalosslessdec.c         s->quant_stepsize = get_bits(&s->gb, 8) + 1;
get_bits          937 libavcodec/wmalosslessdec.c         padding_zeroes = get_bits(&s->gb, 5);
get_bits         1038 libavcodec/wmalosslessdec.c         len = get_bits(gb, s->log2_frame_size);
get_bits         1049 libavcodec/wmalosslessdec.c         s->drc_gain = get_bits(gb, 8);
get_bits         1058 libavcodec/wmalosslessdec.c             skip = get_bits(gb, av_log2(s->samples_per_frame * 2));
get_bits         1064 libavcodec/wmalosslessdec.c             skip = get_bits(gb, av_log2(s->samples_per_frame * 2));
get_bits         1166 libavcodec/wmalosslessdec.c         put_bits(&s->pb, align, get_bits(gb, align));
get_bits         1206 libavcodec/wmalosslessdec.c         packet_sequence_number = get_bits(gb, 4);
get_bits         1213 libavcodec/wmalosslessdec.c         num_bits_prev_frame = get_bits(gb, s->log2_frame_size);
get_bits          609 libavcodec/wmaprodec.c             frame_len_shift = 1 + get_bits(&s->gb, s->subframe_len_bits-1);
get_bits          611 libavcodec/wmaprodec.c         frame_len_shift = get_bits(&s->gb, s->subframe_len_bits);
get_bits          746 libavcodec/wmaprodec.c         rotation_offset[i] = get_bits(&s->gb, 6);
get_bits         1036 libavcodec/wmaprodec.c                 s->channel[c].scale_factor_step = get_bits(&s->gb, 2) + 1;
get_bits         1054 libavcodec/wmaprodec.c                         uint32_t code = get_bits(&s->gb, 14);
get_bits         1256 libavcodec/wmaprodec.c         if (!(num_fill_bits = get_bits(&s->gb, 2))) {
get_bits         1257 libavcodec/wmaprodec.c             int len = get_bits(&s->gb, 4);
get_bits         1298 libavcodec/wmaprodec.c                 int num_vec_coeffs = get_bits(&s->gb, num_bits) << 2;
get_bits         1319 libavcodec/wmaprodec.c                    (step = get_bits(&s->gb, 5)) == 31) {
get_bits         1333 libavcodec/wmaprodec.c             int modifier_len = get_bits(&s->gb, 3);
get_bits         1339 libavcodec/wmaprodec.c                         s->channel[c].quant_step += get_bits(&s->gb, modifier_len) + 1;
get_bits         1430 libavcodec/wmaprodec.c         len = get_bits(gb, s->log2_frame_size);
get_bits         1450 libavcodec/wmaprodec.c         s->drc_gain = get_bits(gb, 8);
get_bits         1461 libavcodec/wmaprodec.c             skip = get_bits(gb, av_log2(s->samples_per_frame * 2));
get_bits         1467 libavcodec/wmaprodec.c             skip = get_bits(gb, av_log2(s->samples_per_frame * 2));
get_bits         1587 libavcodec/wmaprodec.c         put_bits(&s->pb, align, get_bits(gb, align));
get_bits         1663 libavcodec/wmaprodec.c             packet_sequence_number = get_bits(gb, 4);
get_bits         1666 libavcodec/wmaprodec.c             int num_frames = get_bits(gb, 6);
get_bits         1672 libavcodec/wmaprodec.c         num_bits_prev_frame = get_bits(gb, s->log2_frame_size);
get_bits         1675 libavcodec/wmaprodec.c             s->skip_packets = get_bits(gb, 8);
get_bits          306 libavcodec/wmavoice.c         res = get_bits(gb, 3);
get_bits          904 libavcodec/wmavoice.c     v[0] = get_bits(gb, 8);
get_bits          905 libavcodec/wmavoice.c     v[1] = get_bits(gb, 6);
get_bits          906 libavcodec/wmavoice.c     v[2] = get_bits(gb, 5);
get_bits          907 libavcodec/wmavoice.c     v[3] = get_bits(gb, 5);
get_bits          935 libavcodec/wmavoice.c     interpol = get_bits(gb, 5);
get_bits          936 libavcodec/wmavoice.c     v[0]     = get_bits(gb, 7);
get_bits          937 libavcodec/wmavoice.c     v[1]     = get_bits(gb, 6);
get_bits          938 libavcodec/wmavoice.c     v[2]     = get_bits(gb, 6);
get_bits          968 libavcodec/wmavoice.c     v[0] = get_bits(gb, 8);
get_bits          969 libavcodec/wmavoice.c     v[1] = get_bits(gb, 6);
get_bits          970 libavcodec/wmavoice.c     v[2] = get_bits(gb, 7);
get_bits          971 libavcodec/wmavoice.c     v[3] = get_bits(gb, 6);
get_bits          972 libavcodec/wmavoice.c     v[4] = get_bits(gb, 7);
get_bits         1004 libavcodec/wmavoice.c     interpol = get_bits(gb, 5);
get_bits         1005 libavcodec/wmavoice.c     v[0]     = get_bits(gb, 7);
get_bits         1006 libavcodec/wmavoice.c     v[1]     = get_bits(gb, 7);
get_bits         1007 libavcodec/wmavoice.c     v[2]     = get_bits(gb, 7);
get_bits         1053 libavcodec/wmavoice.c     if ((bits = get_bits(gb, 6)) >= 54) {
get_bits         1055 libavcodec/wmavoice.c         bits += (bits - 54) * 3 + get_bits(gb, 2);
get_bits         1142 libavcodec/wmavoice.c     aidx = get_bits(gb, s->aw_n_pulses[0] > 0 ? 5 - 2 * block_idx : 4);
get_bits         1181 libavcodec/wmavoice.c     int val = get_bits(gb, 12 - 2 * (s->aw_idx_is_ext && !block_idx));
get_bits         1290 libavcodec/wmavoice.c         r_idx = get_bits(gb, 8);
get_bits         1291 libavcodec/wmavoice.c         gain  = wmavoice_gain_universal[get_bits(gb, 6)];
get_bits         1354 libavcodec/wmavoice.c             pos1           = get_bits(gb, offset_nbits);
get_bits         1358 libavcodec/wmavoice.c                 pos2           = get_bits(gb, offset_nbits);
get_bits         1368 libavcodec/wmavoice.c     idx = get_bits(gb, 7);
get_bits         1510 libavcodec/wmavoice.c         cur_pitch_val    = s->min_pitch_val + get_bits(gb, s->pitch_nbits);
get_bits         1534 libavcodec/wmavoice.c         s->silence_gain = wmavoice_gain_silence[get_bits(gb, 8)];
get_bits         1558 libavcodec/wmavoice.c                 block_pitch = get_bits(gb, s->block_pitch_nbits);
get_bits         1561 libavcodec/wmavoice.c                                  get_bits(gb, s->block_delta_pitch_nbits);
get_bits         1739 libavcodec/wmavoice.c         if ((n_samples = get_bits(gb, 12)) > MAX_SFRAMESIZE) {
get_bits         1808 libavcodec/wmavoice.c         res = get_bits(gb, 4);
get_bits         1851 libavcodec/wmavoice.c         res = get_bits(gb, 6); // number of superframes per packet
get_bits         1855 libavcodec/wmavoice.c     s->spillover_nbits   = get_bits(gb, s->spillover_bitsize);
get_bits         1888 libavcodec/wmavoice.c         put_bits(pb, rmn_bits, get_bits(gb, rmn_bits));
get_bits           40 libavcodec/wmv2dec.c     w->skip_type = get_bits(&s->gb, 2);
get_bits          110 libavcodec/wmv2dec.c     fps                 = get_bits(&gb, 5);
get_bits          111 libavcodec/wmv2dec.c     s->bit_rate         = get_bits(&gb, 11) * 1024;
get_bits          118 libavcodec/wmv2dec.c     code                = get_bits(&gb, 3);
get_bits          146 libavcodec/wmv2dec.c         code = get_bits(&s->gb, 7);
get_bits          149 libavcodec/wmv2dec.c     s->chroma_qscale = s->qscale = get_bits(&s->gb, 5);
get_bits          155 libavcodec/wmv2dec.c         int skip_type = get_bits(&gb, 2);
get_bits          160 libavcodec/wmv2dec.c             if (get_bits(&gb, block) + 1 != 1<<block)
get_bits           53 libavcodec/wnv1.c         return ff_reverse[get_bits(&w->gb, 8 - w->shift)];
get_bits          159 libavcodec/xsubdec.c             int run = get_bits(&gb, 14 - 4 * (log2 >> 1));
get_bits          160 libavcodec/xsubdec.c             int color = get_bits(&gb, 2);
get_bits           72 libavformat/adtsenc.c     if (get_bits(&gb, 1)) {
get_bits           76 libavformat/adtsenc.c     if (get_bits(&gb, 1)) {
get_bits           80 libavformat/adtsenc.c     if (get_bits(&gb, 1)) {
get_bits          155 libavformat/av1.c         seq_params->color_primaries          = get_bits(gb, 8);
get_bits          156 libavformat/av1.c         seq_params->transfer_characteristics = get_bits(gb, 8);
get_bits          157 libavformat/av1.c         seq_params->matrix_coefficients      = get_bits(gb, 8);
get_bits          197 libavformat/av1.c             seq_params->chroma_sample_position = get_bits(gb, 2);
get_bits          222 libavformat/av1.c     seq_params->profile = get_bits(&gb, 3);
get_bits          228 libavformat/av1.c         seq_params->level = get_bits(&gb, 5);
get_bits          243 libavformat/av1.c                 buffer_delay_length_minus_1 = get_bits(&gb, 5);
get_bits          253 libavformat/av1.c         operating_points_cnt_minus_1 = get_bits(&gb, 5);
get_bits          258 libavformat/av1.c             seq_level_idx = get_bits(&gb, 5);
get_bits          285 libavformat/av1.c     frame_width_bits_minus_1  = get_bits(&gb, 4);
get_bits          286 libavformat/av1.c     frame_height_bits_minus_1 = get_bits(&gb, 4);
get_bits          353 libavformat/avc.c     sps->profile_idc = get_bits(&gb, 8);
get_bits          361 libavformat/avc.c     sps->level_idc = get_bits(&gb, 8);
get_bits          432 libavformat/avc.c             aspect_ratio_idc = get_bits(&gb, 8);
get_bits          434 libavformat/avc.c                 sps->sar.num = get_bits(&gb, 16);
get_bits          435 libavformat/avc.c                 sps->sar.den = get_bits(&gb, 16);
get_bits           67 libavformat/dtsdec.c             hdr_size  = get_bits(&gb,  8 + 4 * wide_hdr) + 1;
get_bits           68 libavformat/dtsdec.c             framesize = get_bits(&gb, 16 + 4 * wide_hdr) + 1;
get_bits           88 libavformat/h264dec.c                 if (get_bits(&gb, 2))
get_bits          135 libavformat/hevc.c     general_ptl.profile_space               = get_bits(gb, 2);
get_bits          137 libavformat/hevc.c     general_ptl.profile_idc                 = get_bits(gb, 5);
get_bits          140 libavformat/hevc.c     general_ptl.level_idc                   = get_bits(gb, 8);
get_bits          285 libavformat/hevc.c         if (get_bits(gb, 8) == 255) // aspect_ratio_idc
get_bits          375 libavformat/hevc.c     vps_max_sub_layers_minus1 = get_bits(gb, 3);
get_bits          494 libavformat/hevc.c     sps_max_sub_layers_minus1 = get_bits (gb, 3);
get_bits          651 libavformat/hevc.c     *nal_type = get_bits(gb, 6);
get_bits          894 libavformat/mov.c     st->codecpar->bits_per_coded_sample = get_bits(&gb, 8);
get_bits          895 libavformat/mov.c     frame_duration_code = get_bits(&gb, 2);
get_bits          897 libavformat/mov.c     channel_layout_code = get_bits(&gb, 16);
get_bits          337 libavformat/movenc.c     fscod      = get_bits(&gbc, 2);
get_bits          338 libavformat/movenc.c     frmsizecod = get_bits(&gbc, 6);
get_bits          339 libavformat/movenc.c     bsid       = get_bits(&gbc, 5);
get_bits          340 libavformat/movenc.c     bsmod      = get_bits(&gbc, 3);
get_bits          341 libavformat/movenc.c     acmod      = get_bits(&gbc, 3);
get_bits          495 libavformat/movenc.c                     info->substream[parent].chan_loc |= (get_bits(&gbc, 16) >> 5) & 0x1f;
get_bits          909 libavformat/movenc.c             int profile = get_bits(&gb, 2);
get_bits          915 libavformat/movenc.c             level = get_bits(&gb, 3);
get_bits          115 libavformat/mpc8.c         v |= get_bits(gb, 7);
get_bits          119 libavformat/mpc8.c     v |= get_bits(gb, 7);
get_bits          174 libavformat/mpc8.c     seekd = get_bits(&gb, 4);
get_bits          182 libavformat/mpc8.c         t += get_bits(&gb, 12);
get_bits         1061 libavformat/mpegts.c         padding_bits = get_bits(&gb, 3);
get_bits           44 libavformat/oggparseflac.c     mdt = get_bits(&gb, 7);
get_bits           51 libavformat/oggparseflac.c         if(get_bits(&gb, 8) != 1) /* unsupported major version */
get_bits           68 libavformat/oggparsetheora.c         thp->version = get_bits(&gb, 24);
get_bits           75 libavformat/oggparsetheora.c         st->codecpar->width  = get_bits(&gb, 16) << 4;
get_bits           76 libavformat/oggparsetheora.c         st->codecpar->height = get_bits(&gb, 16) << 4;
get_bits           82 libavformat/oggparsetheora.c             int width  = get_bits(&gb, 24);
get_bits           83 libavformat/oggparsetheora.c             int height = get_bits(&gb, 24);
get_bits          102 libavformat/oggparsetheora.c         st->sample_aspect_ratio.num = get_bits(&gb, 24);
get_bits          103 libavformat/oggparsetheora.c         st->sample_aspect_ratio.den = get_bits(&gb, 24);
get_bits          110 libavformat/oggparsetheora.c         thp->gpshift = get_bits(&gb, 5);
get_bits          267 libavformat/rdt.c     set_id        = get_bits(&gb, 5);
get_bits          269 libavformat/rdt.c     seq_no        = get_bits(&gb, 16);
get_bits          273 libavformat/rdt.c     stream_id     = get_bits(&gb, 5);
get_bits          277 libavformat/rdt.c         set_id    = get_bits(&gb, 16);
get_bits          281 libavformat/rdt.c         stream_id = get_bits(&gb, 16);
get_bits          125 libavformat/rtpdec_h261.c                 rtp_h261_ctx->endbyte |= get_bits(&gb, 8 - rtp_h261_ctx->endbyte_bits);
get_bits          129 libavformat/rtpdec_h261.c                 avio_w8(rtp_h261_ctx->buf, get_bits(&gb, 8));
get_bits          132 libavformat/rtpdec_h261.c                 rtp_h261_ctx->endbyte = get_bits(&gb, rtp_h261_ctx->endbyte_bits) <<
get_bits          148 libavformat/rtpdec_h263_rfc2190.c                 data->endbyte |= get_bits(&gb, 8 - data->endbyte_bits);
get_bits          152 libavformat/rtpdec_h263_rfc2190.c                 avio_w8(data->buf, get_bits(&gb, 8));
get_bits          155 libavformat/rtpdec_h263_rfc2190.c                 data->endbyte = get_bits(&gb, data->endbyte_bits) <<
get_bits          105 libavformat/rtpdec_latm.c     audio_mux_version = get_bits(&gb, 1);
get_bits          106 libavformat/rtpdec_latm.c     same_time_framing = get_bits(&gb, 1);
get_bits          108 libavformat/rtpdec_latm.c     num_programs      = get_bits(&gb, 4);
get_bits          109 libavformat/rtpdec_latm.c     num_layers        = get_bits(&gb, 3);
get_bits          123 libavformat/rtpdec_latm.c         st->codecpar->extradata[i] = get_bits(&gb, 8);
get_bits           81 libavformat/rtpdec_qt.c     if ((packing_scheme = get_bits(&gb, 2)) == 0)
get_bits          105 libavformat/rtpdec_qt.c         data_len = get_bits(&gb, 16);
get_bits          115 libavformat/rtpenc_h263_rfc2190.c     if (get_bits(&gb, 22) == 0x20) { /* Picture Start Code */
get_bits          116 libavformat/rtpenc_h263_rfc2190.c         info.tr  = get_bits(&gb, 8);
get_bits          119 libavformat/rtpenc_h263_rfc2190.c         info.src = get_bits(&gb, 3);
get_bits          120 libavformat/rtpenc_h263_rfc2190.c         info.i   = get_bits(&gb, 1);
get_bits          121 libavformat/rtpenc_h263_rfc2190.c         info.u   = get_bits(&gb, 1);
get_bits          122 libavformat/rtpenc_h263_rfc2190.c         info.s   = get_bits(&gb, 1);
get_bits          123 libavformat/rtpenc_h263_rfc2190.c         info.a   = get_bits(&gb, 1);
get_bits          124 libavformat/rtpenc_h263_rfc2190.c         info.pb  = get_bits(&gb, 1);
get_bits           85 libavformat/swfdec.c     len = get_bits(&gb, 5);
get_bits          174 libavformat/takdec.c                               get_bits(&gb, TAK_LAST_FRAME_SIZE_BITS);