Home
last modified time | relevance | path

Searched refs:m_picWidthInLumaSamples (Results 1 – 4 of 4) sorted by relevance

/rockchip-linux_mpp/mpp/codec/enc/h265/
H A Dh265e_ps.c257 sps->m_picWidthInLumaSamples = prep->width + pad[0]; in h265e_set_sps()
463 RK_S32 mb_w = (sps->m_picWidthInLumaSamples + sps->m_maxCUSize - 1) / sps->m_maxCUSize; in h265e_set_pps()
469 pps->m_nNumTileColumnsMinus1 = (sps->m_picWidthInLumaSamples - 1) / 1920 ; in h265e_set_pps()
471 if (sps->m_picWidthInLumaSamples > 8192) { in h265e_set_pps()
474 } else if (sps->m_picWidthInLumaSamples > 4096) { in h265e_set_pps()
H A Dh265e_slice.c360 RK_U32 pic_width_in_ctb = (sps->m_picWidthInLumaSamples + sps->m_maxCUSize - 1) / in h265e_code_slice_header()
881 tile.tile_end_x = sps->m_picWidthInLumaSamples - 1; in h265e_code_slice_skip_frame()
887 mb_wd = (sps->m_picWidthInLumaSamples + sps->m_maxCUSize - 1) / sps->m_maxCUSize; in h265e_code_slice_skip_frame()
891 tile.tile_end_x = sps->m_picWidthInLumaSamples - 1; in h265e_code_slice_skip_frame()
H A Dh265e_slice.h237 RK_U32 m_picWidthInLumaSamples; member
H A Dh265e_header_gen.c467 h265e_stream_write_ue_with_log(s, sps->m_picWidthInLumaSamples, "pic_width_in_luma_samples"); in h265e_sps_write()