Searched refs:best_format (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dremotevideocapturer.cc76 const cricket::VideoFormat& desired, cricket::VideoFormat* best_format) {
77 if (!best_format) {
83 best_format->width = desired.width;
84 best_format->height = desired.height;
85 best_format->fourcc = cricket::FOURCC_I420;
86 best_format->interval = desired.interval;
75 GetBestCaptureFormat( const cricket::VideoFormat& desired, cricket::VideoFormat* best_format) argument
H A Dremotevideocapturer.h56 cricket::VideoFormat* best_format) OVERRIDE;
H A Dremotevideocapturer_unittest.cc119 VideoFormat best_format; local
120 EXPECT_TRUE(capturer_.GetBestCaptureFormat(desired, &best_format));
121 EXPECT_EQ(expected_format, best_format);
H A Dvideosource_unittest.cc98 cricket::VideoFormat* best_format) {
100 *best_format = desired;
104 best_format);
97 GetBestCaptureFormat(const cricket::VideoFormat& desired, cricket::VideoFormat* best_format) argument
/external/chromium_org/remoting/host/
H A Dcast_video_capturer_adapter.cc66 cricket::VideoFormat* best_format) {
70 best_format->width = desired.width;
71 best_format->height = desired.height;
72 best_format->fourcc = cricket::FOURCC_ARGB;
73 best_format->interval = FPS_TO_INTERVAL(kFramesPerSec);
64 GetBestCaptureFormat( const cricket::VideoFormat& desired, cricket::VideoFormat* best_format) argument
H A Dcast_video_capturer_adapter.h49 cricket::VideoFormat* best_format) OVERRIDE;
/external/chromium_org/content/renderer/media/webrtc/
H A Dwebrtc_video_capturer_adapter.h48 cricket::VideoFormat* best_format) OVERRIDE;
H A Dwebrtc_video_capturer_adapter.cc68 cricket::VideoFormat* best_format) {
77 best_format->width = desired.width;
78 best_format->height = desired.height;
79 best_format->fourcc = cricket::FOURCC_I420;
80 best_format->interval = desired.interval;
66 GetBestCaptureFormat( const cricket::VideoFormat& desired, cricket::VideoFormat* best_format) argument
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideocapturer.cc233 VideoFormat* best_format) {
234 if (!best_format) {
238 if (!VideoCapturer::GetBestCaptureFormat(desired, best_format)) {
241 best_format->width = desired.width;
242 best_format->height = desired.height;
243 best_format->fourcc = FOURCC_I420;
244 best_format->interval = desired.interval;
247 << best_format->ToString();
232 GetBestCaptureFormat(const VideoFormat& desired, VideoFormat* best_format) argument
H A Dwebrtcvideocapturer.h68 VideoFormat* best_format);
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Ddevicemanager_unittest.cc433 cricket::VideoFormat best_format; local
435 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format));
436 EXPECT_EQ(kHdFormat, best_format);
443 cricket::VideoFormat best_format; local
445 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format));
446 EXPECT_EQ(kHdFormat, best_format);
455 cricket::VideoFormat best_format; local
457 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format));
458 EXPECT_EQ(kHdFormat, best_format);
466 cricket::VideoFormat best_format; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocapturer.cc257 VideoFormat* best_format) {
284 if (best_format) {
285 best_format->width = best->width;
286 best_format->height = best->height;
287 best_format->fourcc = best->fourcc;
288 best_format->interval = best->interval;
289 LOG(LS_INFO) << " Best " << best_format->ToString() << " Interval "
290 << best_format->interval << " distance " << best_distance;
256 GetBestCaptureFormat(const VideoFormat& format, VideoFormat* best_format) argument
H A Dvideocapturer.h159 // best_format: the output of the best capture format.
163 VideoFormat* best_format);
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_video_source.h134 // fulfilled. |best_format| is set to the video resolution that can be
138 media::VideoCaptureFormat* best_format);
H A Dmedia_stream_video_source.cc492 media::VideoCaptureFormat* best_format) {
505 *best_format = media::VideoCaptureFormat();
515 best_format);
490 FindBestFormatWithConstraints( const media::VideoCaptureFormats& formats, media::VideoCaptureFormat* best_format) argument

Completed in 232 milliseconds