Searched refs:vbv_delay (Results 1 - 11 of 11) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | mpegvideo_parser.c | 117 int vbv_delay = 0; in mpegvideo_extract_headers() local 132 vbv_delay = ((buf[1] & 0x07) << 13) | (buf[2] << 5) | (buf[3] >> 3); in mpegvideo_extract_headers() 233 ((avctx->codec_id == AV_CODEC_ID_MPEG1VIDEO && bit_rate != 0x3FFFF) || vbv_delay != 0xFFFF)) { in mpegvideo_extract_headers()
|
H A D | defs.h | 134 uint64_t vbv_delay; member
|
H A D | cbs_mpeg2.h | 128 uint16_t vbv_delay; member
|
H A D | vaapi_encode_mpeg2.c | 326 ph->vbv_delay = 0xffff; // Not currently calculated. in vaapi_encode_mpeg2_init_sequence_params() 390 .vbv_delay = 0xffff, in vaapi_encode_mpeg2_init_sequence_params()
|
H A D | cbs_mpeg2_syntax_template.c | 221 ui(16, vbv_delay); in picture_header()
|
H A D | mpegvideo.h | 195 int vbv_delay; member 422 int vbv_delay_pos; ///< offset of vbv_delay in the bitstream
|
H A D | mpegvideo_enc.c | 488 "Warning vbv_delay will be set to 0xFFFF (=VBR) as the " in ff_mpv_encode_init() 1824 /* update MPEG-1/2 vbv_delay for CBR */ in ff_mpv_encode_picture() 1833 int vbv_delay, min_delay; in ff_mpv_encode_picture() local 1847 vbv_delay = bits * 90000 / avctx->rc_max_rate; in ff_mpv_encode_picture() 1851 vbv_delay = FFMAX(vbv_delay, min_delay); in ff_mpv_encode_picture() 1853 av_assert0(vbv_delay < 0xFFFF); in ff_mpv_encode_picture() 1856 vbv_delay_ptr[0] |= vbv_delay >> 13; in ff_mpv_encode_picture() 1857 vbv_delay_ptr[1] = vbv_delay >> 5; in ff_mpv_encode_picture() 1859 vbv_delay_ptr[2] |= vbv_delay << in ff_mpv_encode_picture() [all...] |
H A D | mpeg12dec.c | 1263 (s->bit_rate != 0x3FFFF*400 || s->vbv_delay != 0xFFFF)) { in mpeg_decode_postinit() 1323 int ref, f_code, vbv_delay, ret; in mpeg1_decode_picture() local 1334 vbv_delay = get_bits(&s->gb, 16); in mpeg1_decode_picture() 1335 s->vbv_delay = vbv_delay; in mpeg1_decode_picture() 1360 "vbv_delay %d, ref %d type:%d\n", vbv_delay, ref, s->pict_type); in mpeg1_decode_picture() 1848 /* vbv_delay == 0xBBB || 0xE10 */; in mpeg_decode_slice()
|
H A D | utils.c | 1037 props->vbv_delay = UINT64_MAX; in av_cpb_properties_alloc()
|
/third_party/ffmpeg/libavformat/ |
H A D | dump.c | 336 if (cpb->vbv_delay == UINT64_MAX) in dump_cpb() 337 av_log(ctx, AV_LOG_INFO, "vbv_delay: N/A"); in dump_cpb() 339 av_log(ctx, AV_LOG_INFO, "vbv_delay: %"PRIu64"", cpb->vbv_delay); in dump_cpb()
|
/third_party/ffmpeg/fftools/ |
H A D | ffprobe.c | 2358 print_int("vbv_delay", prop->vbv_delay); in print_pkt_side_data()
|
Completed in 21 milliseconds