Home | History | Annotate | Download | only in devices

Lines Matching refs:device

85   // Determines if the given device is actually a video file, to be captured
87 static bool IsFileVideoCapturerDevice(const Device& device) {
88 return rtc::starts_with(device.id.c_str(), kVideoFileDevicePrefix);
91 // Creates a fake device for the given filename.
92 static Device CreateFileVideoCapturerDevice(const std::string& filename) {
95 return Device(filename, id.str());
113 // Initializes the capturer with the given device. This should only be used
114 // if IsFileVideoCapturerDevice returned true for the given device.
115 bool Init(const Device& device);