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

  /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.
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/libvpx/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/webrtc/talk/media/base/
videocommon.h 28 // Common definition for video, including fourcc and VideoFormat.
53 // Definition of FourCC codes
55 // Convert four characters to a FourCC code.
58 #define FOURCC(a, b, c, d) \
61 // Some pages discussing FourCC codes:
62 // http://www.fourcc.org/yuv.php
68 // FourCC codes grouped according to implementation efficiency.
72 enum FourCC {
74 FOURCC_I420 = FOURCC('I', '4', '2', '0'),
75 FOURCC_I422 = FOURCC('I', '4', '2', '2')
189 uint32_t fourcc; \/\/ Color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormatPod
    [all...]
videoframe_unittest.h 213 rtc::MemoryStream* CreateYuv422Sample(uint32_t fourcc,
217 if (!GetYuv422Packing(fourcc, &y1_pos, &y2_pos, &u_pos, &v_pos)) {
258 rtc::MemoryStream* CreateRgbSample(uint32_t fourcc,
262 if (!GetRgbPacking(fourcc, &r_pos, &g_pos, &b_pos, &bytes)) {
287 uint32_t fourcc,
292 if (!GetYuv422Packing(fourcc, &y1_pos, &y2_pos, &u_pos, &v_pos)) {
327 uint32_t fourcc,
332 if (!GetRgbPacking(fourcc, &r_pos, &g_pos, &b_pos, &bytes)) {
389 bool GetYuv422Packing(uint32_t fourcc,
394 if (fourcc == cricket::FOURCC_YUY2)
    [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...]
  /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 325 static const char *FourCC2MIME(uint32_t fourcc) {
326 switch (fourcc) {
327 case FOURCC('m', 'p', '4', 'a'):
330 case FOURCC('s', 'a', 'm', 'r'):
333 case FOURCC('s', 'a', 'w', 'b'):
336 case FOURCC('m', 'p', '4', 'v'):
339 case FOURCC('s', '2', '6', '3'):
340 case FOURCC('h', '2', '6', '3'):
341 case FOURCC('H', '2', '6', '3'):
344 case FOURCC('a', 'v', 'c', '1')
    [all...]
SampleTable.cpp 40 const uint32_t SampleTable::kChunkOffsetType32 = FOURCC('s', 't', 'c', 'o');
42 const uint32_t SampleTable::kChunkOffsetType64 = FOURCC('c', 'o', '6', '4');
44 const uint32_t SampleTable::kSampleSizeType32 = FOURCC('s', 't', 's', 'z');
46 const uint32_t SampleTable::kSampleSizeTypeCompact = FOURCC('s', 't', 'z', '2');
  /frameworks/av/media/libstagefright/timedtext/
TextDescriptions.cpp 117 case FOURCC('s', 't', 'y', 'l'):
164 case FOURCC('k', 'r', 'o', 'k'):
202 case FOURCC('h', 'l', 'i', 't'):
221 case FOURCC('h', 'c', 'l', 'r'):
238 case FOURCC('d', 'l', 'a', 'y'):
254 case FOURCC('h', 'r', 'e', 'f'):
312 case FOURCC('t', 'b', 'o', 'x'):
328 case FOURCC('b', 'l', 'n', 'k'):
348 case FOURCC('t', 'w', 'r', 'p'):
390 case FOURCC('t', 'x', '3', 'g')
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
avifmt.h 89 FOURCC fccType;
90 FOURCC fccHandler;
dmdls.h 36 * FOURCC definition
39 typedef DWORD FOURCC;
173 FOURCC ExtCkID;
dmusicf.h 37 * FOURCC Definitions
630 FOURCC ckid;
631 FOURCC fccType;
722 FOURCC ckid;
723 FOURCC fccType;
747 FOURCC ckid;
748 FOURCC fccType;
    [all...]
msacm.h 169 FOURCC fccType;
170 FOURCC fccComp;
188 FOURCC fccType;
189 FOURCC fccComp;
mmsystem.h     [all...]
vfw.h 630 typedef DWORD FOURCC;
706 FOURCC fccType;
707 FOURCC fccHandler;
    [all...]
  /frameworks/av/include/media/stagefright/
Utils.h 30 #define FOURCC(c1, c2, c3, c4) \
  /hardware/intel/common/libva/
libva.spec 147 - Added definition of FOURCC IYUV
  /frameworks/av/media/libstagefright/tests/
Utils_test.cpp 131 ASSERT_EQ(FOURCC('s', 't', 'm' , 'u'), 'stmu');
  /frameworks/av/media/libstagefright/httplive/
M3UParser.cpp     [all...]

Completed in 792 milliseconds