OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fourccs
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/media/base/
mutedvideocapturer_unittest.cc
77
std::vector<uint32>
fourccs
;
local
78
EXPECT_TRUE(capturer_.GetPreferredFourccs(&
fourccs
));
79
EXPECT_EQ(
fourccs
.size(), 1u);
80
EXPECT_TRUE(capturer_.GetPreferredFourccs(&
fourccs
));
81
EXPECT_EQ(
fourccs
.size(), 1u);
82
EXPECT_EQ(
fourccs
[0], cricket::FOURCC_I420);
mutedvideocapturer.cc
125
bool MutedVideoCapturer::GetPreferredFourccs(std::vector<uint32>*
fourccs
) {
126
fourccs
->clear();
127
fourccs
->push_back(cricket::FOURCC_I420);
mutedvideocapturer.h
50
virtual bool GetPreferredFourccs(std::vector<uint32>*
fourccs
);
fakevideocapturer.h
139
bool GetPreferredFourccs(std::vector<uint32>*
fourccs
) {
140
fourccs
->push_back(cricket::FOURCC_I420);
141
fourccs
->push_back(cricket::FOURCC_MJPG);
videocapturer.h
289
// subclasses override this virtual method to provide a vector of
fourccs
, in
291
virtual bool GetPreferredFourccs(std::vector<uint32>*
fourccs
) = 0;
videocommon_unittest.cc
34
// Canonical
fourccs
are not changed.
/external/chromium_org/content/renderer/media/
video_destination_handler_unittest.cc
82
std::vector<uint32>
fourccs
;
local
83
EXPECT_TRUE(writer_.GetPreferredFourccs(&
fourccs
));
84
EXPECT_EQ(1u,
fourccs
.size());
85
EXPECT_EQ(cricket::FOURCC_BGRA,
fourccs
[0]);
video_destination_handler.cc
54
bool PpFrameWriter::GetPreferredFourccs(std::vector<uint32>*
fourccs
) {
55
if (!
fourccs
) {
57
<< "
fourccs
is NULL.";
61
fourccs
->push_back(kEffectColorFormat);
rtc_video_capturer.h
37
virtual bool GetPreferredFourccs(std::vector<uint32>*
fourccs
) OVERRIDE;
rtc_video_capturer.cc
71
bool RtcVideoCapturer::GetPreferredFourccs(std::vector<uint32>*
fourccs
) {
72
if (!
fourccs
)
74
fourccs
->push_back(cricket::FOURCC_I420);
video_destination_handler.h
50
virtual bool GetPreferredFourccs(std::vector<uint32>*
fourccs
) OVERRIDE;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
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));
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;
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer.cc
51
// webrtc::RawVideoType (from video_capture_defines.h) to our
FOURCCs
.
302
std::vector<uint32>*
fourccs
) {
303
if (!
fourccs
) {
307
fourccs
->clear();
309
fourccs
->push_back(kSupportedFourCCs[i].fourcc);
webrtcvideocapturer.h
75
virtual bool GetPreferredFourccs(std::vector<uint32>*
fourccs
);
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer.cc
263
bool FileVideoCapturer::GetPreferredFourccs(std::vector<uint32>*
fourccs
) {
264
if (!
fourccs
) {
268
fourccs
->push_back(GetSupportedFormats()->at(0).fourcc);
filevideocapturer.h
120
virtual bool GetPreferredFourccs(std::vector<uint32>*
fourccs
);
/external/chromium_org/media/mp4/
box_reader.h
15
#include "media/mp4/
fourccs
.h"
158
// The set of child box
FourCCs
and their corresponding buffer readers. Only
box_definitions.h
17
#include "media/mp4/
fourccs
.h"
/external/chromium_org/media/video/capture/linux/
video_capture_device_linux.cc
80
static void GetListOfUsableFourCCs(bool favour_mjpeg, std::list<int>*
fourccs
) {
82
fourccs
->push_back(kV4l2RawFmts[i]);
84
fourccs
->push_front(V4L2_PIX_FMT_MJPEG);
86
fourccs
->push_back(V4L2_PIX_FMT_MJPEG);
90
fourccs
->push_back(V4L2_PIX_FMT_JPEG);
Completed in 816 milliseconds