Home
last modified time | relevance | path

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

/external/libavc/encoder/
Dih264e_encode_header.c315PUT_BITS_SEV(ps_bitstrm, ps_sps->i4_offset_for_non_ref_pic, return_status, "offset_for_non_ref_pic… in ih264e_generate_sps()
318PUT_BITS_SEV(ps_bitstrm, ps_sps->i4_offset_for_top_to_bottom_field, return_status, "offset_for_top… in ih264e_generate_sps()
327PUT_BITS_SEV(ps_bitstrm, ps_sps->ai4_offset_for_ref_frame[i], return_status, "offset_for_ref_frame… in ih264e_generate_sps()
450 PUT_BITS_SEV(ps_bitstrm, ps_pps->i1_pic_init_qp - 26, return_status, "pic_init_qp_minus26"); in ih264e_generate_pps()
453 PUT_BITS_SEV(ps_bitstrm, ps_pps->i1_pic_init_qs - 26, return_status, "pic_init_qs_minus26"); in ih264e_generate_pps()
456PUT_BITS_SEV(ps_bitstrm, ps_pps->i1_chroma_qp_index_offset, return_status, "chroma_qp_index_offset… in ih264e_generate_pps()
481PUT_BITS_SEV(ps_bitstrm, ps_pps->i1_second_chroma_qp_index_offset, return_status, "Second chroma Q… in ih264e_generate_pps()
571PUT_BITS_SEV(ps_bitstrm, ps_slice_hdr->i4_delta_pic_order_cnt_bottom, return_status, "delta_pic_or… in ih264e_generate_slice_header()
578PUT_BITS_SEV(ps_bitstrm, ps_slice_hdr->ai4_delta_pic_order_cnt[0], return_status, "delta_pic_order… in ih264e_generate_slice_header()
583PUT_BITS_SEV(ps_bitstrm, ps_slice_hdr->ai4_delta_pic_order_cnt[1], return_status, "delta_pic_order… in ih264e_generate_slice_header()
[all …]
Dih264e_cavlc.c1129 PUT_BITS_SEV(ps_bitstream, mb_qp_delta, error_status, "mb_qp_delta"); in ih264e_write_islice_mb_cavlc()
1409 PUT_BITS_SEV(ps_bitstream, *pi2_mv_ptr++, error_status, "mv x"); in ih264e_write_pslice_mb_cavlc()
1410 PUT_BITS_SEV(ps_bitstream, *pi2_mv_ptr++, error_status, "mv y"); in ih264e_write_pslice_mb_cavlc()
1425 PUT_BITS_SEV(ps_bitstream, mb_qp_delta, error_status, "mb_qp_delta"); in ih264e_write_pslice_mb_cavlc()
1721 PUT_BITS_SEV(ps_bitstream, *pi2_mvd_ptr, error_status, "mv l0 x"); in ih264e_write_bslice_mb_cavlc()
1723 PUT_BITS_SEV(ps_bitstream, *pi2_mvd_ptr, error_status, "mv l0 y"); in ih264e_write_bslice_mb_cavlc()
1728 PUT_BITS_SEV(ps_bitstream, *pi2_mvd_ptr, error_status, "mv l1 x"); in ih264e_write_bslice_mb_cavlc()
1730 PUT_BITS_SEV(ps_bitstream, *pi2_mvd_ptr, error_status, "mv l1 y"); in ih264e_write_bslice_mb_cavlc()
1747 PUT_BITS_SEV(ps_bitstream, mb_qp_delta, error_status, "mb_qp_delta"); in ih264e_write_bslice_mb_cavlc()
Dih264e_encode_header.h74 #define PUT_BITS_SEV(ps_bitstrm, code_val, ret_val, syntax_string) \ macro