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

1 2 3 4 5 6 7

  /external/libyuv/files/source/
video_common.cc 41 uint32 CanonicalFourCC(uint32 fourcc) {
43 if (kFourCCAliases[i].alias == fourcc) {
48 return fourcc;
  /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/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/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/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)
dxbc_dump.cpp 38 memcpy(fourcc_str, &chunk->fourcc, 4);
  /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)
dxbc_dump.cpp 38 memcpy(fourcc_str, &chunk->fourcc, 4);
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfenc.h 24 uint32_t fourcc,
ivfenc.c 18 unsigned int fourcc,
28 mem_put_le32(header + 8, fourcc); // fourcc
webmenc.h 45 unsigned int fourcc);
  /external/libvpx/libvpx/
ivfenc.h 24 uint32_t fourcc,
ivfenc.c 18 unsigned int fourcc,
28 mem_put_le32(header + 8, fourcc); // fourcc
tools_common.h 100 uint32_t fourcc; member in struct:VpxInputContext
127 const uint32_t fourcc; member in struct:VpxInterface
138 const VpxInterface *get_vpx_decoder_by_fourcc(uint32_t fourcc);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
ivfenc.h 24 uint32_t fourcc,
ivfenc.c 18 unsigned int fourcc,
28 mem_put_le32(header + 8, fourcc); // fourcc
tools_common.h 100 uint32_t fourcc; member in struct:VpxInputContext
127 const uint32_t fourcc; member in struct:VpxInterface
138 const VpxInterface *get_vpx_decoder_by_fourcc(uint32_t fourcc);
  /hardware/intel/img/psb_video/src/
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 */
  /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/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...]
  /hardware/intel/common/libva/test/
loadsurface.h 45 unsigned int fourcc, int fixed_alpha)
92 if (fourcc == VA_FOURCC_YUY2)
107 switch (fourcc) {
150 unsigned int fourcc, int box_width, int row_shift,
158 if (fourcc == VA_FOURCC_YUY2) y_factor = 2;
179 if (fourcc == VA_FOURCC_YUY2) {
196 switch (fourcc) {
208 printf("unsupported fourcc in loadsurface.h\n");
225 fourcc, alpha);
246 switch (surface_image.format.fourcc) {
    [all...]
  /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)) {

Completed in 489 milliseconds

1 2 3 4 5 6 7