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

12

/external/chromium_org/third_party/libyuv/unit_test/
H A Dvideo_common_test.cc31 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/libvpx/source/libvpx/
H A Divfenc.c18 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 Dwebmenc.cc27 unsigned int fourcc) {
51 video_track->set_codec_id(fourcc == VP8_FOURCC ? "V_VP8" : "V_VP9");
23 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 Dtools_common.c193 const VpxInterface *get_vpx_decoder_by_fourcc(uint32_t fourcc) { argument
198 if (decoder->fourcc == fourcc)
H A Dtools_common.h95 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/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dvideo_common.cc49 uint32 CanonicalFourCC(uint32 fourcc) { argument
52 if (kFourCCAliases[i].alias == fourcc) {
57 return fourcc;
H A Dconvert_to_argb.cc39 uint32 fourcc) {
40 uint32 format = CanonicalFourCC(fourcc);
148 // by adjusting fourcc.
309 r = -1; // unknown fourcc - return failure code.
33 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
H A Dconvert_to_i420.cc38 uint32 fourcc) {
39 uint32 format = CanonicalFourCC(fourcc);
177 // by adjusting fourcc.
361 r = -1; // unknown fourcc - return failure code.
29 ConvertToI420(const uint8* sample, size_t sample_size, uint8* y, int y_stride, uint8* u, int u_stride, uint8* v, int v_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
/external/chromium_org/third_party/libyuv/source/
H A Dvideo_common.cc49 uint32 CanonicalFourCC(uint32 fourcc) { argument
52 if (kFourCCAliases[i].alias == fourcc) {
57 return fourcc;
H A Dconvert_to_argb.cc39 uint32 fourcc) {
40 uint32 format = CanonicalFourCC(fourcc);
148 // by adjusting fourcc.
309 r = -1; // unknown fourcc - return failure code.
33 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
H A Dconvert_to_i420.cc38 uint32 fourcc) {
39 uint32 format = CanonicalFourCC(fourcc);
177 // by adjusting fourcc.
361 r = -1; // unknown fourcc - return failure code.
29 ConvertToI420(const uint8* sample, size_t sample_size, uint8* y, int y_stride, uint8* u, int u_stride, uint8* v, int v_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
/external/libvpx/libvpx/
H A Divfenc.c18 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
/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.h81 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 Dvideocommon.cc58 uint32 CanonicalFourCC(uint32 fourcc) { argument
60 if (kFourCCAliases[i].alias == fourcc) {
65 return fourcc;
228 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);
/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
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_regions.h150 int fourcc; member in struct:intel_image_format
/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.cc48 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/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/examples/
H A Dvp8_multi_resolution_encoder.c28 #define fourcc 0x30385056 macro
145 mem_put_le32(header+8, fourcc); /* headersize */

Completed in 705 milliseconds

12