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

  /frameworks/av/include/media/stagefright/
Utils.h 27 #define FOURCC(c1, c2, c3, c4) \
  /external/libyuv/files/source/
video_common.h 12 * Common definitions for video, including fourcc and VideoFormat
26 // Definition of fourcc.
28 // Convert four characters to a fourcc code.
31 #define FOURCC(a, b, c, d) (\
35 // Some good pages discussing FourCC codes:
37 // http://www.fourcc.org/yuv.php
38 enum FourCC {
39 // Canonical fourcc codes used in our code.
40 FOURCC_I420 = FOURCC('I', '4', '2', '0'),
41 FOURCC_YV12 = FOURCC('Y', 'V', '1', '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...]

Completed in 45 milliseconds