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

Side by Side Diff: media/audio/cras/audio_manager_cras.h

Issue 1275783003: Add a virtual beamforming audio device on ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_ 5 #ifndef MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_
6 #define MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_ 6 #define MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_
7 7
8 #include <cras_types.h> 8 #include <cras_types.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 private: 54 private:
55 // Called by MakeLinearOutputStream and MakeLowLatencyOutputStream. 55 // Called by MakeLinearOutputStream and MakeLowLatencyOutputStream.
56 AudioOutputStream* MakeOutputStream(const AudioParameters& params); 56 AudioOutputStream* MakeOutputStream(const AudioParameters& params);
57 57
58 // Called by MakeLinearInputStream and MakeLowLatencyInputStream. 58 // Called by MakeLinearInputStream and MakeLowLatencyInputStream.
59 AudioInputStream* MakeInputStream(const AudioParameters& params, 59 AudioInputStream* MakeInputStream(const AudioParameters& params,
60 const std::string& device_id); 60 const std::string& device_id);
61 61
62 bool has_keyboard_mic_; 62 bool has_keyboard_mic_;
63 63
64 // Holds the name and ID of a virtual beamforming device if the machine
65 // indicates it has a mic array by providing a mic positions field.
66 const AudioDeviceName beamforming_device_name_;
67 // Stores the mic positions field from the device.
68 const std::string mic_positions_;
69
64 DISALLOW_COPY_AND_ASSIGN(AudioManagerCras); 70 DISALLOW_COPY_AND_ASSIGN(AudioManagerCras);
65 }; 71 };
66 72
67 } // namespace media 73 } // namespace media
68 74
69 #endif // MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_ 75 #endif // MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698