HomeSort by relevance Sort by last modified time
    Searched defs:fourcc (Results 26 - 40 of 40) sorted by null

12

  /external/webp/src/demux/
demux.c 220 const uint32_t fourcc = ReadLE32(mem); local
231 switch (fourcc) {
272 // Restore fourcc/size when moving up one level in parsing.
348 // the user to request the payload via a fourcc string. 'size' includes the
445 const uint32_t fourcc = ReadLE32(mem); local
452 switch (fourcc) {
888 static int ChunkCount(const WebPDemuxer* const dmux, const char fourcc[4]) {
894 if (!memcmp(header, fourcc, TAG_SIZE)) ++count;
900 const char fourcc[4], int chunk_num) {
906 if (!memcmp(header, fourcc, TAG_SIZE)) ++count
946 const char* const fourcc = local
955 const char* const fourcc = local
    [all...]
  /frameworks/av/media/libstagefright/
AVIExtractor.cpp 434 uint32_t fourcc = U32_AT(tmp); local
444 if (fourcc == FOURCC('L', 'I', 'S', 'T')
445 || fourcc == FOURCC('R', 'I', 'F', 'F')) {
469 if (subFourcc == FOURCC('m', 'o', 'v', 'i')) {
492 (char)(fourcc >> 24),
493 (char)((fourcc >> 16) & 0xff),
494 (char)((fourcc >> 8) & 0xff),
495 (char)(fourcc & 0xff))
    [all...]
MPEG4Writer.cpp 3288 const char *fourcc = getFourCCForMime(mime); local
3302 const char *fourcc = getFourCCForMime(mime); local
3375 const char *fourcc = getFourCCForMime(mime); local
    [all...]
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 39 uint32_t fourcc; //NV12 member in struct:VideoFrameRawData
  /hardware/intel/common/libva/va/
va_trace.c 129 unsigned int *fourcc, /* following are output argument */
291 unsigned int fourcc; /* following are output argument */ local
314 &fourcc,
324 va_TraceMsg(trace_ctx, "\tfourcc = 0x%08x\n", fourcc);
356 if (fourcc == VA_FOURCC_NV12) {
    [all...]
va.h 650 /* RGBP covers RGBP and BGRP fourcc */
2786 unsigned int fourcc; member in struct:_VAImageFormat
    [all...]
  /hardware/intel/img/psb_video/src/
psb_drv_video.c 739 unsigned long fourcc; local
913 fourcc = VA_FOURCC_YV32; /* allocate 4 planar */
916 fourcc = VA_FOURCC_YV16;
920 fourcc = VA_FOURCC_NV12;
925 vaStatus = psb_surface_create(driver_data, width, height, fourcc,
936 /* by default, surface fourcc is NV12 */
937 psb_surface->extra_info[4] = fourcc;
938 psb_surface->extra_info[8] = fourcc;
    [all...]
psb_output.c 211 if (dst_format[i].fourcc == src_format->fourcc)
215 drv_debug_msg(VIDEO_DEBUG_ERROR, "Unsupport fourcc 0x%x\n", src_format->fourcc);
312 switch (format->fourcc) {
473 unsigned int fourcc, fourcc_index = ~0, i; local
495 fourcc = obj_surface->psb_surface->extra_info[4];
497 if (psb__CreateImageFormat[i].fourcc == fourcc) {
503 drv_debug_msg(VIDEO_DEBUG_ERROR, "Can't support the Fourcc\n")
    [all...]
  /external/ImageMagick/coders/
dds.c 120 fourcc,
118 fourcc, member in struct:_DDSPixelFormat
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_q6vdec.h 137 u32 fourcc; member in struct:vdec_config
252 u32 fourcc; member in struct:vdec_dec_attributes
290 u32 fourcc; member in union:vdec_property
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_q6vdec.h 116 u32 fourcc; /* video format */ member in struct:vdec_config
224 u32 fourcc; member in struct:vdec_dec_attributes
259 u32 fourcc; member in union:vdec_property
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_q6vdec.h 137 u32 fourcc; member in struct:vdec_config
252 u32 fourcc; member in struct:vdec_dec_attributes
290 u32 fourcc; member in union:vdec_property
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_q6vdec.h 116 u32 fourcc; /* video format */ member in struct:vdec_config
224 u32 fourcc; member in struct:vdec_dec_attributes
259 u32 fourcc; member in union:vdec_property
  /hardware/intel/common/libva/test/encode/
h264encode.c 623 static char *fourcc_to_string(int fourcc)
625 switch (fourcc) {
641 int fourcc; local
644 fourcc = VA_FOURCC_NV12;
646 fourcc = VA_FOURCC_IYUV;
648 fourcc = VA_FOURCC_YV12;
650 fourcc = VA_FOURCC_UYVY;
652 printf("Unknow FOURCC\n");
653 fourcc = -1;
655 return fourcc;
    [all...]
  /external/libmtp/src/
libmtp.c 3406 char fourcc[6]; local
    [all...]

Completed in 421 milliseconds

12