Home
last modified time | relevance | path

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

/frameworks/av/include/media/stagefright/
DMPEG4Writer.h51 void beginBox(const char *fourcc);
57 void writeFourcc(const char *fourcc);
/frameworks/av/media/libstagefright/
DAVIExtractor.cpp434 uint32_t fourcc = U32_AT(tmp); in parseChunk() local
444 if (fourcc == FOURCC('L', 'I', 'S', 'T') in parseChunk()
445 || fourcc == FOURCC('R', 'I', 'F', 'F')) { in parseChunk()
492 (char)(fourcc >> 24), in parseChunk()
493 (char)((fourcc >> 16) & 0xff), in parseChunk()
494 (char)((fourcc >> 8) & 0xff), in parseChunk()
495 (char)(fourcc & 0xff)); in parseChunk()
499 switch (fourcc) { in parseChunk()
DMPEG4Writer.cpp1143 void MPEG4Writer::beginBox(const char *fourcc) { in beginBox() argument
1144 CHECK_EQ(strlen(fourcc), 4); in beginBox()
1150 writeFourcc(fourcc); in beginBox()
2744 const char *fourcc = NULL; in writeAudioFourCCBox() local
2746 fourcc = "samr"; in writeAudioFourCCBox()
2748 fourcc = "sawb"; in writeAudioFourCCBox()
2750 fourcc = "mp4a"; in writeAudioFourCCBox()
2756 mOwner->beginBox(fourcc); // audio format in writeAudioFourCCBox()
DMPEG4Extractor.cpp307 static const char *FourCC2MIME(uint32_t fourcc) { in FourCC2MIME() argument
308 switch (fourcc) { in FourCC2MIME()
338 static bool AdjustChannelsAndRate(uint32_t fourcc, uint32_t *channels, uint32_t *rate) { in AdjustChannelsAndRate() argument
339 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_NB, FourCC2MIME(fourcc))) { in AdjustChannelsAndRate()
344 } else if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_WB, FourCC2MIME(fourcc))) { in AdjustChannelsAndRate()
4257 static bool isCompatibleBrand(uint32_t fourcc) { in isCompatibleBrand() argument
4280 if (kCompatibleBrands[i] == fourcc) { in isCompatibleBrand()