Chromium Code Reviews

Unified Diff: remoting/proto/audio.proto

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/proto/audio.proto
diff --git a/remoting/proto/audio.proto b/remoting/proto/audio.proto
index eabfcfeb55b31b949a3a070ac6161709ec921f5b..00199414c577bd53d7a191ad8a1b704e938504ec 100644
--- a/remoting/proto/audio.proto
+++ b/remoting/proto/audio.proto
@@ -19,7 +19,7 @@ message AudioPacket {
enum Encoding {
ENCODING_INVALID = -1;
ENCODING_RAW = 0; // Uncompressed encoding
- ENCODING_OGG = 1;
+ ENCODING_SPEEX = 1;
Sergey Ulanov 2012/08/10 20:41:37 Please keep OGG and rename it to ENCODING_VORBIS
kxing 2012/08/13 21:39:45 Done.
}
optional Encoding encoding = 3 [default = ENCODING_INVALID];

Powered by Google App Engine