Home
last modified time | relevance | path

Searched refs:GetSupportedFormats (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideocapturer_unittest.cc68 EXPECT_TRUE(capturer_->GetSupportedFormats()->empty()); in TEST_F()
81 EXPECT_TRUE(NULL != capturer_->GetSupportedFormats()); in TEST_F()
82 ASSERT_EQ(1U, capturer_->GetSupportedFormats()->size()); in TEST_F()
83 EXPECT_EQ(640, (*capturer_->GetSupportedFormats())[0].width); in TEST_F()
84 EXPECT_EQ(480, (*capturer_->GetSupportedFormats())[0].height); in TEST_F()
97 capturer_->GetSupportedFormats()->at(0)); in TEST_F()
117 EXPECT_TRUE(capturer_->GetSupportedFormats()->empty()); in TEST_F()
Dwebrtcvideoengine2_unittest.cc590 video_capturer_->GetSupportedFormats(); in TEST_F()
Dwebrtcvideoengine_unittest.cc2423 video_capturer_->GetSupportedFormats(); in TEST_F()
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
Dfilevideocapturer_unittest.cc91 EXPECT_TRUE(capturer_->GetSupportedFormats()->empty()); in TEST_F()
103 EXPECT_TRUE(NULL != capturer_->GetSupportedFormats()); in TEST_F()
104 EXPECT_EQ(1U, capturer_->GetSupportedFormats()->size()); in TEST_F()
129 cricket::VideoFormat desired = capturer_->GetSupportedFormats()->at(0); in TEST_F()
149 capture_format_ = capturer_->GetSupportedFormats()->at(0); in TEST_F()
162 capture_format_ = capturer_->GetSupportedFormats()->at(0); in TEST_F()
184 capture_format_ = capturer_->GetSupportedFormats()->at(0); in TEST_F()
Dyuvframescapturer.cc146 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
Dfilevideocapturer.cc274 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dvideocapturer_unittest.cc782 std::vector<cricket::VideoFormat> formats = *capturer_.GetSupportedFormats(); in TEST_F()
788 EXPECT_TRUE(HdFormatInList(*capturer_.GetSupportedFormats())); in TEST_F()
790 EXPECT_FALSE(HdFormatInList(*capturer_.GetSupportedFormats())); in TEST_F()
795 EXPECT_TRUE(HdFormatInList(*capturer_.GetSupportedFormats())); in TEST_F()
797 EXPECT_TRUE(HdFormatInList(*capturer_.GetSupportedFormats())); in TEST_F()
811 EXPECT_EQ(2u, capturer_.GetSupportedFormats()->size()); in TEST_F()
817 EXPECT_EQ(2u, capturer_.GetSupportedFormats()->size()); in TEST_F()
822 ASSERT_EQ(1u, capturer_.GetSupportedFormats()->size()); in TEST_F()
823 EXPECT_EQ(vga_format.height, capturer_.GetSupportedFormats()->at(0).height); in TEST_F()
Dvideocapturer.h146 const std::vector<VideoFormat>* GetSupportedFormats() const;
Dvideocapturer.cc143 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const { in GetSupportedFormats() function in cricket::VideoCapturer
260 const std::vector<VideoFormat>* supported_formats = GetSupportedFormats(); in GetBestCaptureFormat()
Dcapturemanager.cc364 video_capturer->GetSupportedFormats(); in StartWithBestCaptureFormat()
Dvideoadapter_unittest.cc62 capture_format_ = capturer_->GetSupportedFormats()->at(0); in SetUp()
221 VideoFormat format = capturer_->GetSupportedFormats()->at(0); in TEST_F()
Dvideoengine_unittest.h1491 capturer->GetSupportedFormats(); in HighAspectHighHeightCapturer()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dvideosource.cc376 if (video_capturer_->GetSupportedFormats() && in Initialize()
377 video_capturer_->GetSupportedFormats()->size() > 0) { in Initialize()
378 formats = *video_capturer_->GetSupportedFormats(); in Initialize()