Lines Matching refs:soc_info
916 const MppSocInfo *soc_info; member in MppSocService
927 const MppSocInfo *get_soc_info() { return soc_info; }; in get_soc_info()
933 : soc_info(NULL), in MppSocService()
941 soc_info = check_soc_info(soc_name); in MppSocService()
942 if (NULL == soc_info) { in MppSocService()
944 soc_info = &mpp_soc_default; in MppSocService()
947 for (i = 0; i < MPP_ARRAY_ELEMS(soc_info->dec_caps); i++) { in MppSocService()
948 const MppDecHwCap *cap = soc_info->dec_caps[i]; in MppSocService()
956 for (i = 0; i < MPP_ARRAY_ELEMS(soc_info->enc_caps); i++) { in MppSocService()
957 const MppEncHwCap *cap = soc_info->enc_caps[i]; in MppSocService()
967 mpp_dbg_platform("vcodec type: %08x\n", soc_info->vcodec_type); in MppSocService()
968 mpp_assert(soc_info->vcodec_type == vcodec_type); in MppSocService()
984 static const MppSocInfo *soc_info = NULL; in mpp_get_soc_info() local
986 if (soc_info) in mpp_get_soc_info()
987 return soc_info; in mpp_get_soc_info()
989 soc_info = MppSocService::get()->get_soc_info(); in mpp_get_soc_info()
990 return soc_info; in mpp_get_soc_info()