Home
last modified time | relevance | path

Searched refs:vbv_delay_ptr (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmpegvideo_enc.c2042 (s->vbv_delay_ptr - s->pb.buf - 1); in ff_mpv_encode_picture()
2059 s->vbv_delay_ptr[0] &= 0xF8; in ff_mpv_encode_picture()
2060 s->vbv_delay_ptr[0] |= vbv_delay >> 13; in ff_mpv_encode_picture()
2061 s->vbv_delay_ptr[1] = vbv_delay >> 5; in ff_mpv_encode_picture()
2062 s->vbv_delay_ptr[2] &= 0x07; in ff_mpv_encode_picture()
2063 s->vbv_delay_ptr[2] |= vbv_delay << 3; in ff_mpv_encode_picture()
2923 int vbv_pos = s->vbv_delay_ptr - s->pb.buf; in ff_mpv_reallocate_putbitbuffer()
2946 s->vbv_delay_ptr = s->pb.buf + vbv_pos; in ff_mpv_reallocate_putbitbuffer()
Dmpegvideo.h458 uint8_t *vbv_delay_ptr; ///< pointer to vbv_delay in the bitstream member
Dmpeg12enc.c442 s->vbv_delay_ptr = s->pb.buf + put_bits_count(&s->pb) / 8; in ff_mpeg1_encode_picture_header()