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

Unified Diff: remoting/proto/audio.proto

Issue 10831246: Speex encoding/decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: spx_int16_t -> int16 Created 8 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: remoting/proto/audio.proto
diff --git a/remoting/proto/audio.proto b/remoting/proto/audio.proto
index eabfcfeb55b31b949a3a070ac6161709ec921f5b..23177e90cff143534f3d74f2a7229d9535a7093d 100644
--- a/remoting/proto/audio.proto
+++ b/remoting/proto/audio.proto
@@ -19,7 +19,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
This is Rietveld 408576698