Chromium Code Reviews

Unified Diff: remoting/protocol/session_config.cc

Issue 10831246: Speex encoding/decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: remoting/protocol/session_config.cc
diff --git a/remoting/protocol/session_config.cc b/remoting/protocol/session_config.cc
index 139d05b5af379946966e98ef9a436e70783e2252..dd89f023ea2c71001c6f92b00b49bc387bef0a28 100644
--- a/remoting/protocol/session_config.cc
+++ b/remoting/protocol/session_config.cc
@@ -179,6 +179,10 @@ scoped_ptr<CandidateSessionConfig> CandidateSessionConfig::CreateDefault() {
result->mutable_audio_configs()->push_back(
ChannelConfig(ChannelConfig::TRANSPORT_STREAM,
kDefaultStreamVersion,
+ ChannelConfig::CODEC_SPEEX));
+ result->mutable_audio_configs()->push_back(
+ ChannelConfig(ChannelConfig::TRANSPORT_STREAM,
+ kDefaultStreamVersion,
ChannelConfig::CODEC_VERBATIM));
#endif // defined(ENABLE_REMOTING_AUDIO)
result->mutable_audio_configs()->push_back(

Powered by Google App Engine