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

Unified Diff: webrtc/api/audio_codecs/g722/audio_encoder_g722.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
Index: webrtc/api/audio_codecs/g722/audio_encoder_g722.cc
diff --git a/webrtc/api/audio_codecs/g722/audio_encoder_g722.cc b/webrtc/api/audio_codecs/g722/audio_encoder_g722.cc
index b3e406304d123c8f03e29c96499ab3e91bec69a8..09b3faf745b79164f3c49d9b6ad61d63d00e7aab 100644
--- a/webrtc/api/audio_codecs/g722/audio_encoder_g722.cc
+++ b/webrtc/api/audio_codecs/g722/audio_encoder_g722.cc
@@ -26,7 +26,7 @@ rtc::Optional<AudioEncoderG722Config> AudioEncoderG722::SdpToConfig(
void AudioEncoderG722::AppendSupportedEncoders(
std::vector<AudioCodecSpec>* specs) {
- const SdpAudioFormat fmt = {"g722", 8000, 1};
+ const SdpAudioFormat fmt = {"G722", 8000, 1};
const AudioCodecInfo info = QueryAudioEncoder(*SdpToConfig(fmt));
specs->push_back({fmt, info});
}
« no previous file with comments | « webrtc/api/audio_codecs/g722/audio_decoder_g722.cc ('k') | webrtc/api/audio_codecs/ilbc/audio_decoder_ilbc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698