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: Addressed comments 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 d23071cbdf3f82c0e009eb50f6da5cd442b60836..fe69e0f112314248953454be911d81ad4d67f432 100644
--- a/remoting/proto/audio.proto
+++ b/remoting/proto/audio.proto
@@ -22,7 +22,8 @@ message AudioPacket {
enum Encoding {
ENCODING_INVALID = -1;
ENCODING_RAW = 0; // Uncompressed encoding
- ENCODING_OGG = 1;
+ ENCODING_VORBIS = 1;
+ ENCODING_SPEEX = 2;
}
optional Encoding encoding = 3 [default = ENCODING_INVALID];

Powered by Google App Engine