/external/libyuv/files/source/ |
H A D | video_common.cc | 41 uint32 CanonicalFourCC(uint32 fourcc) { argument 43 if (kFourCCAliases[i].alias == fourcc) { 48 return fourcc;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/ |
H A D | dxbc.h | 49 unsigned fourcc; member in struct:dxbc_chunk_header 81 unsigned fourcc; member in struct:dxbc_container_header 91 dxbc_chunk_header* dxbc_find_chunk(const void* data, int size, unsigned fourcc); 108 unsigned fourcc; local 110 case DXBC_FIND_INPUT_SIGNATURE: fourcc = FOURCC_ISGN; break; 111 case DXBC_FIND_OUTPUT_SIGNATURE: fourcc = FOURCC_OSGN; break; 112 case DXBC_FIND_PATCH_SIGNATURE: fourcc = FOURCC_PCSG; break; 116 return (dxbc_chunk_signature*)dxbc_find_chunk(data, size, fourcc);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/ |
H A D | dxbc.h | 49 unsigned fourcc; member in struct:dxbc_chunk_header 81 unsigned fourcc; member in struct:dxbc_container_header 91 dxbc_chunk_header* dxbc_find_chunk(const void* data, int size, unsigned fourcc); 108 unsigned fourcc; local 110 case DXBC_FIND_INPUT_SIGNATURE: fourcc = FOURCC_ISGN; break; 111 case DXBC_FIND_OUTPUT_SIGNATURE: fourcc = FOURCC_OSGN; break; 112 case DXBC_FIND_PATCH_SIGNATURE: fourcc = FOURCC_PCSG; break; 116 return (dxbc_chunk_signature*)dxbc_find_chunk(data, size, fourcc);
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
H A D | videocommon.h | 26 // Common definition for video, including fourcc and VideoFormat. 60 // http://www.fourcc.org/yuv.php 114 // 14 Auxiliary aliases. CanonicalFourCC() maps these to canonical fourcc. 133 // Match any fourcc. 137 // Converts fourcc aliases into canonical ones. 138 uint32 CanonicalFourCC(uint32 fourcc); 141 inline std::string GetFourccName(uint32 fourcc) { argument 143 name.push_back(static_cast<char>(fourcc & 0xFF)); 144 name.push_back(static_cast<char>((fourcc >> 8) & 0xFF)); 145 name.push_back(static_cast<char>((fourcc >> 1 184 uint32 fourcc; // Color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormatPod [all...] |
H A D | fakevideocapturer.h | 81 GetCaptureFormat()->fourcc); 83 bool CaptureCustomFrame(int width, int height, uint32 fourcc) { argument 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) { 104 frame.fourcc = fourcc; 117 memcpy(frame.data, reinterpret_cast<const uint8*>(&fourcc), 4);
|
H A D | videocommon.cc | 58 uint32 CanonicalFourCC(uint32 fourcc) { argument 60 if (kFourCCAliases[i].alias == fourcc) { 65 return fourcc; 228 std::string fourcc_name = GetFourccName(fourcc) + " ";
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/ |
H A D | video_common.cc | 49 uint32 CanonicalFourCC(uint32 fourcc) { argument 52 if (kFourCCAliases[i].alias == fourcc) { 57 return fourcc;
|
/external/chromium_org/third_party/libyuv/source/ |
H A D | video_common.cc | 49 uint32 CanonicalFourCC(uint32 fourcc) { argument 52 if (kFourCCAliases[i].alias == fourcc) { 57 return fourcc;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
H A D | 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) argument 56 if(bswap_le32(header->fourcc) != FOURCC_DXBC) 63 if(bswap_le32(chunk->fourcc) == fourcc)
|
H A D | dxbc_dump.cpp | 38 memcpy(fourcc_str, &chunk->fourcc, 4);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
H A D | 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) argument 56 if(bswap_le32(header->fourcc) != FOURCC_DXBC) 63 if(bswap_le32(chunk->fourcc) == fourcc)
|
H A D | dxbc_dump.cpp | 38 memcpy(fourcc_str, &chunk->fourcc, 4);
|
/external/chromium_org/third_party/libvpx/source/libvpx/ |
H A D | ivfenc.h | 24 uint32_t fourcc,
|
H A D | ivfenc.c | 18 unsigned int fourcc, 28 mem_put_le32(header + 8, fourcc); // fourcc 16 ivf_write_file_header(FILE *outfile, const struct vpx_codec_enc_cfg *cfg, unsigned int fourcc, int frame_cnt) argument
|
H A D | webmenc.h | 45 unsigned int fourcc);
|
H A D | tools_common.h | 95 uint32_t fourcc; member in struct:VpxInputContext 130 const uint32_t fourcc; member in struct:VpxInterface 141 const VpxInterface *get_vpx_decoder_by_fourcc(uint32_t fourcc);
|
/external/libvpx/libvpx/ |
H A D | ivfenc.h | 24 uint32_t fourcc,
|
H A D | ivfenc.c | 18 unsigned int fourcc, 28 mem_put_le32(header + 8, fourcc); // fourcc 16 ivf_write_file_header(FILE *outfile, const struct vpx_codec_enc_cfg *cfg, unsigned int fourcc, int frame_cnt) argument
|
H A D | 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);
|
/external/chromium_org/media/formats/mp4/ |
H A D | fourccs.h | 91 const inline std::string FourCCToString(FourCC fourcc) { argument 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/ |
H A D | 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 [all...] |
/external/chromium_org/third_party/libyuv/unit_test/ |
H A D | video_common_test.cc | 31 static bool TestValidFourCC(uint32 fourcc, int bpp) { argument 32 if (!TestValidChar(fourcc & 0xff) || 33 !TestValidChar((fourcc >> 8) & 0xff) || 34 !TestValidChar((fourcc >> 16) & 0xff) || 35 !TestValidChar((fourcc >> 24) & 0xff)) {
|
/external/chromium_org/third_party/libwebp/webp/ |
H A D | mux.h | 145 // Adds a chunk with id 'fourcc' and data 'chunk_data' in the mux object. 149 // fourcc - (in) a character array containing the fourcc of the given chunk; 155 // WEBP_MUX_INVALID_ARGUMENT - if mux, fourcc or chunk_data is NULL 156 // or if fourcc corresponds to an image chunk. 160 WebPMux* mux, const char fourcc[4], const WebPData* chunk_data, 163 // Gets a reference to the data of the chunk with id 'fourcc' in the mux object. 167 // fourcc - (in) a character array containing the fourcc of the chunk; 171 // WEBP_MUX_INVALID_ARGUMENT - if mux, fourcc o [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
H A D | remotevideocapturer.cc | 85 best_format->fourcc = cricket::FOURCC_I420;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/ |
H A D | va_image.c | 88 switch (format->fourcc) { 96 VA_ERROR("Couldn't create image of type %0x08\n",format->fourcc);
|