HomeSort by relevance Sort by last modified time
    Searched full:fourcc (Results 1 - 25 of 287) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/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/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/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/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...]
fakevideocapturer.h 81 GetCaptureFormat()->fourcc);
83 bool CaptureCustomFrame(int width, int height, uint32 fourcc) {
87 // Currently, |fourcc| is always I420 or ARGB.
88 // TODO(fbarchard): Extend SizeOf to take fourcc.
90 if (fourcc == cricket::FOURCC_ARGB) {
92 } else if (fourcc == cricket::FOURCC_I420) {
95 return false; // Unsupported FOURCC.
104 frame.fourcc = fourcc;
117 memcpy(frame.data, reinterpret_cast<const uint8*>(&fourcc), 4)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
dxbc.h 36 #define FOURCC(a, b, c, d) ((uint32_t)(uint8_t)(a) | ((uint32_t)(uint8_t)(b) << 8) | ((uint32_t)(uint8_t)(c) << 16) | ((uint32_t)(uint8_t)(d) << 24 ))
37 #define FOURCC_DXBC FOURCC('D', 'X', 'B', 'C')
38 #define FOURCC_RDEF FOURCC('R', 'D', 'E', 'F')
39 #define FOURCC_ISGN FOURCC('I', 'S', 'G', 'N')
40 #define FOURCC_OSGN FOURCC('O', 'S', 'G', 'N')
41 #define FOURCC_SHDR FOURCC('S', 'H', 'D', 'R')
42 #define FOURCC_SHEX FOURCC('S', 'H', 'E', 'X')
43 #define FOURCC_STAT FOURCC('S', 'T', 'A', 'T')
44 #define FOURCC_PCSG FOURCC('P', 'C', 'S', 'G')
49 unsigned fourcc; member in struct:dxbc_chunk_header
81 unsigned fourcc; member in struct:dxbc_container_header
108 unsigned fourcc; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
dxbc.h 36 #define FOURCC(a, b, c, d) ((uint32_t)(uint8_t)(a) | ((uint32_t)(uint8_t)(b) << 8) | ((uint32_t)(uint8_t)(c) << 16) | ((uint32_t)(uint8_t)(d) << 24 ))
37 #define FOURCC_DXBC FOURCC('D', 'X', 'B', 'C')
38 #define FOURCC_RDEF FOURCC('R', 'D', 'E', 'F')
39 #define FOURCC_ISGN FOURCC('I', 'S', 'G', 'N')
40 #define FOURCC_OSGN FOURCC('O', 'S', 'G', 'N')
41 #define FOURCC_SHDR FOURCC('S', 'H', 'D', 'R')
42 #define FOURCC_SHEX FOURCC('S', 'H', 'E', 'X')
43 #define FOURCC_STAT FOURCC('S', 'T', 'A', 'T')
44 #define FOURCC_PCSG FOURCC('P', 'C', 'S', 'G')
49 unsigned fourcc; member in struct:dxbc_chunk_header
81 unsigned fourcc; member in struct:dxbc_container_header
108 unsigned fourcc; local
    [all...]
  /external/chromium_org/media/formats/mp4/
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_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.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();
  /external/chromium_org/third_party/libyuv/unit_test/
video_common_test.cc 19 // Tests FourCC codes in video common, which are used for ConvertToI420().
31 static bool TestValidFourCC(uint32 fourcc, int bpp) {
32 if (!TestValidChar(fourcc & 0xff) ||
33 !TestValidChar((fourcc >> 8) & 0xff) ||
34 !TestValidChar((fourcc >> 16) & 0xff) ||
35 !TestValidChar((fourcc >> 24) & 0xff)) {
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
dxbc_parse.cpp 38 if(bswap_le32(header->fourcc) != FOURCC_DXBC)
45 unsigned fourcc = bswap_le32(chunk->fourcc); local
46 container->chunk_map[fourcc] = i;
52 dxbc_chunk_header* dxbc_find_chunk(const void* data, int size, unsigned fourcc)
56 if(bswap_le32(header->fourcc) != FOURCC_DXBC)
63 if(bswap_le32(chunk->fourcc) == fourcc)
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
dxbc_parse.cpp 38 if(bswap_le32(header->fourcc) != FOURCC_DXBC)
45 unsigned fourcc = bswap_le32(chunk->fourcc); local
46 container->chunk_map[fourcc] = i;
52 dxbc_chunk_header* dxbc_find_chunk(const void* data, int size, unsigned fourcc)
56 if(bswap_le32(header->fourcc) != FOURCC_DXBC)
63 if(bswap_le32(chunk->fourcc) == fourcc)
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfenc.c 18 unsigned int fourcc,
28 mem_put_le32(header + 8, fourcc); // fourcc
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
video_common.cc 49 uint32 CanonicalFourCC(uint32 fourcc) {
52 if (kFourCCAliases[i].alias == fourcc) {
57 return fourcc;
  /external/chromium_org/third_party/libyuv/source/
video_common.cc 49 uint32 CanonicalFourCC(uint32 fourcc) {
52 if (kFourCCAliases[i].alias == fourcc) {
57 return fourcc;
  /external/libvpx/libvpx/
ivfenc.c 18 unsigned int fourcc,
28 mem_put_le32(header + 8, fourcc); // fourcc
  /external/libyuv/files/source/
video_common.cc 41 uint32 CanonicalFourCC(uint32 fourcc) {
43 if (kFourCCAliases[i].alias == fourcc) {
48 return fourcc;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
ivfenc.c 18 unsigned int fourcc,
28 mem_put_le32(header + 8, fourcc); // fourcc
  /frameworks/av/media/libstagefright/
AVIExtractor.cpp 434 uint32_t fourcc = U32_AT(tmp); local
444 if (fourcc == FOURCC('L', 'I', 'S', 'T')
445 || fourcc == FOURCC('R', 'I', 'F', 'F')) {
469 if (subFourcc == FOURCC('m', 'o', 'v', 'i')) {
492 (char)(fourcc >> 24),
493 (char)((fourcc >> 16) & 0xff),
494 (char)((fourcc >> 8) & 0xff),
495 (char)(fourcc & 0xff))
    [all...]
MPEG4Extractor.cpp 307 static const char *FourCC2MIME(uint32_t fourcc) {
308 switch (fourcc) {
309 case FOURCC('m', 'p', '4', 'a'):
312 case FOURCC('s', 'a', 'm', 'r'):
315 case FOURCC('s', 'a', 'w', 'b'):
318 case FOURCC('m', 'p', '4', 'v'):
321 case FOURCC('s', '2', '6', '3'):
322 case FOURCC('h', '2', '6', '3'):
323 case FOURCC('H', '2', '6', '3'):
326 case FOURCC('a', 'v', 'c', '1')
    [all...]
  /hardware/intel/img/psb_video/src/
psb_surface_attrib.c 54 int width, int height, int fourcc,
63 if ((fourcc == VA_FOURCC_NV12) || (fourcc == VA_FOURCC_YV16) || (fourcc == VA_FOURCC_IYUV) || (fourcc == VA_FOURCC_RGBA)) {
97 if (VA_FOURCC_NV12 == fourcc) {
101 else if (VA_FOURCC_YV16 == fourcc) {
105 else if (VA_FOURCC_IYUV == fourcc) {
109 else if (VA_FOURCC_RGBA == fourcc) {
268 unsigned int fourcc, /* expected fourcc *
561 unsigned long fourcc; local
651 unsigned long fourcc; local
    [all...]
psb_surface_attrib.h 39 int width, int height, int fourcc, VASurfaceAttributeTPI *graphic_buffers,
49 unsigned int fourcc, /* expected fourcc */
63 unsigned int fourcc, /* expected fourcc */
  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 186 uint32_t fourCC, uint32_t format)
193 surface_attrib.value.value.i = fourCC;
274 if (surface_image.format.fourcc == VA_FOURCC_YV12 ||
275 surface_image.format.fourcc == VA_FOURCC_I420 ||
276 surface_image.format.fourcc == VA_FOURCC_NV12){
290 if(surface_image.format.fourcc == VA_FOURCC_YV12){
293 }else if(surface_image.format.fourcc == VA_FOURCC_I420){
309 if (surface_image.format.fourcc == VA_FOURCC_YV12||
310 surface_image.format.fourcc == VA_FOURCC_I420){
319 if (surface_image.format.fourcc == VA_FOURCC_YV12)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer.cc 48 uint32 fourcc; member in struct:cricket::kVideoFourCCEntry
81 uint32 fourcc = 0; local
84 fourcc = kSupportedFourCCs[i].fourcc;
88 if (fourcc == 0) {
92 format->fourcc = fourcc;
103 if (kSupportedFourCCs[i].fourcc == format.fourcc) {
243 best_format->fourcc = FOURCC_I420
    [all...]

Completed in 3089 milliseconds

1 2 3 4 5 6 7 8 91011>>