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

  /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;
  /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/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...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
omx_vdec_msm8974.cpp     [all...]

Completed in 133 milliseconds