Searched defs:fourcc (Results 1 - 25 of 35) sorted by relevance

12

/external/libyuv/files/source/
H A Dvideo_common.cc41 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/src/
H A Ddxbc_parse.cpp38 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)
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_parse.cpp38 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)
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfakevideocapturer.h75 GetCaptureFormat()->fourcc);
77 bool CaptureCustomFrame(int width, int height, uint32 fourcc) { argument
81 // Currently, |fourcc| is always I420 or ARGB.
82 // TODO(fbarchard): Extend SizeOf to take fourcc.
84 if (fourcc == cricket::FOURCC_ARGB) {
86 } else if (fourcc == cricket::FOURCC_I420) {
98 frame.fourcc = fourcc;
111 memcpy(frame.data, reinterpret_cast<const uint8*>(&fourcc), 4);
H A Dvideocapturer.h72 // fourcc. Return true if succeeded.
77 // fourcc, pixel_width, and pixel_height should keep the same over frames.
80 uint32 fourcc; // compression member in struct:cricket::CapturedFrame
152 // desired: the input desired format. If desired.fourcc is not kAnyFourcc,
153 // the best capture format has the exactly same fourcc. Otherwise,
154 // the best capture format uses a fourcc in GetPreferredFourccs().
230 // The fourcc component is ignored.
H A Dvideocommon.cc58 uint32 CanonicalFourCC(uint32 fourcc) { argument
60 if (kFourCCAliases[i].alias == fourcc) {
65 return fourcc;
222 std::string fourcc_name = GetFourccName(fourcc) + " ";
H A Dvideoframe.cc239 bool VideoFrame::Validate(uint32 fourcc, int w, int h, argument
249 uint32 format = CanonicalFourCC(fourcc);
H A Dvideocommon.h26 // 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
170 uint32 fourcc; // Color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormatPod
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_regions.h150 int fourcc; member in struct:intel_image_format
H A Dintel_screen.c480 int width, int height, int fourcc,
493 if (intel_image_formats[i].fourcc == fourcc) {
479 intel_create_image_from_names(__DRIscreen *screen, int width, int height, int fourcc, int *names, int num_names, int *strides, int *offsets, void *loaderPrivate) argument
/external/libvpx/libvpx/examples/
H A Dencoder_tmpl.c23 #define fourcc 0x30385056 macro
80 mem_put_le32(header+8, fourcc); /* headersize */
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_regions.h150 int fourcc; member in struct:intel_image_format
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dvideocommon.h26 // Common definition for video, including fourcc and VideoFormat
38 // Definition of fourcc.
40 // Convert four characters to a fourcc code.
47 // Get the name, that is, string with four characters, of a fourcc code.
48 inline std::string GetFourccName(uint32 fourcc) { argument
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));
60 // http://www.fourcc
158 uint32 fourcc; // color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormat
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtctexturevideoframe.cc56 uint32 fourcc, int w, int h, int dw, int dh, uint8* sample,
55 Reset( uint32 fourcc, int w, int h, int dw, int dh, uint8* sample, size_t sample_size, size_t pixel_width, size_t pixel_height, int64 elapsed_time, int64 time_stamp, int rotation) argument
H A Dwebrtcvideocapturer.cc46 uint32 fourcc; member in struct:cricket::kVideoFourCCEntry
79 uint32 fourcc = 0; local
82 fourcc = kSupportedFourCCs[i].fourcc;
86 if (fourcc == 0) {
90 format->fourcc = fourcc;
101 if (kSupportedFourCCs[i].fourcc == format.fourcc) {
235 best_format->fourcc
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
H A Ddxbc.h49 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/mesa/src/src/gallium/state_trackers/va/
H A Dva_surface.c124 vlVaLockSurface(VADriverContextP ctx, VASurfaceID surface, unsigned int *fourcc, argument
/external/libvpx/libvpx/
H A Dvp8_scalable_patterns.c25 #define fourcc 0x30385056 macro
88 mem_put_le32(header+8, fourcc); /* headersize */
H A Dwebmenc.c160 unsigned int fourcc) {
197 fourcc == VP8_FOURCC ? "V_VP8" : "V_VP9");
156 write_webm_file_header(struct EbmlGlobal *glob, const vpx_codec_enc_cfg_t *cfg, const struct vpx_rational *fps, stereo_format_t stereo_fmt, unsigned int fourcc) argument
H A Dvp8_multi_resolution_encoder.c27 #define fourcc 0x30385056 macro
159 mem_put_le32(header+8, fourcc); /* headersize */
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
H A Ddxbc.h49 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/va/
H A Dva_surface.c124 vlVaLockSurface(VADriverContextP ctx, VASurfaceID surface, unsigned int *fourcc, argument
/external/chromium_org/media/mp4/
H A Dfourccs.h87 const inline std::string FourCCToString(FourCC fourcc) { argument
89 buf[0] = (fourcc >> 24) & 0xff;
90 buf[1] = (fourcc >> 16) & 0xff;
91 buf[2] = (fourcc >> 8) & 0xff;
92 buf[3] = (fourcc) & 0xff;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_screen.c480 int width, int height, int fourcc,
493 if (intel_image_formats[i].fourcc == fourcc) {
479 intel_create_image_from_names(__DRIscreen *screen, int width, int height, int fourcc, int *names, int num_names, int *strides, int *offsets, void *loaderPrivate) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_screen.c480 int width, int height, int fourcc,
493 if (intel_image_formats[i].fourcc == fourcc) {
479 intel_create_image_from_names(__DRIscreen *screen, int width, int height, int fourcc, int *names, int num_names, int *strides, int *offsets, void *loaderPrivate) argument

Completed in 425 milliseconds

12