Home
last modified time | relevance | path

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

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dremotevideocapturer_unittest.cc107 std::vector<uint32> 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>* fourccs) { in GetPreferredFourccs() argument
69 if (!fourccs) in GetPreferredFourccs()
71 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
Dremotevideocapturer.h54 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
Dyuvframescapturer.cc142 bool YuvFramesCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument
143 if (!fourccs) { in GetPreferredFourccs()
146 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
Dfilevideocapturer.cc269 bool FileVideoCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument
270 if (!fourccs) { in GetPreferredFourccs()
274 fourccs->push_back(GetSupportedFormats()->at(0).fourcc); in GetPreferredFourccs()
Dyuvframescapturer.h46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
Dfilevideocapturer.h120 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dfakevideocapturer.h145 bool GetPreferredFourccs(std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument
146 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
147 fourccs->push_back(cricket::FOURCC_MJPG); in GetPreferredFourccs()
Dvideocapturer.h317 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) = 0;
/external/chromium_org/remoting/host/
Dcast_video_capturer_adapter.cc184 std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument
186 if (!fourccs) in GetPreferredFourccs()
188 fourccs->push_back(cricket::FOURCC_ARGB); in GetPreferredFourccs()
Dcast_video_capturer_adapter.h56 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideocapturer.cc317 std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument
318 if (!fourccs) { in GetPreferredFourccs()
322 fourccs->clear(); in GetPreferredFourccs()
324 fourccs->push_back(kSupportedFourCCs[i].fourcc); in GetPreferredFourccs()
Dwebrtcvideocapturer.h76 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
/external/chromium_org/content/renderer/media/webrtc/
Dwebrtc_video_capturer_adapter.cc54 std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument
56 if (!fourccs) in GetPreferredFourccs()
58 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
Dwebrtc_video_capturer_adapter.h46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE; in NON_EXPORTED_BASE()
/external/chromium_org/media/video/capture/linux/
Dvideo_capture_device_linux.cc101 std::list<int>* fourccs) { in GetListOfUsableFourCCs() argument
103 fourccs->push_back(kV4l2RawFmts[i]); in GetListOfUsableFourCCs()
105 fourccs->push_front(V4L2_PIX_FMT_MJPEG); in GetListOfUsableFourCCs()
107 fourccs->push_back(V4L2_PIX_FMT_MJPEG); in GetListOfUsableFourCCs()
111 fourccs->push_back(V4L2_PIX_FMT_JPEG); in GetListOfUsableFourCCs()
Dvideo_capture_device_linux.h27 std::list<int>* fourccs);