Searched refs:show_bits_long (Results 1 – 17 of 17) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | golomb.h | 60 buf = show_bits_long(gb, 32); in get_ue_golomb() 110 buf = show_bits_long(gb, 32); in get_ue_golomb_long() 127 buf = show_bits_long(gb, 32); in get_ue_golomb_31() 150 buf = show_bits_long(gb, 32); in get_interleaved_ue_golomb() 170 buf = show_bits_long(gb, 32); in get_interleaved_ue_golomb() 246 buf = show_bits_long(gb, 32); in get_se_golomb() 308 buf = show_bits_long(gb, 32); in get_interleaved_se_golomb() 383 buf = show_bits_long(gb, 32); in get_ur_golomb() 437 buf = show_bits_long(gb, 32); in get_ur_golomb_jpegls()
|
D | truehd_core_bsf.c | 67 if (show_bits_long(&gbc, 32) == 0xf8726fba) { in truehd_core_filter()
|
D | jpeglsdec.c | 156 if (!show_bits_long(gb, 32)) in ls_get_code_regular() 193 if (!show_bits_long(gb, 32)) in ls_get_code_runterm()
|
D | ac3_parser.c | 65 hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F; in ff_ac3_parse_header()
|
D | flacdec.c | 429 (left < bps && !show_bits_long(&s->gb, left)) || in decode_subframe() 430 !show_bits_long(&s->gb, bps)) { in decode_subframe()
|
D | tta.c | 141 if (show_bits_long(&gb, 32) == AV_RL32("TTA1")) { in tta_decode_init()
|
D | ituh263dec.c | 220 while (get_bits_left(&s->gb) >= 32 && show_bits_long(&s->gb, 32) != SLICE_START_CODE) { in ff_h263_resync() 224 if (get_bits_left(&s->gb) >= 32 && show_bits_long(&s->gb, 32) == SLICE_START_CODE) in ff_h263_resync()
|
D | get_bits.h | 602 static inline unsigned int show_bits_long(GetBitContext *s, int n) in show_bits_long() function
|
D | lagarith.c | 175 if (nnz == 1 && (show_bits_long(gb, 32) & 0xFFFFFF)) { in lag_read_prob_header()
|
D | vc1.c | 279 av_log(avctx, AV_LOG_DEBUG, "Header: %0X\n", show_bits_long(gb, 32)); in ff_vc1_decode_sequence_header() 515 av_log(avctx, AV_LOG_DEBUG, "Entry point: %08X\n", show_bits_long(gb, 32)); in ff_vc1_decode_entry_point()
|
D | cavsdec.c | 964 if ((show_bits_long(gb, 24 + align) & 0xFFFFFF) == 0x000001) { in check_for_slice()
|
D | mlpdec.c | 1161 if (show_bits_long(&gb, 31) == (0xf8726fba >> 1)) { in read_access_unit()
|
D | hevc_ps.c | 662 if (get_bits_left(gb) >= 68 && show_bits_long(gb, 21) == 0x100000) { in decode_vui()
|
D | mjpegdec.c | 1899 && show_bits_long(&s->gb, 32) != AV_RB32("e_CM")) { in mjpeg_decode_app()
|
D | mpeg12dec.c | 1877 if (left > 32 && show_bits_long(&gb, 32) == 0x201) { in mpeg_decode_slice()
|
D | mpeg4videodec.c | 2199 startcode = show_bits_long(gb, 32); in extension_and_user_data()
|
/third_party/ffmpeg/libavcodec/tests/ |
D | golomb.c | 70 int j, s = show_bits_long(&gb, 32); in main() 88 int j, s = show_bits_long(&gb, 32); in main()
|