HomeSort by relevance Sort by last modified time
    Searched refs:FOURCC (Results 1 - 8 of 8) 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.
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/third_party/libjingle/source/talk/session/phone/
videocommon.h 26 // Common definition for video, including fourcc and VideoFormat
38 // Definition of fourcc.
40 // Convert four characters to a fourcc code.
43 #define FOURCC(a, b, c, d) (\
47 // Get the name, that is, string with four characters, of a fourcc code.
48 inline std::string GetFourccName(uint32 fourcc) {
50 name.push_back(static_cast<char>(fourcc & 0xFF));
51 name.push_back(static_cast<char>((fourcc >> 8) & 0xFF));
52 name.push_back(static_cast<char>((fourcc >> 16) & 0xFF));
53 name.push_back(static_cast<char>((fourcc >> 24) & 0xFF))
158 uint32 fourcc; \/\/ color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormat
    [all...]
  /frameworks/av/media/libstagefright/mp4/
FragmentedMP4Parser.cpp 38 static const char *Fourcc2String(uint32_t fourcc) {
41 buffer[0] = fourcc >> 24;
42 buffer[1] = (fourcc >> 16) & 0xff;
43 buffer[2] = (fourcc >> 8) & 0xff;
44 buffer[3] = fourcc & 0xff;
56 { FOURCC('m', 'o', 'o', 'v'), 0, NULL },
57 { FOURCC('t', 'r', 'a', 'k'), FOURCC('m', 'o', 'o', 'v'), NULL },
58 { FOURCC('u', 'd', 't', 'a'), FOURCC('t', 'r', 'a', 'k'), NULL }
    [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 295 static const char *FourCC2MIME(uint32_t fourcc) {
296 switch (fourcc) {
297 case FOURCC('m', 'p', '4', 'a'):
300 case FOURCC('s', 'a', 'm', 'r'):
303 case FOURCC('s', 'a', 'w', 'b'):
306 case FOURCC('m', 'p', '4', 'v'):
309 case FOURCC('s', '2', '6', '3'):
310 case FOURCC('h', '2', '6', '3'):
311 case FOURCC('H', '2', '6', '3'):
314 case FOURCC('a', 'v', 'c', '1')
    [all...]
SampleTable.cpp 33 const uint32_t SampleTable::kChunkOffsetType32 = FOURCC('s', 't', 'c', 'o');
35 const uint32_t SampleTable::kChunkOffsetType64 = FOURCC('c', 'o', '6', '4');
37 const uint32_t SampleTable::kSampleSizeType32 = FOURCC('s', 't', 's', 'z');
39 const uint32_t SampleTable::kSampleSizeTypeCompact = FOURCC('s', 't', 'z', '2');
  /frameworks/av/media/libstagefright/timedtext/
TextDescriptions.cpp 108 case FOURCC('s', 't', 'y', 'l'):
144 case FOURCC('k', 'r', 'o', 'k'):
171 case FOURCC('h', 'l', 'i', 't'):
184 case FOURCC('h', 'c', 'l', 'r'):
196 case FOURCC('d', 'l', 'a', 'y'):
207 case FOURCC('h', 'r', 'e', 'f'):
238 case FOURCC('t', 'b', 'o', 'x'):
249 case FOURCC('b', 'l', 'n', 'k'):
263 case FOURCC('t', 'w', 'r', 'p'):
303 case FOURCC('t', 'x', '3', 'g')
    [all...]
  /frameworks/av/include/media/stagefright/
Utils.h 28 #define FOURCC(c1, c2, c3, c4) \

Completed in 2126 milliseconds