Searched defs:fourccs (Results 1 - 7 of 7) sorted by relevance

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

Completed in 1499 milliseconds