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

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dremotevideocapturer.cc68 bool RemoteVideoCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) { argument
69 if (!fourccs)
71 fourccs->push_back(cricket::FOURCC_I420);
H A Dremotevideocapturer.h54 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
H A Dremotevideocapturer_unittest.cc107 std::vector<uint32> fourccs; local
108 EXPECT_TRUE(capturer_.GetPreferredFourccs(&fourccs));
109 EXPECT_EQ(1u, fourccs.size());
110 EXPECT_EQ(cricket::FOURCC_I420, fourccs.at(0));
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dyuvframescapturer.cc142 bool YuvFramesCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) { argument
143 if (!fourccs) {
146 fourccs->push_back(GetSupportedFormats()->at(0).fourcc);
H A Dyuvframescapturer.h46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
H A Dfilevideocapturer.h120 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
H A Dfilevideocapturer.cc269 bool FileVideoCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) { argument
270 if (!fourccs) {
274 fourccs->push_back(GetSupportedFormats()->at(0).fourcc);
/external/chromium_org/content/renderer/media/webrtc/
H A Dwebrtc_video_capturer_adapter.h46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
H A Dwebrtc_video_capturer_adapter.cc54 std::vector<uint32>* fourccs) {
56 if (!fourccs)
58 fourccs->push_back(cricket::FOURCC_I420);
53 GetPreferredFourccs( std::vector<uint32>* fourccs) argument
/external/chromium_org/remoting/host/
H A Dcast_video_capturer_adapter.cc184 std::vector<uint32>* fourccs) {
186 if (!fourccs)
188 fourccs->push_back(cricket::FOURCC_ARGB);
183 GetPreferredFourccs( std::vector<uint32>* fourccs) argument
H A Dcast_video_capturer_adapter.h56 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfakevideocapturer.h145 bool GetPreferredFourccs(std::vector<uint32>* fourccs) { argument
146 fourccs->push_back(cricket::FOURCC_I420);
147 fourccs->push_back(cricket::FOURCC_MJPG);
H A Dvideocapturer.h315 // subclasses override this virtual method to provide a vector of fourccs, in
317 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) = 0;
/external/chromium_org/media/video/capture/linux/
H A Dvideo_capture_device_linux.h27 std::list<int>* fourccs);
H A Dvideo_capture_device_linux.cc101 std::list<int>* fourccs) {
103 fourccs->push_back(kV4l2RawFmts[i]);
105 fourccs->push_front(V4L2_PIX_FMT_MJPEG);
107 fourccs->push_back(V4L2_PIX_FMT_MJPEG);
111 fourccs->push_back(V4L2_PIX_FMT_JPEG);
100 GetListOfUsableFourCCs(bool favour_mjpeg, std::list<int>* fourccs) argument
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideocapturer.h76 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
H A Dwebrtcvideocapturer.cc317 std::vector<uint32>* fourccs) {
318 if (!fourccs) {
322 fourccs->clear();
324 fourccs->push_back(kSupportedFourCCs[i].fourcc);
316 GetPreferredFourccs( std::vector<uint32>* fourccs) argument

Completed in 483 milliseconds