Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc

Issue 2695243005: Injectable audio encoders: BuiltinAudioEncoderFactory (Closed)
Patch Set: Cleaned up parameter parsing in AudioCodecOpus Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 AudioFormatInfo opus_info{48000, 1, 64000, 6000, 510000};
183 // clang-format off 184 // clang-format off
184 AudioCodecSpec opus({"opus", 48000, 2, { 185 SdpAudioFormat opus_format({"opus", 48000, 2, {
185 {"minptime", "10"}, 186 {"minptime", "10"},
186 {"useinbandfec", "1"} 187 {"useinbandfec", "1"}
187 }}); 188 }});
188 // clang-format on 189 // clang-format on
kwiberg-webrtc 2017/03/15 13:33:17 Why change the formatting?
ossu 2017/03/16 18:03:57 I have no idea. I must have reindented it without
189 opus.allow_comfort_noise = false; 190 opus_info.allow_comfort_noise = false;
190 opus.supports_network_adaption = true; 191 opus_info.supports_network_adaption = true;
kwiberg-webrtc 2017/03/15 13:33:17 Move these two to just after line 183?
ossu 2017/03/16 18:03:57 Agreed!
191 specs.push_back(opus); 192 specs.push_back({opus_format, opus_info});
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 }
217 } 224 }
218 return false; 225 return false;
(...skipping 22 matching lines...) Expand all
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698