diff options
author | kxing@chromium.org <kxing@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-23 16:39:51 +0000 |
---|---|---|
committer | kxing@chromium.org <kxing@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-23 16:39:51 +0000 |
commit | 6459021e19902e8c054cca2aa1c966385f298323 (patch) | |
tree | 97015e35e614140b36b309ec2efd1b3a621ff6df /remoting/protocol/content_description.cc | |
parent | 4bc82277988f6dbd5f149dd05ec8705b68b90efe (diff) | |
download | chromium_src-6459021e19902e8c054cca2aa1c966385f298323.zip chromium_src-6459021e19902e8c054cca2aa1c966385f298323.tar.gz chromium_src-6459021e19902e8c054cca2aa1c966385f298323.tar.bz2 |
Removed Vorbis from the audio codecs and replaced it with Opus.
Review URL: https://chromiumcodereview.appspot.com/10832418
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153008 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/content_description.cc')
-rw-r--r-- | remoting/protocol/content_description.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/protocol/content_description.cc b/remoting/protocol/content_description.cc index 61c3ff8..a9995d6d 100644 --- a/remoting/protocol/content_description.cc +++ b/remoting/protocol/content_description.cc @@ -48,7 +48,7 @@ const NameMapElement<ChannelConfig::Codec> kCodecs[] = { { ChannelConfig::CODEC_VERBATIM, "verbatim" }, { ChannelConfig::CODEC_VP8, "vp8" }, { ChannelConfig::CODEC_ZIP, "zip" }, - { ChannelConfig::CODEC_VORBIS, "vorbis" }, + { ChannelConfig::CODEC_OPUS, "opus" }, { ChannelConfig::CODEC_SPEEX, "speex" }, }; @@ -134,7 +134,7 @@ ContentDescription* ContentDescription::Copy() const { // <control transport="stream" version="1" /> // <event transport="datagram" version="1" /> // <video transport="stream" codec="vp8" version="1" /> -// <audio transport="stream" codec="vorbis" version="1" /> +// <audio transport="stream" codec="opus" version="1" /> // <authentication> // Message created by Authenticator implementation. // </authentication> |