Home
last modified time | relevance | path

Searched refs:fourccs (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dremotevideocapturer_unittest.cc107 std::vector<uint32_t> fourccs; in TEST_F() local
108 EXPECT_TRUE(capturer_.GetPreferredFourccs(&fourccs)); in TEST_F()
109 EXPECT_EQ(1u, fourccs.size()); in TEST_F()
110 EXPECT_EQ(cricket::FOURCC_I420, fourccs.at(0)); in TEST_F()
Dremotevideocapturer.cc68 bool RemoteVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument
69 if (!fourccs) in GetPreferredFourccs()
71 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
Dremotevideocapturer.h54 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) override;
Dandroidvideocapturer.cc203 bool AndroidVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument
205 fourccs->push_back(cricket::FOURCC_YV12); in GetPreferredFourccs()
Dandroidvideocapturer.h93 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) override;
/external/webrtc/talk/media/devices/
Dyuvframescapturer.cc169 bool YuvFramesCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument
170 if (!fourccs) { in GetPreferredFourccs()
173 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
Dfilevideocapturer.cc270 bool FileVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument
271 if (!fourccs) { in GetPreferredFourccs()
275 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
Dyuvframescapturer.h73 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);
Dfilevideocapturer.h125 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);
/external/webrtc/talk/app/webrtc/objc/
Davfoundationvideocapturer.h52 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) override { in GetPreferredFourccs() argument
53 fourccs->push_back(cricket::FOURCC_NV12); in GetPreferredFourccs()
/external/webrtc/talk/media/base/
Dfakevideocapturer.h160 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument
161 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
162 fourccs->push_back(cricket::FOURCC_MJPG); in GetPreferredFourccs()
Dvideocapturer.h300 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) = 0;
/external/webrtc/talk/media/webrtc/
Dwebrtcvideocapturer.cc360 bool WebRtcVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument
361 if (!fourccs) { in GetPreferredFourccs()
365 fourccs->clear(); in GetPreferredFourccs()
367 fourccs->push_back(kSupportedFourCCs[i].fourcc); in GetPreferredFourccs()
Dwebrtcvideocapturer.h80 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);