François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Mikhail Naganov | fa69dc6 | 2018-07-27 09:58:58 -0700 | [diff] [blame] | 17 | #include <set> |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 18 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 19 | #define LOG_TAG "AudioProfile" |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 20 | //#define LOG_NDEBUG 0 |
| 21 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 22 | #include <android-base/stringprintf.h> |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 23 | #include <media/AudioContainers.h> |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 24 | #include <media/AudioProfile.h> |
| 25 | #include <media/TypeConverter.h> |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 26 | #include <utils/Errors.h> |
| 27 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 28 | namespace android { |
| 29 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 30 | bool operator == (const AudioProfile &left, const AudioProfile &right) |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 31 | { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 32 | return (left.getFormat() == right.getFormat()) && |
| 33 | (left.getChannels() == right.getChannels()) && |
| 34 | (left.getSampleRates() == right.getSampleRates()); |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 35 | } |
| 36 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 37 | // static |
| 38 | sp<AudioProfile> AudioProfile::createFullDynamic(audio_format_t dynamicFormat) |
Mikhail Naganov | 21b4336 | 2018-06-04 10:37:09 -0700 | [diff] [blame] | 39 | { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 40 | AudioProfile* dynamicProfile = new AudioProfile(dynamicFormat, |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 41 | ChannelMaskSet(), SampleRateSet()); |
Mikhail Naganov | 21b4336 | 2018-06-04 10:37:09 -0700 | [diff] [blame] | 42 | dynamicProfile->setDynamicFormat(true); |
| 43 | dynamicProfile->setDynamicChannels(true); |
| 44 | dynamicProfile->setDynamicRate(true); |
| 45 | return dynamicProfile; |
| 46 | } |
| 47 | |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 48 | AudioProfile::AudioProfile(audio_format_t format, |
| 49 | audio_channel_mask_t channelMasks, |
| 50 | uint32_t samplingRate) : |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 51 | mName(""), |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 52 | mFormat(format) |
| 53 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 54 | mChannelMasks.insert(channelMasks); |
| 55 | mSamplingRates.insert(samplingRate); |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | AudioProfile::AudioProfile(audio_format_t format, |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 59 | const ChannelMaskSet &channelMasks, |
| 60 | const SampleRateSet &samplingRateCollection) : |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 61 | mName(""), |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 62 | mFormat(format), |
| 63 | mChannelMasks(channelMasks), |
| 64 | mSamplingRates(samplingRateCollection) {} |
| 65 | |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 66 | void AudioProfile::setChannels(const ChannelMaskSet &channelMasks) |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 67 | { |
| 68 | if (mIsDynamicChannels) { |
| 69 | mChannelMasks = channelMasks; |
| 70 | } |
| 71 | } |
| 72 | |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 73 | void AudioProfile::setSampleRates(const SampleRateSet &sampleRates) |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 74 | { |
| 75 | if (mIsDynamicRate) { |
| 76 | mSamplingRates = sampleRates; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | void AudioProfile::clear() |
| 81 | { |
| 82 | if (mIsDynamicChannels) { |
| 83 | mChannelMasks.clear(); |
| 84 | } |
| 85 | if (mIsDynamicRate) { |
| 86 | mSamplingRates.clear(); |
| 87 | } |
| 88 | } |
| 89 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 90 | void AudioProfile::dump(std::string *dst, int spaces) const |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 91 | { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 92 | dst->append(base::StringPrintf("%s%s%s\n", mIsDynamicFormat ? "[dynamic format]" : "", |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 93 | mIsDynamicChannels ? "[dynamic channels]" : "", |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 94 | mIsDynamicRate ? "[dynamic rates]" : "")); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 95 | if (mName.length() != 0) { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 96 | dst->append(base::StringPrintf("%*s- name: %s\n", spaces, "", mName.c_str())); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 97 | } |
| 98 | std::string formatLiteral; |
| 99 | if (FormatConverter::toString(mFormat, formatLiteral)) { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 100 | dst->append(base::StringPrintf("%*s- format: %s\n", spaces, "", formatLiteral.c_str())); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 101 | } |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 102 | if (!mSamplingRates.empty()) { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 103 | dst->append(base::StringPrintf("%*s- sampling rates:", spaces, "")); |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 104 | for (auto it = mSamplingRates.begin(); it != mSamplingRates.end();) { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 105 | dst->append(base::StringPrintf("%d", *it)); |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 106 | dst->append(++it == mSamplingRates.end() ? "" : ", "); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 107 | } |
Andy Hung | bb54e20 | 2018-10-05 11:42:02 -0700 | [diff] [blame] | 108 | dst->append("\n"); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 109 | } |
| 110 | |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 111 | if (!mChannelMasks.empty()) { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 112 | dst->append(base::StringPrintf("%*s- channel masks:", spaces, "")); |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 113 | for (auto it = mChannelMasks.begin(); it != mChannelMasks.end();) { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 114 | dst->append(base::StringPrintf("0x%04x", *it)); |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 115 | dst->append(++it == mChannelMasks.end() ? "" : ", "); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 116 | } |
Andy Hung | bb54e20 | 2018-10-05 11:42:02 -0700 | [diff] [blame] | 117 | dst->append("\n"); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 118 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 119 | } |
| 120 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 121 | ssize_t AudioProfileVectorBase::add(const sp<AudioProfile> &profile) |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 122 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 123 | ssize_t index = size(); |
| 124 | push_back(profile); |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 125 | return index; |
| 126 | } |
| 127 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 128 | void AudioProfileVectorBase::clearProfiles() |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 129 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 130 | for (auto it = begin(); it != end();) { |
| 131 | if ((*it)->isDynamicFormat() && (*it)->hasValidFormat()) { |
| 132 | it = erase(it); |
| 133 | } else { |
| 134 | (*it)->clear(); |
| 135 | ++it; |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 136 | } |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 140 | sp<AudioProfile> AudioProfileVectorBase::getFirstValidProfile() const |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 141 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 142 | for (const auto &profile : *this) { |
| 143 | if (profile->isValid()) { |
| 144 | return profile; |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 145 | } |
| 146 | } |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 147 | return nullptr; |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 148 | } |
| 149 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 150 | sp<AudioProfile> AudioProfileVectorBase::getFirstValidProfileFor(audio_format_t format) const |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 151 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 152 | for (const auto &profile : *this) { |
| 153 | if (profile->isValid() && profile->getFormat() == format) { |
| 154 | return profile; |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 155 | } |
| 156 | } |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 157 | return nullptr; |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 158 | } |
| 159 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 160 | FormatVector AudioProfileVectorBase::getSupportedFormats() const |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 161 | { |
| 162 | FormatVector supportedFormats; |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 163 | for (const auto &profile : *this) { |
| 164 | if (profile->hasValidFormat()) { |
| 165 | supportedFormats.push_back(profile->getFormat()); |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 166 | } |
| 167 | } |
| 168 | return supportedFormats; |
| 169 | } |
| 170 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 171 | bool AudioProfileVectorBase::hasDynamicChannelsFor(audio_format_t format) const |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 172 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 173 | for (const auto &profile : *this) { |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 174 | if (profile->getFormat() == format && profile->isDynamicChannels()) { |
| 175 | return true; |
| 176 | } |
| 177 | } |
| 178 | return false; |
| 179 | } |
| 180 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 181 | bool AudioProfileVectorBase::hasDynamicFormat() const |
| 182 | { |
| 183 | for (const auto &profile : *this) { |
| 184 | if (profile->isDynamicFormat()) { |
| 185 | return true; |
| 186 | } |
| 187 | } |
| 188 | return false; |
| 189 | } |
| 190 | |
| 191 | bool AudioProfileVectorBase::hasDynamicProfile() const |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 192 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 193 | for (const auto &profile : *this) { |
| 194 | if (profile->isDynamic()) { |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 195 | return true; |
| 196 | } |
| 197 | } |
| 198 | return false; |
| 199 | } |
| 200 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 201 | bool AudioProfileVectorBase::hasDynamicRateFor(audio_format_t format) const |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 202 | { |
jiabin | 4562b3b | 2019-07-29 10:13:34 -0700 | [diff] [blame] | 203 | for (const auto &profile : *this) { |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 204 | if (profile->getFormat() == format && profile->isDynamicRate()) { |
| 205 | return true; |
| 206 | } |
| 207 | } |
| 208 | return false; |
| 209 | } |
| 210 | |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 211 | void AudioProfileVectorBase::dump(std::string *dst, int spaces) const |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 212 | { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 213 | dst->append(base::StringPrintf("%*s- Profiles:\n", spaces, "")); |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 214 | for (size_t i = 0; i < size(); i++) { |
jiabin | b677643 | 2019-08-19 10:10:17 -0700 | [diff] [blame] | 215 | dst->append(base::StringPrintf("%*sProfile %zu:", spaces + 4, "", i)); |
| 216 | std::string profileStr; |
| 217 | at(i)->dump(&profileStr, spaces + 8); |
| 218 | dst->append(profileStr); |
Mikhail Naganov | e50f628 | 2018-07-26 16:20:43 -0700 | [diff] [blame] | 219 | } |
| 220 | } |
| 221 | |
Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 222 | } // namespace android |