Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/sfplugin/
DCCodecConfig.cpp1166 mVendorParams.insert_or_assign(key, desc); in initialize()
1376 auto it = mVendorParams.find(key); in getFormatForDomain()
1377 if (it == mVendorParams.end()) { in getFormatForDomain()
2033 for (const auto &[path, desc] : mVendorParams) { in subscribeToAllVendorParams()
2045 for (const auto &[key, desc] : mVendorParams) { in querySupportedParameters()
2089 auto it = mVendorParams.find(name); in subscribeToVendorConfigUpdate()
2090 if (it == mVendorParams.end()) { in subscribeToVendorConfigUpdate()
2104 auto it = mVendorParams.find(name); in unsubscribeFromVendorConfigUpdate()
2105 if (it == mVendorParams.end()) { in unsubscribeFromVendorConfigUpdate()
DCCodecConfig.h143 std::map<std::string, std::shared_ptr<C2ParamDescriptor>> mVendorParams; member