Home
last modified time | relevance | path

Searched refs:max_format (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/talk/media/devices/
Dfakedevicemanager.h91 const VideoFormat& max_format) { in SetVideoCaptureDeviceMaxFormat() argument
92 max_formats_[usb_id] = max_format; in SetVideoCaptureDeviceMaxFormat()
95 const VideoFormat& max_format) const { in IsMaxFormatForDevice() argument
99 max_format == found->second : in IsMaxFormatForDevice()
Ddevicemanager.h93 const VideoFormat& max_format) = 0;
160 const VideoFormat& max_format);
Ddevicemanager.cc183 const VideoFormat& max_format) { in SetVideoCaptureDeviceMaxFormat() argument
184 max_formats_[usb_id] = max_format; in SetVideoCaptureDeviceMaxFormat()
/external/autotest/client/site_tests/camera_V4L2/src/
Dmedia_v4l2_test.cc150 SupportedFormat max_format; in GetMaximumResolution() local
151 memset(&max_format, 0, sizeof(max_format)); in GetMaximumResolution()
153 if (format.width >= max_format.width) { in GetMaximumResolution()
154 max_format.width = format.width; in GetMaximumResolution()
156 if (format.height >= max_format.height) { in GetMaximumResolution()
157 max_format.height = format.height; in GetMaximumResolution()
160 return max_format; in GetMaximumResolution()
/external/webrtc/talk/media/base/
Dvideocapturer.cc301 void VideoCapturer::ConstrainSupportedFormats(const VideoFormat& max_format) { in ConstrainSupportedFormats() argument
302 max_format_.reset(new VideoFormat(max_format)); in ConstrainSupportedFormats()
303 LOG(LS_VERBOSE) << " ConstrainSupportedFormats " << max_format.ToString(); in ConstrainSupportedFormats()
Dvideocapturer.h233 void ConstrainSupportedFormats(const VideoFormat& max_format);