Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/sfplugin/
DCCodecConfig.cpp1198 mVendorParams.insert_or_assign(key, desc); in initialize()
1408 auto it = mVendorParams.find(key); in getFormatForDomain()
1409 if (it == mVendorParams.end()) { in getFormatForDomain()
2159 for (const auto &[path, desc] : mVendorParams) { in subscribeToAllVendorParams()
2171 for (const auto &[key, desc] : mVendorParams) { in querySupportedParameters()
2215 auto it = mVendorParams.find(name); in subscribeToVendorConfigUpdate()
2216 if (it == mVendorParams.end()) { in subscribeToVendorConfigUpdate()
2230 auto it = mVendorParams.find(name); in unsubscribeFromVendorConfigUpdate()
2231 if (it == mVendorParams.end()) { in unsubscribeFromVendorConfigUpdate()
DCCodecConfig.h143 std::map<std::string, std::shared_ptr<C2ParamDescriptor>> mVendorParams; member