/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
D | remotevideocapturer_unittest.cc | 107 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()
|
D | remotevideocapturer.cc | 68 bool RemoteVideoCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument 69 if (!fourccs) in GetPreferredFourccs() 71 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
|
D | remotevideocapturer.h | 54 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
|
/external/chromium_org/third_party/libjingle/source/talk/media/devices/ |
D | yuvframescapturer.cc | 142 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()
|
D | filevideocapturer.cc | 269 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()
|
D | yuvframescapturer.h | 46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
|
D | filevideocapturer.h | 120 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
D | fakevideocapturer.h | 145 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()
|
D | videocapturer.h | 317 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) = 0;
|
/external/chromium_org/remoting/host/ |
D | cast_video_capturer_adapter.cc | 184 std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument 186 if (!fourccs) in GetPreferredFourccs() 188 fourccs->push_back(cricket::FOURCC_ARGB); in GetPreferredFourccs()
|
D | cast_video_capturer_adapter.h | 56 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtcvideocapturer.cc | 317 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()
|
D | webrtcvideocapturer.h | 76 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
|
/external/chromium_org/content/renderer/media/webrtc/ |
D | webrtc_video_capturer_adapter.cc | 54 std::vector<uint32>* fourccs) { in GetPreferredFourccs() argument 56 if (!fourccs) in GetPreferredFourccs() 58 fourccs->push_back(cricket::FOURCC_I420); in GetPreferredFourccs()
|
D | webrtc_video_capturer_adapter.h | 46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE; in NON_EXPORTED_BASE()
|
/external/chromium_org/media/video/capture/linux/ |
D | video_capture_device_linux.cc | 101 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()
|
D | video_capture_device_linux.h | 27 std::list<int>* fourccs);
|