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

/frameworks/av/include/media/stagefright/
H A DMPEG4Writer.h45 void beginBox(const char *fourcc);
51 void writeFourcc(const char *fourcc);
/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 DFragmentedMP4Extractor.cpp289 static bool isCompatibleBrand(uint32_t fourcc) { argument
310 if (kCompatibleBrands[i] == fourcc) {
H A DMPEG4Writer.cpp1025 void MPEG4Writer::beginBox(const char *fourcc) { argument
1026 CHECK_EQ(strlen(fourcc), 4);
1032 writeFourcc(fourcc);
2583 const char *fourcc = NULL; local
2585 fourcc = "samr";
2587 fourcc = "sawb";
2589 fourcc = "mp4a";
2595 mOwner->beginBox(fourcc); // audio format
H A DMPEG4Extractor.cpp238 static const char *FourCC2MIME(uint32_t fourcc) { argument
239 switch (fourcc) {
2330 static bool isCompatibleBrand(uint32_t fourcc) { argument
2351 if (kCompatibleBrands[i] == fourcc) {
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp37 static const char *Fourcc2String(uint32_t fourcc) { argument
40 buffer[0] = fourcc >> 24;
41 buffer[1] = (fourcc >> 16) & 0xff;
42 buffer[2] = (fourcc >> 8) & 0xff;
43 buffer[3] = fourcc & 0xff;

Completed in 979 milliseconds