Lines Matching refs:prep
119 MppEncPrepCfg *prep = &ctx->cfg->prep; in h265e_set_vps() local
121 RK_U32 maxlumas = prep->width * prep->height; in h265e_set_vps()
157 if (prep->format == MPP_FMT_YUV400) { in h265e_set_vps()
184 MppEncPrepCfg *prep = &ctx->cfg->prep; in h265e_set_sps() local
188 MppFrameFormat fmt = prep->format; in h265e_set_sps()
229 if ((prep->width % minCUDepth) != 0) { in h265e_set_sps()
231 RK_U32 rem = prep->width % minCUDepth; in h265e_set_sps()
240 if ((prep->height % minCUDepth) != 0) { in h265e_set_sps()
242 RK_U32 rem = prep->height % minCUDepth; in h265e_set_sps()
257 sps->m_picWidthInLumaSamples = prep->width + pad[0]; in h265e_set_sps()
258 sps->m_picHeightInLumaSamples = prep->height + pad[1]; in h265e_set_sps()
348 if (prep->range == MPP_FRAME_RANGE_JPEG) { in h265e_set_sps()
353 if ((prep->colorprim <= MPP_FRAME_PRI_JEDEC_P22 && in h265e_set_sps()
354 prep->colorprim != MPP_FRAME_PRI_UNSPECIFIED) || in h265e_set_sps()
355 (prep->colortrc <= MPP_FRAME_TRC_ARIB_STD_B67 && in h265e_set_sps()
356 prep->colortrc != MPP_FRAME_TRC_UNSPECIFIED) || in h265e_set_sps()
357 (prep->color <= MPP_FRAME_SPC_ICTCP && in h265e_set_sps()
358 prep->color != MPP_FRAME_SPC_UNSPECIFIED)) { in h265e_set_sps()
361 sps->vui.m_colourPrimaries = prep->colorprim; in h265e_set_sps()
362 sps->vui.m_transferCharacteristics = prep->colortrc; in h265e_set_sps()
363 sps->vui.m_matrixCoefficients = prep->color; in h265e_set_sps()