Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/utils/
H A Dffmpeg_utils.cpp170 std::map<VideoH264Profile, int32_t> g_H264ProfileMap = { variable
479 auto iter = std::find_if(g_H264ProfileMap.begin(), g_H264ProfileMap.end(), in ConvH264ProfileFromFfmpeg()
483 return (iter == g_H264ProfileMap.end()) ? VideoH264Profile::UNKNOWN : iter->first; in ConvH264ProfileFromFfmpeg()
488 auto iter = std::find_if(g_H264ProfileMap.begin(), g_H264ProfileMap.end(), in ConvH264ProfileToFfmpeg()
492 return (iter == g_H264ProfileMap.end()) ? FF_PROFILE_UNKNOWN : iter->second; in ConvH264ProfileToFfmpeg()