HomeSort by relevance Sort by last modified time
    Searched refs:fourcc (Results 1 - 21 of 21) sorted by null

  /external/chromium/third_party/libjingle/source/talk/session/phone/
videocommon.h 26 // Common definition for video, including fourcc and VideoFormat
38 // Definition of fourcc.
40 // Convert four characters to a fourcc code.
43 #define FOURCC(a, b, c, d) (\
47 // Get the name, that is, string with four characters, of a fourcc code.
48 inline std::string GetFourccName(uint32 fourcc) {
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))
158 uint32 fourcc; \/\/ color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormat
    [all...]
  /external/libyuv/files/source/
video_common.cc 41 uint32 CanonicalFourCC(uint32 fourcc) {
43 if (kFourCCAliases[i].alias == fourcc) {
48 return fourcc;
  /external/webp/src/demux/
demux.c 211 const uint32_t fourcc = ReadLE32(mem); local
222 switch (fourcc) {
265 // Restore fourcc/size when moving up one level in parsing.
371 // the user to request the payload via a fourcc string. 'size' includes the
489 const uint32_t fourcc = ReadLE32(mem); local
496 switch (fourcc) {
855 static int ChunkCount(const WebPDemuxer* const dmux, const char fourcc[4]) {
861 if (!memcmp(header, fourcc, TAG_SIZE)) ++count;
867 const char fourcc[4], int chunk_num) {
873 if (!memcmp(header, fourcc, TAG_SIZE)) ++count
913 const char* const fourcc = local
922 const char* const fourcc = local
    [all...]
  /external/libvpx/libvpx/
vpxdec.c 56 unsigned int fourcc; member in struct:__anon11018
388 unsigned int *fourcc,
408 *fourcc = mem_get_le32(raw_hdr + 8);
446 unsigned int *fourcc,
468 *fourcc = ifaces[i].fourcc;
575 unsigned int *fourcc,
617 *fourcc = VP8_FOURCC;
712 unsigned int fourcc; local
901 if(file_is_ivf(infile, &fourcc, &width, &height, &fps_den
    [all...]
vpxenc.c 89 unsigned int fourcc; member in struct:codec_item
419 unsigned int *fourcc)
444 *fourcc = mem_get_le32(raw_hdr + 8);
461 unsigned int fourcc,
475 mem_put_le32(header + 8, fourcc); /* headersize */
1679 unsigned int fourcc; local
    [all...]
vp8_multi_resolution_encoder.c 27 #define fourcc 0x30385056 macro
159 mem_put_le32(header+8, fourcc); /* headersize */
vp8_scalable_patterns.c 25 #define fourcc 0x30385056 macro
88 mem_put_le32(header+8, fourcc); /* headersize */
  /external/libvpx/libvpx/examples/
encoder_tmpl.c 23 #define fourcc 0x30385056 macro
80 mem_put_le32(header+8, fourcc); /* headersize */
  /frameworks/av/include/media/stagefright/
MPEG4Writer.h 51 void beginBox(const char *fourcc);
57 void writeFourcc(const char *fourcc);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
msm_q6vdec.h 92 u32 fourcc; member in struct:vdec_config
200 u32 fourcc; member in struct:vdec_dec_attributes
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
msm_q6vdec.h 92 u32 fourcc; member in struct:vdec_config
200 u32 fourcc; member in struct:vdec_dec_attributes
  /external/libyuv/files/include/libyuv/
video_common.h 11 // Common definitions for video, including fourcc and VideoFormat.
24 // Definition of FourCC codes
27 // Convert four characters to a FourCC code.
30 #define FOURCC(a, b, c, d) ( \
34 // Some pages discussing FourCC codes:
35 // http://www.fourcc.org/yuv.php
41 enum FourCC {
42 // Canonical fourcc codes used in our code.
43 FOURCC_I420 = FOURCC('I', '4', '2', '0'),
44 FOURCC_I422 = FOURCC('I', '4', '2', '2')
    [all...]
  /external/webp/include/webp/
demux.h 174 // The current and total number of chunks with the fourcc given to
184 // Retrieves the 'chunk_number' instance of the chunk with id 'fourcc' from
186 // 'fourcc' is a character array containing the fourcc of the chunk to return,
194 const char fourcc[4], int chunk_number,
  /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
  /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 2690 const char *fourcc = NULL; local
    [all...]
MPEG4Extractor.cpp 295 static const char *FourCC2MIME(uint32_t fourcc) {
296 switch (fourcc) {
297 case FOURCC('m', 'p', '4', 'a'):
300 case FOURCC('s', 'a', 'm', 'r'):
303 case FOURCC('s', 'a', 'w', 'b'):
306 case FOURCC('m', 'p', '4', 'v'):
309 case FOURCC('s', '2', '6', '3'):
310 case FOURCC('h', '2', '6', '3'):
311 case FOURCC('H', '2', '6', '3'):
314 case FOURCC('a', 'v', 'c', '1')
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 258 int fourcc = in.readInt(); local
262 switch (fourcc) {
297 throw new IOException("Unknown fourcc: " + string(fourcc) + ", " + Integer.toHexString(fourcc));
304 logger.warning("Must use linear size with fourcc");
316 // skip fourCC
815 * Converts a int representing a FourCC into a String
  /frameworks/av/media/libstagefright/mp4/
FragmentedMP4Parser.cpp 38 static const char *Fourcc2String(uint32_t fourcc) {
41 buffer[0] = fourcc >> 24;
42 buffer[1] = (fourcc >> 16) & 0xff;
43 buffer[2] = (fourcc >> 8) & 0xff;
44 buffer[3] = fourcc & 0xff;
56 { FOURCC('m', 'o', 'o', 'v'), 0, NULL },
57 { FOURCC('t', 'r', 'a', 'k'), FOURCC('m', 'o', 'o', 'v'), NULL },
58 { FOURCC('u', 'd', 't', 'a'), FOURCC('t', 'r', 'a', 'k'), NULL }
    [all...]
  /external/libmtp/src/
libmtp.c 3085 char fourcc[6]; local
    [all...]

Completed in 1498 milliseconds