Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/mpp/mpp/codec/dec/m2v/
H A Dm2vd_parser.c193 ctx->seq_ext_head.progressive_sequence = 1; in m2vd_parser_init_ctx()
200 ctx->seq_ext_head.chroma_format = 1; in m2vd_parser_init_ctx()
583 ctx->seq_ext_head.profile_and_level_indication = m2vd_read_bits(bx, 8); in m2vd_decode_seq_ext_header()
584 ctx->seq_ext_head.progressive_sequence = m2vd_read_bits(bx, 1); in m2vd_decode_seq_ext_header()
585 ctx->seq_ext_head.chroma_format = m2vd_read_bits(bx, 2); in m2vd_decode_seq_ext_header()
586 if (ctx->seq_ext_head.chroma_format != 1) in m2vd_decode_seq_ext_header()
588 ctx->seq_ext_head.horizontal_size_extension = m2vd_read_bits(bx, 2); in m2vd_decode_seq_ext_header()
589 ctx->seq_ext_head.vertical_size_extension = m2vd_read_bits(bx, 2); in m2vd_decode_seq_ext_header()
590 ctx->seq_ext_head.bit_rate_extension = m2vd_read_bits(bx, 12); in m2vd_decode_seq_ext_header()
592 ctx->seq_ext_head.vbv_buffer_size_extension = m2vd_read_bits(bx, 8); in m2vd_decode_seq_ext_header()
[all …]
H A Dm2vd_parser.h248 M2VDHeadSeqExt seq_ext_head; member