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.cpp307 static const char *FourCC2MIME(uint32_t fourcc) { argument
308 switch (fourcc) {
338 static bool AdjustChannelsAndRate(uint32_t fourcc, uint32_t *channels, uint32_t *rate) { argument
339 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_NB, FourCC2MIME(fourcc))) {
344 } else if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_WB, FourCC2MIME(fourcc))) {
4257 static bool isCompatibleBrand(uint32_t fourcc) { argument
4280 if (kCompatibleBrands[i] == fourcc) {
H A DMPEG4Writer.cpp1143 void MPEG4Writer::beginBox(const char *fourcc) { argument
1144 CHECK_EQ(strlen(fourcc), 4);
1150 writeFourcc(fourcc);
2744 const char *fourcc = NULL; local
2746 fourcc = "samr";
2748 fourcc = "sawb";
2750 fourcc = "mp4a";
2756 mOwner->beginBox(fourcc); // audio format

Completed in 32 milliseconds