Searched refs:fourcc (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/include/media/stagefright/
H A DMPEG4Writer.h45 void beginBox(const char *fourcc);
51 void writeFourcc(const char *fourcc);
/frameworks/base/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 DMPEG4Writer.cpp905 void MPEG4Writer::beginBox(const char *fourcc) {
906 CHECK_EQ(strlen(fourcc), 4);
912 writeFourcc(fourcc);
2427 const char *fourcc = NULL;
2429 fourcc = "samr";
2431 fourcc = "sawb";
2433 fourcc = "mp4a";
2439 mOwner->beginBox(fourcc); // audio format
H A DMPEG4Extractor.cpp237 static const char *FourCC2MIME(uint32_t fourcc) { argument
238 switch (fourcc) {
2274 static bool isCompatibleBrand(uint32_t fourcc) { argument
2295 if (kCompatibleBrands[i] == fourcc) {

Completed in 68 milliseconds