HomeSort by relevance Sort by last modified time
    Searched refs:best_format (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
remotevideocapturer.cc 76 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;
remotevideocapturer.h 56 cricket::VideoFormat* best_format) OVERRIDE;
remotevideocapturer_unittest.cc 119 VideoFormat best_format; local
120 EXPECT_TRUE(capturer_.GetBestCaptureFormat(desired, &best_format));
121 EXPECT_EQ(expected_format, best_format);
videosource_unittest.cc 98 cricket::VideoFormat* best_format) {
100 *best_format = desired;
104 best_format);
  /external/chromium_org/remoting/host/
cast_video_capturer_adapter.cc 66 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);
cast_video_capturer_adapter.h 49 cricket::VideoFormat* best_format) OVERRIDE;
  /external/chromium_org/content/renderer/media/webrtc/
webrtc_video_capturer_adapter.h 48 cricket::VideoFormat* best_format) OVERRIDE;
webrtc_video_capturer_adapter.cc 68 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;
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer.cc 233 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();
webrtcvideocapturer.h 68 VideoFormat* best_format);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager_unittest.cc 433 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/
videocapturer.cc 257 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;
videocapturer.h 159 // best_format: the output of the best capture format.
163 VideoFormat* best_format);
  /external/chromium_org/content/renderer/media/
media_stream_video_source.h 134 // fulfilled. |best_format| is set to the video resolution that can be
138 media::VideoCaptureFormat* best_format);
media_stream_video_source.cc 492 media::VideoCaptureFormat* best_format) {
505 *best_format = media::VideoCaptureFormat();
515 best_format);

Completed in 547 milliseconds