Searched defs:fourcc (Results 1 - 4 of 4) 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.cpp295 static const char *FourCC2MIME(uint32_t fourcc) { argument
296 switch (fourcc) {
323 static bool AdjustChannelsAndRate(uint32_t fourcc, uint32_t *channels, uint32_t *rate) { argument
324 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_NB, FourCC2MIME(fourcc))) {
329 } else if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_WB, FourCC2MIME(fourcc))) {
3614 static bool isCompatibleBrand(uint32_t fourcc) { argument
3635 if (kCompatibleBrands[i] == fourcc) {
H A DMPEG4Writer.cpp1126 void MPEG4Writer::beginBox(const char *fourcc) { argument
1127 CHECK_EQ(strlen(fourcc), 4);
1133 writeFourcc(fourcc);
2690 const char *fourcc = NULL; local
2692 fourcc = "samr";
2694 fourcc = "sawb";
2696 fourcc = "mp4a";
2702 mOwner->beginBox(fourcc); // audio format
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp38 static const char *Fourcc2String(uint32_t fourcc) { argument
41 buffer[0] = fourcc >> 24;
42 buffer[1] = (fourcc >> 16) & 0xff;
43 buffer[2] = (fourcc >> 8) & 0xff;
44 buffer[3] = fourcc & 0xff;

Completed in 112 milliseconds