OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetSupportedFormats
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer_unittest.cc
91
EXPECT_TRUE(capturer_->
GetSupportedFormats
()->empty());
103
EXPECT_TRUE(NULL != capturer_->
GetSupportedFormats
());
104
EXPECT_EQ(1U, capturer_->
GetSupportedFormats
()->size());
129
cricket::VideoFormat desired = capturer_->
GetSupportedFormats
()->at(0);
149
capture_format_ = capturer_->
GetSupportedFormats
()->at(0);
162
capture_format_ = capturer_->
GetSupportedFormats
()->at(0);
184
capture_format_ = capturer_->
GetSupportedFormats
()->at(0);
filevideocapturer.cc
268
fourccs->push_back(
GetSupportedFormats
()->at(0).fourcc);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer_unittest.cc
68
EXPECT_TRUE(capturer_->
GetSupportedFormats
()->empty());
81
EXPECT_TRUE(NULL != capturer_->
GetSupportedFormats
());
82
ASSERT_EQ(1U, capturer_->
GetSupportedFormats
()->size());
83
EXPECT_EQ(640, (*capturer_->
GetSupportedFormats
())[0].width);
84
EXPECT_EQ(480, (*capturer_->
GetSupportedFormats
())[0].height);
97
capturer_->
GetSupportedFormats
()->at(0));
117
EXPECT_TRUE(capturer_->
GetSupportedFormats
()->empty());
webrtcvideoengine_unittest.cc
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer_unittest.cc
701
std::vector<cricket::VideoFormat> formats = *capturer_.
GetSupportedFormats
();
707
EXPECT_TRUE(HdFormatInList(*capturer_.
GetSupportedFormats
()));
709
EXPECT_FALSE(HdFormatInList(*capturer_.
GetSupportedFormats
()));
714
EXPECT_TRUE(HdFormatInList(*capturer_.
GetSupportedFormats
()));
716
EXPECT_TRUE(HdFormatInList(*capturer_.
GetSupportedFormats
()));
730
EXPECT_EQ(2u, capturer_.
GetSupportedFormats
()->size());
736
EXPECT_EQ(2u, capturer_.
GetSupportedFormats
()->size());
741
ASSERT_EQ(1u, capturer_.
GetSupportedFormats
()->size());
742
EXPECT_EQ(vga_format.height, capturer_.
GetSupportedFormats
()->at(0).height);
videocapturer.h
112
// Find the capture format for Start() by either calling
GetSupportedFormats
()
142
const std::vector<VideoFormat>*
GetSupportedFormats
() const;
168
//
GetSupportedFormats
() and selecting one of the supported
videocapturer.cc
116
const std::vector<VideoFormat>* VideoCapturer::
GetSupportedFormats
() const {
232
const std::vector<VideoFormat>* supported_formats =
GetSupportedFormats
();
capturemanager.cc
364
video_capturer->
GetSupportedFormats
();
videoengine_unittest.h
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
videosource.cc
400
if (video_capturer_->
GetSupportedFormats
() &&
401
video_capturer_->
GetSupportedFormats
()->size() > 0) {
402
formats = *video_capturer_->
GetSupportedFormats
();
Completed in 625 milliseconds