Chromium Code Reviews| 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; |
|
Wez
2012/08/21 01:14:13
nit: Remove VORBIS since we're unlikely to get aro
Sergey Ulanov
2012/08/21 01:19:44
Or maybe just replace it with OPUS?
kxing
2012/08/21 16:56:11
Sounds good. This CL's getting huge, so I'll do in
kxing
2012/08/21 16:56:11
Sounds good. This CL's getting huge, so I'll do in
|
| + ENCODING_SPEEX = 2; |
| } |
| optional Encoding encoding = 3 [default = ENCODING_INVALID]; |