Home
last modified time | relevance | path

Searched refs:fourcc (Results 1 – 12 of 12) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/session/phone/
Dvideocommon.h48 inline std::string GetFourccName(uint32 fourcc) { in GetFourccName() argument
50 name.push_back(static_cast<char>(fourcc & 0xFF)); in GetFourccName()
51 name.push_back(static_cast<char>((fourcc >> 8) & 0xFF)); in GetFourccName()
52 name.push_back(static_cast<char>((fourcc >> 16) & 0xFF)); in GetFourccName()
53 name.push_back(static_cast<char>((fourcc >> 24) & 0xFF)); in GetFourccName()
98 uint32 CanonicalFourCC(uint32 fourcc);
109 VideoFormat() : width(0), height(0), interval(0), fourcc(0) {} in VideoFormat()
115 fourcc(cc) { in VideoFormat()
122 fourcc(format.fourcc) { in VideoFormat()
137 interval == format.interval && fourcc == format.fourcc;
[all …]
/external/libyuv/files/source/
Dvideo_common.cc41 uint32 CanonicalFourCC(uint32 fourcc) { in CanonicalFourCC() argument
43 if (kFourCCAliases[i].alias == fourcc) { in CanonicalFourCC()
48 return fourcc; in CanonicalFourCC()
/external/webp/src/demux/
Ddemux.c211 const uint32_t fourcc = ReadLE32(mem); in StoreFrame() local
222 switch (fourcc) { in StoreFrame()
489 const uint32_t fourcc = ReadLE32(mem); in ParseVP8X() local
496 switch (fourcc) { in ParseVP8X()
855 static int ChunkCount(const WebPDemuxer* const dmux, const char fourcc[4]) { in ChunkCount()
861 if (!memcmp(header, fourcc, TAG_SIZE)) ++count; in ChunkCount()
867 const char fourcc[4], int chunk_num) { in GetChunk()
873 if (!memcmp(header, fourcc, TAG_SIZE)) ++count; in GetChunk()
879 static int SetChunk(const char fourcc[4], int chunk_num, in SetChunk()
884 if (dmux == NULL || fourcc == NULL || chunk_num < 0) return 0; in SetChunk()
[all …]
/external/libvpx/libvpx/
Dvpxdec.c56 unsigned int fourcc; member
388 unsigned int *fourcc, in file_is_ivf() argument
408 *fourcc = mem_get_le32(raw_hdr + 8); in file_is_ivf()
446 unsigned int *fourcc, in file_is_raw() argument
468 *fourcc = ifaces[i].fourcc; in file_is_raw()
575 unsigned int *fourcc, in file_is_webm() argument
617 *fourcc = VP8_FOURCC; in file_is_webm()
712 unsigned int fourcc; in main() local
901 if(file_is_ivf(infile, &fourcc, &width, &height, &fps_den, in main()
904 else if(file_is_webm(&input, &fourcc, &width, &height, &fps_den, &fps_num)) in main()
[all …]
Dvpxenc.c89 unsigned int fourcc; member
419 unsigned int *fourcc) in file_is_ivf() argument
444 *fourcc = mem_get_le32(raw_hdr + 8); in file_is_ivf()
461 unsigned int fourcc, in write_ivf_file_header() argument
475 mem_put_le32(header + 8, fourcc); /* headersize */ in write_ivf_file_header()
1679 unsigned int fourcc; in open_input_file() local
1709 else if (input->detect.buf_read == 4 && file_is_ivf(input, &fourcc)) in open_input_file()
1712 switch (fourcc) in open_input_file()
1721 fatal("Unsupported fourcc (%08x) in IVF", fourcc); in open_input_file()
2098 global->codec->fourcc, 0); in open_output_file()
[all …]
Dvp8_multi_resolution_encoder.c27 #define fourcc 0x30385056 macro
159 mem_put_le32(header+8, fourcc); /* headersize */ in write_ivf_file_header()
Dvp8_scalable_patterns.c25 #define fourcc 0x30385056 macro
88 mem_put_le32(header+8, fourcc); /* headersize */ in write_ivf_file_header()
/external/libvpx/libvpx/examples/
Dencoder_tmpl.c23 #define fourcc 0x30385056 macro
80 mem_put_le32(header+8, fourcc); /* headersize */ in write_ivf_file_header()
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDDSLoader.java258 int fourcc = in.readInt(); in readPixelFormat() local
262 switch (fourcc) { in readPixelFormat()
297 … throw new IOException("Unknown fourcc: " + string(fourcc) + ", " + Integer.toHexString(fourcc)); in readPixelFormat()
/external/webp/include/webp/
Ddemux.h194 const char fourcc[4], int chunk_number,
/external/libyuv/files/include/libyuv/
Dvideo_common.h152 LIBYUV_API uint32 CanonicalFourCC(uint32 fourcc);
/external/libmtp/src/
Dlibmtp.c3085 char fourcc[6]; in LIBMTP_Dump_Device_Info() local
3086 fourcc[0] = (opd.FORM.Enum.SupportedValue[k].u32 >> 24) & 0xFFU; in LIBMTP_Dump_Device_Info()
3087 fourcc[1] = (opd.FORM.Enum.SupportedValue[k].u32 >> 16) & 0xFFU; in LIBMTP_Dump_Device_Info()
3088 fourcc[2] = (opd.FORM.Enum.SupportedValue[k].u32 >> 8) & 0xFFU; in LIBMTP_Dump_Device_Info()
3089 fourcc[3] = opd.FORM.Enum.SupportedValue[k].u32 & 0xFFU; in LIBMTP_Dump_Device_Info()
3090 fourcc[4] = '\n'; in LIBMTP_Dump_Device_Info()
3091 fourcc[5] = '\0'; in LIBMTP_Dump_Device_Info()
3092 printf("\"%s\", ", fourcc); in LIBMTP_Dump_Device_Info()