/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/libvpx/ |
vpxdec.c | 56 unsigned int fourcc; member in struct:__anon7515 381 unsigned int *fourcc, 401 *fourcc = mem_get_le32(raw_hdr + 8); 439 unsigned int *fourcc, 461 *fourcc = ifaces[i].fourcc; 568 unsigned int *fourcc, 612 *fourcc = VP8_FOURCC; 706 unsigned int fourcc; local 884 if(file_is_ivf(infile, &fourcc, &width, &height, &fps_den [all...] |
vpxenc.c | 75 unsigned int fourcc; member in struct:codec_item 361 unsigned int *fourcc, 385 *fourcc = mem_get_le32(raw_hdr + 8); 402 unsigned int fourcc, 416 mem_put_le32(header + 8, fourcc); /* headersize */ 1112 unsigned int file_type, fourcc; local [all...] |
/bionic/libc/kernel/common/linux/ |
msm_q6vdec.h | 92 u32 fourcc; member in struct:vdec_config 200 u32 fourcc; member in struct:vdec_dec_attributes
|
/external/kernel-headers/original/linux/ |
msm_q6vdec.h | 111 u32 fourcc; /* video format */ member in struct:vdec_config 219 u32 fourcc; member in struct:vdec_dec_attributes
|
/external/libvpx/examples/ |
encoder_tmpl.c | 23 #define fourcc 0x30385056 macro 80 mem_put_le32(header+8, fourcc); /* headersize */
|
/frameworks/base/include/media/stagefright/ |
MPEG4Writer.h | 45 void beginBox(const char *fourcc); 51 void writeFourcc(const char *fourcc);
|
/prebuilt/ndk/android-ndk-r4/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
|
/prebuilt/ndk/android-ndk-r4/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
|
/frameworks/base/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 | 905 void MPEG4Writer::beginBox(const char *fourcc) { 906 CHECK_EQ(strlen(fourcc), 4); 912 writeFourcc(fourcc); [all...] |
MPEG4Extractor.cpp | 236 static const char *FourCC2MIME(uint32_t fourcc) { 237 switch (fourcc) { 238 case FOURCC('m', 'p', '4', 'a'): 241 case FOURCC('s', 'a', 'm', 'r'): 244 case FOURCC('s', 'a', 'w', 'b'): 247 case FOURCC('m', 'p', '4', 'v'): 250 case FOURCC('s', '2', '6', '3'): 251 case FOURCC('h', '2', '6', '3'): 252 case FOURCC('H', '2', '6', '3'): 255 case FOURCC('a', 'v', 'c', '1') [all...] |