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

Issue 460113003: Add ability to active multiple devices via the audio API. (Closed)

Created:
6 years, 4 months ago by rkc
Modified:
6 years, 3 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, stevenjb+watch_chromium.org, oshima+watch_chromium.org, extensions-reviews_chromium.org
Project:
chromium
Visibility:
Public.

Description

Add ability to active multiple devices via the audio API. Add the ability to the audio API to activate more than one audio device at a time. This is currently accomplished via a hack and when getting device info via audio.getInfo, only one device will show up as active. This will allow us to active multiple microphones and multiple speakers though. I've also made couple of changes to OWNERS files so we don't need to keep chasing rubberstamps for audio changes. Reviews requested, jennyz@,hychao@ - overall review zelidrag@ - OWNERS review for chromeos/dbus asargent@ - OWNERS review for c/b/e/api/audio R=asargent@chromium.org, hychao@chromium.org, jennyz@chromium.org, zelidrag@chromium.org BUG=397664

Patch Set 1 #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+76 lines, --1 lines) Patch
A + chrome/browser/extensions/api/audio/OWNERS View 0 chunks +-1 lines, --1 lines 0 comments Download
M chrome/browser/extensions/api/audio/audio_service_chromeos.cc View 3 chunks +20 lines, -0 lines 3 comments Download
M chromeos/dbus/OWNERS View 1 chunk +3 lines, -0 lines 0 comments Download
M chromeos/dbus/cras_audio_client.h View 1 chunk +10 lines, -0 lines 0 comments Download
M chromeos/dbus/cras_audio_client.cc View 1 chunk +20 lines, -0 lines 0 comments Download
M chromeos/dbus/cras_audio_client_stub_impl.h View 1 chunk +2 lines, -0 lines 0 comments Download
M chromeos/dbus/cras_audio_client_stub_impl.cc View 1 chunk +22 lines, -0 lines 0 comments Download

Messages

Total messages: 4 (0 generated)
rkc
6 years, 4 months ago (2014-08-12 03:15:22 UTC) #1
hychao
https://codereview.chromium.org/460113003/diff/1/chrome/browser/extensions/api/audio/audio_service_chromeos.cc File chrome/browser/extensions/api/audio/audio_service_chromeos.cc (right): https://codereview.chromium.org/460113003/diff/1/chrome/browser/extensions/api/audio/audio_service_chromeos.cc#newcode155 chrome/browser/extensions/api/audio/audio_service_chromeos.cc:155: active_output_node_ids.push_back(device.id); The push_back calls should be pulled out from ...
6 years, 4 months ago (2014-08-12 10:47:40 UTC) #2
asargent_no_longer_on_chrome
c/b/e/api/audio rubber stamp lgtm
6 years, 4 months ago (2014-08-12 18:14:02 UTC) #3
jennyz
6 years, 4 months ago (2014-08-12 18:37:55 UTC) #4
https://codereview.chromium.org/460113003/diff/1/chrome/browser/extensions/ap...
File chrome/browser/extensions/api/audio/audio_service_chromeos.cc (right):

https://codereview.chromium.org/460113003/diff/1/chrome/browser/extensions/ap...
chrome/browser/extensions/api/audio/audio_service_chromeos.cc:151:
active_input_node_ids.push_back(device.id);
Yes, hychao's comment later is right, this line should be out of the
!input_device_set if block, otherwise active_input_node_ids and
active_output_ids will only contain the first input/output node from
|device_list|. Also, for additional active input/output nodes list, it doesn't
need to include the one that is already set active by SetActiveOutput/InputNode,
right? And you also need to remove the previous active input/output nodes,
otherwise, they may stay active.

Powered by Google App Engine
This is Rietveld 408576698