Searched refs:fourccs (Results 1 – 14 of 14) sorted by relevance
107 std::vector<uint32_t> fourccs; in TEST_F() local108 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()
68 bool RemoteVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument69 if (!fourccs) in GetPreferredFourccs()71 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
54 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) override;
203 bool AndroidVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument205 fourccs->push_back(cricket::FOURCC_YV12); in GetPreferredFourccs()
93 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) override;
169 bool YuvFramesCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument170 if (!fourccs) { in GetPreferredFourccs()173 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
270 bool FileVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument271 if (!fourccs) { in GetPreferredFourccs()275 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
73 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);
125 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);
52 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) override { in GetPreferredFourccs() argument53 fourccs->push_back(cricket::FOURCC_NV12); in GetPreferredFourccs()
160 bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument161 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()162 fourccs->push_back(cricket::FOURCC_MJPG); in GetPreferredFourccs()
300 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs) = 0;
360 bool WebRtcVideoCapturer::GetPreferredFourccs(std::vector<uint32_t>* fourccs) { in GetPreferredFourccs() argument361 if (!fourccs) { in GetPreferredFourccs()365 fourccs->clear(); in GetPreferredFourccs()367 fourccs->push_back(kSupportedFourCCs[i].fourcc); in GetPreferredFourccs()
80 virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);