/external/chromium_org/media/formats/mp4/ |
box_reader.h | 26 virtual FourCC BoxType() const = 0; 49 bool ReadFourCC(FourCC* v) WARN_UNUSED_RESULT; 97 FourCC* type, 104 static bool IsValidTopLevelBox(const FourCC& type, 130 // Read all children, regardless of FourCC. This is used from exactly one box, 141 FourCC type() const { return type_; } 160 FourCC type_; 164 typedef std::multimap<FourCC, BoxReader> ChildMap; 184 FourCC child_type = (*children)[0].BoxType();
|
box_definitions.cc | 16 FourCC FileType::BoxType() const { return FOURCC_FTYP; } 20 size_t num_brands = (reader->size() - reader->pos()) / sizeof(FourCC); 21 return reader->SkipBytes(sizeof(FourCC) * num_brands); // compatible_brands 26 FourCC ProtectionSystemSpecificHeader::BoxType() const { return FOURCC_PSSH; } 44 FourCC SampleAuxiliaryInformationOffset::BoxType() const { return FOURCC_SAIO; } 70 FourCC SampleAuxiliaryInformationSize::BoxType() const { return FOURCC_SAIZ; } 86 FourCC OriginalFormat::BoxType() const { return FOURCC_FRMA; } 94 FourCC SchemeType::BoxType() const { return FOURCC_SCHM; } 107 FourCC TrackEncryption::BoxType() const { return FOURCC_TENC; } 127 FourCC SchemeInfo::BoxType() const { return FOURCC_SCHI; [all...] |
box_reader.cc | 48 bool BufferReader::ReadFourCC(FourCC* v) { 125 FourCC* type, 140 bool BoxReader::IsValidTopLevelBox(const FourCC& type, 178 children_.insert(std::pair<FourCC, BoxReader>(child.type(), child)); 194 FourCC child_type = child->BoxType();
|
box_definitions.h | 37 virtual FourCC BoxType() const OVERRIDE; \ 42 FourCC major_brand; 70 FourCC format; 76 FourCC type; 190 FourCC format; 214 FourCC format;
|
fourccs.h | 13 enum FourCC { 91 const inline std::string FourCCToString(FourCC fourcc) { 93 buf[0] = (fourcc >> 24) & 0xff; 94 buf[1] = (fourcc >> 16) & 0xff; 95 buf[2] = (fourcc >> 8) & 0xff; 96 buf[3] = (fourcc) & 0xff;
|
box_reader_unittest.cc | 37 virtual FourCC BoxType() const OVERRIDE { return FOURCC_FREE; } 46 virtual FourCC BoxType() const OVERRIDE { return FOURCC_PSSH; } 69 virtual FourCC BoxType() const OVERRIDE { return FOURCC_SKIP; } 140 // Set an unrecognized top-level FourCC. 184 static void TestTopLevelBox(const uint8* data, int size, uint32 fourCC) { 194 EXPECT_EQ(fourCC, reader->type());
|
mp4_stream_parser.cc | 578 FourCC type;
|
/external/libyuv/files/include/libyuv/ |
video_common.h | 11 // Common definitions for video, including fourcc and VideoFormat. 24 // Definition of FourCC codes 27 // Convert four characters to a FourCC code. 30 #define FOURCC(a, b, c, d) ( \ 34 // Some pages discussing FourCC codes: 35 // http://www.fourcc.org/yuv.php 41 enum FourCC { 42 // Canonical fourcc codes used in our code. 43 FOURCC_I420 = FOURCC('I', '4', '2', '0'), 44 FOURCC_I422 = FOURCC('I', '4', '2', '2') [all...] |
/external/chromium_org/third_party/libyuv/include/libyuv/ |
video_common.h | 11 // Common definitions for video, including fourcc and VideoFormat. 24 // Definition of FourCC codes 27 // Convert four characters to a FourCC code. 31 #define FOURCC(a, b, c, d) ( \ 35 #define FOURCC(a, b, c, d) ( \ 40 // Some pages discussing FourCC codes: 41 // http://www.fourcc.org/yuv.php 47 // FourCC codes grouped according to implementation efficiency. 51 enum FourCC { 53 FOURCC_I420 = FOURCC('I', '4', '2', '0') [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videocommon.h | 26 // Common definition for video, including fourcc and VideoFormat. 51 // Definition of FourCC codes 53 // Convert four characters to a FourCC code. 56 #define FOURCC(a, b, c, d) ( \ 59 // Some pages discussing FourCC codes: 60 // http://www.fourcc.org/yuv.php 66 // FourCC codes grouped according to implementation efficiency. 70 enum FourCC { 72 FOURCC_I420 = FOURCC('I', '4', '2', '0'), 73 FOURCC_I422 = FOURCC('I', '4', '2', '2') 184 uint32 fourcc; \/\/ Color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormatPod [all...] |
/external/chromium_org/content/browser/renderer_host/media/ |
video_capture_controller.cc | 350 libyuv::FourCC origin_colorspace = libyuv::FOURCC_ANY;
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
planarfunctions_unittest.cc | 188 uint8* &yuv_pointer, FourCC fourcc_type) { 386 uint8* &argb_pointer, FourCC fourcc_type) { [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/ |
peerconnection_jni.cc | [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/ |
omx_vdec_msm8974.cpp | [all...] |