OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:best_format
(Results
1 - 11
of
11
) sorted by null
/external/webrtc/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_unittest.cc
119
VideoFormat
best_format
;
local
120
EXPECT_TRUE(capturer_.GetBestCaptureFormat(desired, &
best_format
));
121
EXPECT_EQ(expected_format,
best_format
);
remotevideocapturer.h
56
cricket::VideoFormat*
best_format
) override;
androidvideocapturer.h
82
cricket::VideoFormat*
best_format
) override;
androidvideocapturer.cc
244
cricket::VideoFormat*
best_format
) {
246
*
best_format
= desired;
videosource_unittest.cc
98
cricket::VideoFormat*
best_format
) {
100
*
best_format
= desired;
104
best_format
);
/external/webrtc/talk/media/devices/
devicemanager_unittest.cc
434
cricket::VideoFormat
best_format
;
local
436
EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &
best_format
));
437
EXPECT_EQ(kHdFormat,
best_format
);
444
cricket::VideoFormat
best_format
;
local
446
EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &
best_format
));
447
EXPECT_EQ(kHdFormat,
best_format
);
456
cricket::VideoFormat
best_format
;
local
458
EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &
best_format
));
459
EXPECT_EQ(kHdFormat,
best_format
);
467
cricket::VideoFormat
best_format
;
local
[
all
...]
/external/webrtc/talk/media/webrtc/
webrtcvideocapturer.cc
245
VideoFormat*
best_format
) {
246
if (!
best_format
) {
250
if (!VideoCapturer::GetBestCaptureFormat(desired,
best_format
)) {
253
best_format
->width = desired.width;
254
best_format
->height = desired.height;
255
best_format
->fourcc = FOURCC_I420;
256
best_format
->interval = desired.interval;
259
<<
best_format
->ToString();
webrtcvideocapturer.h
71
VideoFormat*
best_format
);
/external/webrtc/talk/media/base/
videocapturer.cc
263
VideoFormat*
best_format
) {
290
if (
best_format
) {
291
best_format
->width = best->width;
292
best_format
->height = best->height;
293
best_format
->fourcc = best->fourcc;
294
best_format
->interval = best->interval;
295
LOG(LS_INFO) << " Best " <<
best_format
->ToString() << " Interval "
296
<<
best_format
->interval << " distance " << best_distance;
videocapturer.h
158
//
best_format
: the output of the best capture format.
162
VideoFormat*
best_format
);
Completed in 282 milliseconds