HomeSort by relevance Sort by last modified time
    Searched refs:fourccs (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
remotevideocapturer.cc 68 bool RemoteVideoCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) {
69 if (!fourccs)
71 fourccs->push_back(cricket::FOURCC_I420);
remotevideocapturer.h 54 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
remotevideocapturer_unittest.cc 107 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/base/
fakevideocapturer.h 145 bool GetPreferredFourccs(std::vector<uint32>* fourccs) {
146 fourccs->push_back(cricket::FOURCC_I420);
147 fourccs->push_back(cricket::FOURCC_MJPG);
videocapturer.h 315 // subclasses override this virtual method to provide a vector of fourccs, in
317 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) = 0;
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
yuvframescapturer.cc 142 bool YuvFramesCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) {
143 if (!fourccs) {
146 fourccs->push_back(GetSupportedFormats()->at(0).fourcc);
yuvframescapturer.h 46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
filevideocapturer.h 120 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
filevideocapturer.cc 269 bool FileVideoCapturer::GetPreferredFourccs(std::vector<uint32>* fourccs) {
270 if (!fourccs) {
274 fourccs->push_back(GetSupportedFormats()->at(0).fourcc);
  /external/chromium_org/content/renderer/media/webrtc/
webrtc_video_capturer_adapter.h 46 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
webrtc_video_capturer_adapter.cc 54 std::vector<uint32>* fourccs) {
56 if (!fourccs)
58 fourccs->push_back(cricket::FOURCC_I420);
  /external/chromium_org/remoting/host/
cast_video_capturer_adapter.h 56 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
cast_video_capturer_adapter.cc 184 std::vector<uint32>* fourccs) {
186 if (!fourccs)
188 fourccs->push_back(cricket::FOURCC_ARGB);
  /external/chromium_org/media/video/capture/linux/
video_capture_device_linux.h 27 std::list<int>* fourccs);
video_capture_device_linux.cc 101 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);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer.h 76 virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
webrtcvideocapturer.cc 53 // webrtc::RawVideoType (from video_capture_defines.h) to our FOURCCs.
317 std::vector<uint32>* fourccs) {
318 if (!fourccs) {
322 fourccs->clear();
324 fourccs->push_back(kSupportedFourCCs[i].fourcc);

Completed in 748 milliseconds