Searched refs:NotContain (Results 1 – 2 of 2) sorted by relevance
1086 if (NotContain(AUDIO_SUPPORTED_SAMPLING_RATES, config.streamInfo.samplingRate)) { in CheckStreamInfoFormat()1091 if (NotContain(AUDIO_SUPPORTED_FORMATS, config.streamInfo.format)) { in CheckStreamInfoFormat()1096 if (NotContain(AUDIO_SUPPORTED_ENCODING_TYPES, config.streamInfo.encoding)) { in CheckStreamInfoFormat()1102 if (NotContain(RENDERER_SUPPORTED_CHANNELLAYOUTS, config.streamInfo.channelLayout)) { in CheckStreamInfoFormat()1107 if (config.audioMode == AUDIO_MODE_PLAYBACK && NotContain(RENDERER_SUPPORTED_CHANNELS, in CheckStreamInfoFormat()1113 …if (config.audioMode == AUDIO_MODE_RECORD && NotContain(CAPTURER_SUPPORTED_CHANNELS, config.stream… in CheckStreamInfoFormat()1123 if (NotContain(AUDIO_SUPPORTED_STREAM_USAGES, config.rendererInfo.streamUsage)) { in CheckRendererFormat()1132 if (NotContain(AUDIO_SUPPORTED_SOURCE_TYPES, config.capturerInfo.sourceType)) { in CheckRecorderFormat()1136 …if (config.capturerInfo.capturerFlags != AUDIO_FLAG_NORMAL && NotContain(AUDIO_FAST_STREAM_SUPPORT… in CheckRecorderFormat()
193 inline bool NotContain(const std::vector<V> &array, const V &value) in NotContain() function