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

/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp434 uint32_t fourcc = U32_AT(tmp); local
444 if (fourcc == FOURCC('L', 'I', 'S', 'T')
445 || fourcc == FOURCC('R', 'I', 'F', 'F')) {
492 (char)(fourcc >> 24),
493 (char)((fourcc >> 16) & 0xff),
494 (char)((fourcc >> 8) & 0xff),
495 (char)(fourcc & 0xff));
499 switch (fourcc) {
H A DMPEG4Extractor.cpp237 static const char *FourCC2MIME(uint32_t fourcc) { argument
238 switch (fourcc) {
2318 static bool isCompatibleBrand(uint32_t fourcc) { argument
2339 if (kCompatibleBrands[i] == fourcc) {
H A DMPEG4Writer.cpp918 void MPEG4Writer::beginBox(const char *fourcc) { argument
919 CHECK_EQ(strlen(fourcc), 4);
925 writeFourcc(fourcc);
2458 const char *fourcc = NULL; local
2460 fourcc = "samr";
2462 fourcc = "sawb";
2464 fourcc = "mp4a";
2470 mOwner->beginBox(fourcc); // audio format

Completed in 46 milliseconds