get_bits_long     276 libavcodec/aacdec.c     return get_bits_long(b, (length+1)*8);
get_bits_long    1053 libavcodec/agm.c     s->output_size = get_bits_long(gb, 32);
get_bits_long      96 libavcodec/alac.c         x = get_bits_long(gb, bps);
get_bits_long     264 libavcodec/alac.c         output_samples = get_bits_long(&alac->gb, 32);
get_bits_long     318 libavcodec/alsdec.c     als_id                      = get_bits_long(&gb, 32);
get_bits_long     321 libavcodec/alsdec.c     sconf->samples              = get_bits_long(&gb, 32);
get_bits_long     402 libavcodec/alsdec.c     header_size  = get_bits_long(&gb, 32);
get_bits_long     403 libavcodec/alsdec.c     trailer_size = get_bits_long(&gb, 32);
get_bits_long     430 libavcodec/alsdec.c             ctx->crc_org   = ~get_bits_long(&gb, 32);
get_bits_long     501 libavcodec/alsdec.c         q  += get_bits_long(gb, k - 1);
get_bits_long     541 libavcodec/alsdec.c         *bs_info = get_bits_long(gb, bs_info_len);
get_bits_long     882 libavcodec/alsdec.c                         res  |= get_bits_long(gb, cur_k);
get_bits_long    1231 libavcodec/alsdec.c         current->master_channel = get_bits_long(gb, av_ceil_log2(channels));
get_bits_long    1511 libavcodec/alsdec.c                         ctx->raw_mantissa[c][i] = get_bits_long(gb, 32);
get_bits_long     750 libavcodec/apedec.c         ctx->CRC = get_bits_long(&ctx->gb, 32);
get_bits_long     187 libavcodec/binkaudio.c             coeffs[0] = av_int2float(get_bits_long(gb, 32)) * s->root;
get_bits_long     188 libavcodec/binkaudio.c             coeffs[1] = av_int2float(get_bits_long(gb, 32)) * s->root;
get_bits_long     504 libavcodec/cbs.c     value = get_bits_long(gbc, width);
get_bits_long      60 libavcodec/cbs_av1.c         bits_value = get_bits_long(gbc, zeroes);
get_bits_long      93 libavcodec/dca.c     if (get_bits_long(gb, 32) != DCA_SYNCWORD_CORE_BE)
get_bits_long     206 libavcodec/dca_core.c         mask = get_bits_long(&s->gb, s->xxch_mask_nbits - DCA_SPEAKER_Cs);
get_bits_long     239 libavcodec/dca_core.c                 mask = get_bits_long(&s->gb, s->xxch_mask_nbits);
get_bits_long     864 libavcodec/dca_core.c     if (get_bits_long(&s->gb, 32) != DCA_SYNCWORD_XXCH) {
get_bits_long     899 libavcodec/dca_core.c     s->xxch_core_mask = get_bits_long(&s->gb, s->xxch_mask_nbits);
get_bits_long    1079 libavcodec/dca_core.c     if (get_bits_long(&s->gb, 32) != DCA_SYNCWORD_XBR) {
get_bits_long    1549 libavcodec/dca_core.c     if (get_bits_long(&s->gb, 32) != DCA_SYNCWORD_X96) {
get_bits_long    1631 libavcodec/dca_core.c     if (get_bits_long(&s->gb, 32) != DCA_SYNCWORD_REV1AUX) {
get_bits_long      39 libavcodec/dca_exss.c         asset->xll_delay_nframes = get_bits_long(&s->gb, xll_delay_nbits);
get_bits_long     145 libavcodec/dca_exss.c                     int remap_ch_mask = get_bits_long(&s->gb, nch_for_remaps);
get_bits_long     214 libavcodec/dca_parser.c             if (get_bits_long(&gb, 32) != DCA_SYNCWORD_LBR)
get_bits_long     241 libavcodec/dca_parser.c             if (get_bits_long(&gb, 32) != DCA_SYNCWORD_XLL)
get_bits_long      29 libavcodec/dca_xll.c     unsigned int v = get_bits_long(gb, n);
get_bits_long      36 libavcodec/dca_xll.c     return (v << k) | get_bits_long(gb, k);
get_bits_long     216 libavcodec/dca_xll.c         c->ch_mask = get_bits_long(&s->gb, s->ch_mask_nbits);
get_bits_long     339 libavcodec/dca_xll.c             b->lsb_section_size = get_bits_long(&s->gb, s->seg_size_nbits);
get_bits_long     770 libavcodec/dca_xll.c     if (get_bits_long(&s->gb, 32) != DCA_SYNCWORD_XLL) {
get_bits_long     795 libavcodec/dca_xll.c     s->frame_size = get_bits_long(&s->gb, frame_size_nbits);
get_bits_long     976 libavcodec/dca_xll.c                     size = get_bits_long(&s->gb, s->seg_size_nbits);
get_bits_long     784 libavcodec/diracdec.c     int luma_bits   = get_bits_long(gb, length_bits);
get_bits_long    2004 libavcodec/diracdec.c     picnum = s->current_picture->avframe->display_picture_number = get_bits_long(gb, 32);
get_bits_long     332 libavcodec/dss_sp.c         fparam->sf[subframe_idx].combined_pulse_pos = get_bits_long(&gb, 31);
get_bits_long     231 libavcodec/escape124.c     frame_flags = get_bits_long(&gb, 32);
get_bits_long     232 libavcodec/escape124.c     frame_size  = get_bits_long(&gb, 32);
get_bits_long     575 libavcodec/get_bits.h         return get_bits_long(s, n);
get_bits_long     578 libavcodec/get_bits.h         uint64_t ret = get_bits_long(s, 32);
get_bits_long     579 libavcodec/get_bits.h         return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
get_bits_long     581 libavcodec/get_bits.h         uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
get_bits_long     582 libavcodec/get_bits.h         return ret | get_bits_long(s, 32);
get_bits_long     596 libavcodec/get_bits.h     return sign_extend(get_bits_long(s, n), n);
get_bits_long     608 libavcodec/get_bits.h         return get_bits_long(&gb, n);
get_bits_long     113 libavcodec/golomb.h     return get_bits_long(gb, log + 1) - 1;
get_bits_long     393 libavcodec/golomb.h         buf = get_bits_long(gb, esc_len);
get_bits_long     452 libavcodec/golomb.h             buf = get_bits_long(gb, k);
get_bits_long     456 libavcodec/golomb.h             buf = get_bits_long(gb, esc_len);
get_bits_long     196 libavcodec/h264_ps.c         unsigned num_units_in_tick = get_bits_long(gb, 32);
get_bits_long     197 libavcodec/h264_ps.c         unsigned time_scale        = get_bits_long(gb, 32);
get_bits_long      66 libavcodec/h264_sei.c         h->cpb_removal_delay = get_bits_long(&gb, sps->cpb_removal_delay_length);
get_bits_long      67 libavcodec/h264_sei.c         h->dpb_output_delay  = get_bits_long(&gb, sps->dpb_output_delay_length);
get_bits_long     242 libavcodec/h264_sei.c     user_identifier = get_bits_long(gb, 32);
get_bits_long     322 libavcodec/h264_sei.c                 get_bits_long(gb, sps->initial_cpb_removal_delay_length);
get_bits_long     330 libavcodec/h264_sei.c                 get_bits_long(gb, sps->initial_cpb_removal_delay_length);
get_bits_long     128 libavcodec/hcadec.c     if (get_bits_long(gb, 32) != MKBETAG('f', 'm', 't', 0))
get_bits_long     134 libavcodec/hcadec.c     chunk = get_bits_long(gb, 32);
get_bits_long     165 libavcodec/hcadec.c         chunk = get_bits_long(gb, 32);
get_bits_long     544 libavcodec/hevc_ps.c         vps->vps_num_units_in_tick               = get_bits_long(gb, 32);
get_bits_long     545 libavcodec/hevc_ps.c         vps->vps_time_scale                      = get_bits_long(gb, 32);
get_bits_long     707 libavcodec/hevc_ps.c         vui->vui_num_units_in_tick               = get_bits_long(gb, 32);
get_bits_long     708 libavcodec/hevc_ps.c         vui->vui_time_scale                      = get_bits_long(gb, 32);
get_bits_long      66 libavcodec/hevc_sei.c     s->max_luminance = get_bits_long(gb, 32);
get_bits_long      67 libavcodec/hevc_sei.c     s->min_luminance = get_bits_long(gb, 32);
get_bits_long     235 libavcodec/hevc_sei.c     user_identifier = get_bits_long(gb, 32);
get_bits_long     874 libavcodec/hevcdec.c                 unsigned val = get_bits_long(gb, offset_len);
get_bits_long     431 libavcodec/imm4.c     type = get_bits_long(gb, 32);
get_bits_long      71 libavcodec/indeo5.c         ctx->lock_word = get_bits_long(&ctx->gb, 32);
get_bits_long     275 libavcodec/jpeglsdec.c                 r = get_bits_long(&s->gb, r);
get_bits_long     127 libavcodec/lagarith.c     val  = get_bits_long(gb, bits);
get_bits_long      35 libavcodec/mjpegbdec.c     uint32_t offs= get_bits_long(gb, 32);
get_bits_long      74 libavcodec/mjpegbdec.c     if (get_bits_long(&hgb, 32) != MKBETAG('m','j','p','g')) {
get_bits_long      79 libavcodec/mjpegbdec.c     field_size = get_bits_long(&hgb, 32); /* field size */
get_bits_long    1828 libavcodec/mjpegdec.c     id   = get_bits_long(&s->gb, 32);
get_bits_long    2032 libavcodec/mjpegdec.c         id   = get_bits_long(&s->gb, 32);
get_bits_long    2056 libavcodec/mjpegdec.c         id   = get_bits_long(&s->gb, 32);
get_bits_long     269 libavcodec/mlpdec.c             result = (result << lsb_bits) + get_bits_long(gbp, lsb_bits);
get_bits_long     107 libavcodec/motionpixels.c         offset = get_bits_long(gb, mp->offset_bits_len);
get_bits_long      48 libavcodec/mpc8.c     int code = len ? get_bits_long(gb, len) : 0;
get_bits_long      38 libavcodec/mpeg4audio.c     if (get_bits_long(gb, 32) != MKBETAG('A','L','S','\0'))
get_bits_long      43 libavcodec/mpeg4audio.c     c->sample_rate = get_bits_long(gb, 32);
get_bits_long     555 libavcodec/mpeg4videodec.c     if (get_bits_left(gb) >= 32 && get_bits_long(gb, 32) == SLICE_START_CODE) {
get_bits_long     424 libavcodec/msmpeg4dec.c         int start_code = get_bits_long(&s->gb, 32);
get_bits_long     222 libavcodec/on2avc.c     return (1 << v) + get_bits_long(gb, v);
get_bits_long     392 libavcodec/qdmc.c     uint32_t label = get_bits_long(gb, 32);
get_bits_long     410 libavcodec/shorten.c     if (get_bits_long(&s->gb, 32) != AV_RB32("ajkg")) {
get_bits_long     270 libavcodec/takdec.c         unsigned x = get_bits_long(gb, code.init);
get_bits_long     283 libavcodec/takdec.c                         scale = get_bits_long(gb, scale_bits) + 1;
get_bits_long     136 libavcodec/truemotion2.c         huff->nums[huff->num] = get_bits_long(&ctx->gb, huff->val_bits);
get_bits_long     283 libavcodec/truemotion2.c         v = get_bits_long(&ctx->gb, mb);
get_bits_long     110 libavcodec/truespeech.c     dec->pulsepos[0] = get_bits_long(&gb, 27);
get_bits_long     114 libavcodec/truespeech.c     dec->pulsepos[1] = get_bits_long(&gb, 27);
get_bits_long     118 libavcodec/truespeech.c     dec->pulsepos[2] = get_bits_long(&gb, 27);
get_bits_long     122 libavcodec/truespeech.c     dec->pulsepos[3] = get_bits_long(&gb, 27);
get_bits_long     162 libavcodec/tta.c         avctx->sample_rate = get_bits_long(&gb, 32);
get_bits_long     163 libavcodec/tta.c         s->data_length = get_bits_long(&gb, 32);
get_bits_long     142 libavcodec/vaapi_mpeg2.c     if (get_bits_long(&gb, 32) >> 8 != 1) /* start code */
get_bits_long      67 libavcodec/vc1dec.c     return (get_bits_long(gb, 30) - (1 << 29)) << 1;
get_bits_long     122 libavcodec/vc1dec.c     if (sd->effect_type = get_bits_long(gb, 30)) {
get_bits_long     461 libavcodec/vc1dec.c                    count, get_bits_long(&gb, FFMIN(count, 32)));
get_bits_long     135 libavcodec/vima.c     samples = get_bits_long(&gb, 32);
get_bits_long     138 libavcodec/vima.c         samples = get_bits_long(&gb, 32);
get_bits_long     361 libavcodec/vorbisdec.c             float codebook_minimum_value = vorbisfloat2float(get_bits_long(gb, 32));
get_bits_long     362 libavcodec/vorbisdec.c             float codebook_delta_value   = vorbisfloat2float(get_bits_long(gb, 32));
get_bits_long     972 libavcodec/vorbisdec.c     vc->version        = get_bits_long(gb, 32);    //FIXME check 0
get_bits_long     978 libavcodec/vorbisdec.c     vc->audio_samplerate = get_bits_long(gb, 32);
get_bits_long     983 libavcodec/vorbisdec.c     vc->bitrate_maximum = get_bits_long(gb, 32);
get_bits_long     984 libavcodec/vorbisdec.c     vc->bitrate_nominal = get_bits_long(gb, 32);
get_bits_long     985 libavcodec/vorbisdec.c     vc->bitrate_minimum = get_bits_long(gb, 32);
get_bits_long    2963 libavcodec/vp3.c     fps.num = get_bits_long(gb, 32);
get_bits_long    2964 libavcodec/vp3.c     fps.den = get_bits_long(gb, 32);
get_bits_long     195 libavcodec/wavpack.c                 t = get_bits_long(gb, t - 1) | (1 << (t - 1));
get_bits_long     226 libavcodec/wavpack.c                 t += get_bits_long(gb, t2 - 1) | (1 << (t2 - 1));
get_bits_long     313 libavcodec/wavpack.c             S   |= get_bits_long(&s->gb_extra_bits, s->extra_bits);
get_bits_long    1388 libavcodec/wavpack.c             s->crc_extra_bits  = get_bits_long(&s->gb_extra_bits, 32);
get_bits_long     409 libavcodec/wma.c     return get_bits_long(gb, n_bits);
get_bits_long     543 libavcodec/wmalosslessdec.c             quo += get_bits_long(&s->gb, get_bits(&s->gb, 5) + 1);
get_bits_long     550 libavcodec/wmalosslessdec.c             rem      = get_bits_long(&s->gb, rem_bits);
get_bits_long     330 libavcodec/ylc.c         uint32_t val = ((1U << len) - 1) + get_bits_long(&gb, len);
get_bits_long     138 libavformat/hevc.c     general_ptl.profile_compatibility_flags = get_bits_long(gb, 32);
get_bits_long     886 libavformat/mov.c     st->codecpar->sample_rate = get_bits_long(&gb, 32);
get_bits_long     893 libavformat/mov.c     st->codecpar->bit_rate = get_bits_long(&gb, 32);
get_bits_long    2887 libavformat/mov.c         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
get_bits_long      57 libavformat/oggparseflac.c         if (get_bits_long(&gb, 32) != FLAC_STREAMINFO_SIZE)
get_bits_long      93 libavformat/oggparsetheora.c         timebase.den = get_bits_long(&gb, 32);
get_bits_long      94 libavformat/oggparsetheora.c         timebase.num = get_bits_long(&gb, 32);
get_bits_long     275 libavformat/rdt.c     timestamp     = get_bits_long(&gb, 32);
get_bits_long     164 libavformat/rtpdec_mpeg4.c         data->au_headers[i].size  = get_bits_long(&getbitcontext, data->sizelength);
get_bits_long     165 libavformat/rtpdec_mpeg4.c         data->au_headers[i].index = get_bits_long(&getbitcontext, data->indexlength);
get_bits_long      88 libavformat/swfdec.c     xmin = get_bits_long(&gb, len);
get_bits_long      89 libavformat/swfdec.c     xmax = get_bits_long(&gb, len);
get_bits_long      90 libavformat/swfdec.c     ymin = get_bits_long(&gb, len);
get_bits_long      91 libavformat/swfdec.c     ymax = get_bits_long(&gb, len);
get_bits_long     179 libavformat/takdec.c                    get_bits_long(&gb, TAK_ENCODER_VERSION_BITS));