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

Unified Diff: remoting/proto/audio.proto

Issue 2903153004: [Chromoting] Implement down mixing in AudioPump (Closed)
Patch Set: Resolve review comments Created 3 years, 7 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
« no previous file with comments | « remoting/host/audio_capturer_win.cc ('k') | remoting/protocol/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/proto/audio.proto
diff --git a/remoting/proto/audio.proto b/remoting/proto/audio.proto
index f64daaed748a1492f3fc7999a017e68a4001006c..c522db55fbf5fd567160441968b5e3d47dbe36e0 100644
--- a/remoting/proto/audio.proto
+++ b/remoting/proto/audio.proto
@@ -47,6 +47,12 @@ message AudioPacket {
CHANNELS_INVALID = -1;
CHANNELS_MONO = 1;
CHANNELS_STEREO = 2;
+ CHANNELS_SURROUND = 3;
+ CHANNELS_QUAD = 4;
Sergey Ulanov 2017/05/31 00:44:43 There are several different speaker layouts for 3
Hzj_jie 2017/05/31 02:49:28 Yes, I simply choose the most common used configur
Sergey Ulanov 2017/05/31 18:37:23 This may work (though it's not ideal because it gi
Hzj_jie 2017/05/31 19:23:19 I will add comments to both AudioCapturerWin and A
+ CHANNELS_4_1 = 5;
+ CHANNELS_5_1 = 6;
+ CHANNELS_6_1 = 7;
+ CHANNELS_7_1 = 8;
}
optional Channels channels = 6 [default = CHANNELS_INVALID];
« no previous file with comments | « remoting/host/audio_capturer_win.cc ('k') | remoting/protocol/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698