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

Unified Diff: webrtc/api/audio_codecs/ilbc/audio_decoder_ilbc.cc

Issue 2998263002: Reimplement the builtin audio codec factories using the new stuff in api/ (Closed)
Patch Set: use upper-case Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/audio_codecs/g722/audio_encoder_g722.cc ('k') | webrtc/api/audio_codecs/opus/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/audio_codecs/ilbc/audio_decoder_ilbc.cc
diff --git a/webrtc/api/audio_codecs/ilbc/audio_decoder_ilbc.cc b/webrtc/api/audio_codecs/ilbc/audio_decoder_ilbc.cc
index b3053ef471a6df87b3e0e8ce80fac28db693b7a6..dc1775189eb425a2cd64c43ec18d022cb0c19b9a 100644
--- a/webrtc/api/audio_codecs/ilbc/audio_decoder_ilbc.cc
+++ b/webrtc/api/audio_codecs/ilbc/audio_decoder_ilbc.cc
@@ -21,7 +21,7 @@ namespace webrtc {
rtc::Optional<AudioDecoderIlbc::Config> AudioDecoderIlbc::SdpToConfig(
const SdpAudioFormat& format) {
- return STR_CASE_CMP(format.name.c_str(), "ilbc") == 0 &&
+ return STR_CASE_CMP(format.name.c_str(), "ILBC") == 0 &&
format.clockrate_hz == 8000 && format.num_channels == 1
? rtc::Optional<Config>(Config())
: rtc::Optional<Config>();
« no previous file with comments | « webrtc/api/audio_codecs/g722/audio_encoder_g722.cc ('k') | webrtc/api/audio_codecs/opus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698