Home | History | Annotate | Download | only in phone

Lines Matching refs:Device

44 // Used to represent an audio or video capture or render device.
45 struct Device {
46 Device() {}
47 Device(const std::string& first, int second)
51 Device(const std::string& first, const std::string& second)
73 // Device enumeration
74 virtual bool GetAudioInputDevices(std::vector<Device>* devices);
75 virtual bool GetAudioOutputDevices(std::vector<Device>* devices);
77 bool GetAudioInputDevice(const std::string& name, Device* out);
78 bool GetAudioOutputDevice(const std::string& name, Device* out);
80 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
81 bool GetVideoCaptureDevice(const std::string& name, Device* out);
91 Device* out);
92 virtual bool GetDefaultVideoCaptureDevice(Device* device);
95 bool GetAudioDevicesByPlatform(bool input, std::vector<Device>* devs);