Home
last modified time | relevance | path

Searched refs:seq_ext_head (Results 1 – 2 of 2) sorted by relevance

/rockchip-linux_mpp/mpp/codec/dec/m2v/
H A Dm2vd_parser.c194 ctx->seq_ext_head.progressive_sequence = 1; in m2vd_parser_init_ctx()
201 ctx->seq_ext_head.chroma_format = 1; in m2vd_parser_init_ctx()
587 ctx->seq_ext_head.profile_and_level_indication = m2vd_read_bits(bx, 8); in m2vd_decode_seq_ext_header()
588 ctx->seq_ext_head.progressive_sequence = m2vd_read_bits(bx, 1); in m2vd_decode_seq_ext_header()
589 ctx->seq_ext_head.chroma_format = m2vd_read_bits(bx, 2); in m2vd_decode_seq_ext_header()
590 if (ctx->seq_ext_head.chroma_format != 1) in m2vd_decode_seq_ext_header()
592 ctx->seq_ext_head.horizontal_size_extension = m2vd_read_bits(bx, 2); in m2vd_decode_seq_ext_header()
593 ctx->seq_ext_head.vertical_size_extension = m2vd_read_bits(bx, 2); in m2vd_decode_seq_ext_header()
594 ctx->seq_ext_head.bit_rate_extension = m2vd_read_bits(bx, 12); in m2vd_decode_seq_ext_header()
596 ctx->seq_ext_head.vbv_buffer_size_extension = m2vd_read_bits(bx, 8); in m2vd_decode_seq_ext_header()
[all …]
H A Dm2vd_parser.h249 M2VDHeadSeqExt seq_ext_head; member