OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 }; | 173 }; |
174 | 174 |
175 class BuiltinAudioDecoderFactory : public AudioDecoderFactory { | 175 class BuiltinAudioDecoderFactory : public AudioDecoderFactory { |
176 public: | 176 public: |
177 std::vector<AudioCodecSpec> GetSupportedDecoders() override { | 177 std::vector<AudioCodecSpec> GetSupportedDecoders() override { |
178 // Although this looks a bit strange, it means specs need only be | 178 // Although this looks a bit strange, it means specs need only be |
179 // initialized once, and that that initialization is thread-safe. | 179 // initialized once, and that that initialization is thread-safe. |
180 static std::vector<AudioCodecSpec> specs = [] { | 180 static std::vector<AudioCodecSpec> specs = [] { |
181 std::vector<AudioCodecSpec> specs; | 181 std::vector<AudioCodecSpec> specs; |
182 #ifdef WEBRTC_CODEC_OPUS | 182 #ifdef WEBRTC_CODEC_OPUS |
| 183 AudioCodecInfo opus_info{48000, 1, 64000, 6000, 510000}; |
| 184 opus_info.allow_comfort_noise = false; |
| 185 opus_info.supports_network_adaption = true; |
183 // clang-format off | 186 // clang-format off |
184 AudioCodecSpec opus({"opus", 48000, 2, { | 187 SdpAudioFormat opus_format({"opus", 48000, 2, { |
185 {"minptime", "10"}, | 188 {"minptime", "10"}, |
186 {"useinbandfec", "1"} | 189 {"useinbandfec", "1"} |
187 }}); | 190 }}); |
188 // clang-format on | 191 // clang-format on |
189 opus.allow_comfort_noise = false; | 192 specs.push_back({std::move(opus_format), opus_info}); |
190 opus.supports_network_adaption = true; | |
191 specs.push_back(opus); | |
192 #endif | 193 #endif |
193 #if (defined(WEBRTC_CODEC_ISAC) || defined(WEBRTC_CODEC_ISACFX)) | 194 #if (defined(WEBRTC_CODEC_ISAC) || defined(WEBRTC_CODEC_ISACFX)) |
194 specs.push_back(AudioCodecSpec({"isac", 16000, 1})); | 195 specs.push_back(AudioCodecSpec{{"isac", 16000, 1}, |
| 196 {16000, 1, 32000, 10000, 56000}}); |
195 #endif | 197 #endif |
196 #if (defined(WEBRTC_CODEC_ISAC)) | 198 #if (defined(WEBRTC_CODEC_ISAC)) |
197 specs.push_back(AudioCodecSpec({"isac", 32000, 1})); | 199 specs.push_back(AudioCodecSpec{{"isac", 32000, 1}, |
| 200 {32000, 1, 56000, 10000, 56000}}); |
198 #endif | 201 #endif |
199 #ifdef WEBRTC_CODEC_G722 | 202 #ifdef WEBRTC_CODEC_G722 |
200 specs.push_back(AudioCodecSpec({"G722", 8000, 1})); | 203 specs.push_back(AudioCodecSpec{{"G722", 8000, 1}, |
| 204 {16000, 1, 64000}}); |
201 #endif | 205 #endif |
202 #ifdef WEBRTC_CODEC_ILBC | 206 #ifdef WEBRTC_CODEC_ILBC |
203 specs.push_back(AudioCodecSpec({"iLBC", 8000, 1})); | 207 specs.push_back(AudioCodecSpec{{"iLBC", 8000, 1}, |
| 208 {8000, 1, 13300}}); |
204 #endif | 209 #endif |
205 specs.push_back(AudioCodecSpec({"PCMU", 8000, 1})); | 210 specs.push_back(AudioCodecSpec{{"PCMU", 8000, 1}, |
206 specs.push_back(AudioCodecSpec({"PCMA", 8000, 1})); | 211 {8000, 1, 64000}}); |
| 212 specs.push_back(AudioCodecSpec{{"PCMA", 8000, 1}, |
| 213 {8000, 1, 64000}}); |
207 return specs; | 214 return specs; |
208 }(); | 215 }(); |
209 return specs; | 216 return specs; |
210 } | 217 } |
211 | 218 |
212 bool IsSupportedDecoder(const SdpAudioFormat& format) override { | 219 bool IsSupportedDecoder(const SdpAudioFormat& format) override { |
213 for (const auto& dc : decoder_constructors) { | 220 for (const auto& dc : decoder_constructors) { |
214 if (STR_CASE_CMP(format.name.c_str(), dc.name) == 0) { | 221 if (STR_CASE_CMP(format.name.c_str(), dc.name) == 0) { |
215 return dc.constructor(format, nullptr); | 222 return dc.constructor(format, nullptr); |
216 } | 223 } |
(...skipping 24 matching lines...) Expand all Loading... |
241 | 248 |
242 } // namespace | 249 } // namespace |
243 | 250 |
244 rtc::scoped_refptr<AudioDecoderFactory> | 251 rtc::scoped_refptr<AudioDecoderFactory> |
245 CreateBuiltinAudioDecoderFactoryInternal() { | 252 CreateBuiltinAudioDecoderFactoryInternal() { |
246 return rtc::scoped_refptr<AudioDecoderFactory>( | 253 return rtc::scoped_refptr<AudioDecoderFactory>( |
247 new rtc::RefCountedObject<BuiltinAudioDecoderFactory>); | 254 new rtc::RefCountedObject<BuiltinAudioDecoderFactory>); |
248 } | 255 } |
249 | 256 |
250 } // namespace webrtc | 257 } // namespace webrtc |
OLD | NEW |