Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioclient/
DAudioProductStrategy.cpp64 audio_attributes_t clientAttritubes) in attributesMatchesScore() argument
68 clientAttritubes.flags = static_cast<audio_flags_mask_t>( in attributesMatchesScore()
69 clientAttritubes.flags & AUDIO_FLAGS_AFFECT_STRATEGY_SELECTION); in attributesMatchesScore()
70 if (refAttributes == clientAttritubes) { in attributesMatchesScore()
83 } else if (clientAttritubes.usage == refAttributes.usage) { in attributesMatchesScore()
90 } else if (clientAttritubes.content_type == refAttributes.content_type) { in attributesMatchesScore()
97 } else if (std::strcmp(clientAttritubes.tags, refAttributes.tags) == 0) { in attributesMatchesScore()
104 } else if ((clientAttritubes.flags != AUDIO_FLAG_NONE) in attributesMatchesScore()
105 && ((clientAttritubes.flags & refAttributes.flags) == refAttributes.flags)) { in attributesMatchesScore()
/frameworks/av/media/libaudioclient/include/media/
DAudioProductStrategy.h62 audio_attributes_t clientAttritubes);
65 audio_attributes_t clientAttritubes) { in attributesMatches() argument
66 return attributesMatchesScore(refAttributes, clientAttritubes) > 0; in attributesMatches()