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

/frameworks/av/media/libstagefright/foundation/
H A DALooperRoster.cpp103 static void makeFourCC(uint32_t fourcc, char *s, size_t bufsz) { argument
104 s[0] = (fourcc >> 24) & 0xff;
106 s[1] = (fourcc >> 16) & 0xff;
107 s[2] = (fourcc >> 8) & 0xff;
108 s[3] = fourcc & 0xff;
111 snprintf(s, bufsz, "%u", fourcc);
148 char fourcc[15]; local
149 makeFourCC(handler->mMessages.keyAt(j), fourcc, sizeof(fourcc));
151 fourcc,
[all...]
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h42 static inline constexpr uint32_t fourcc(char c1, char c2, char c3, char c4) { function in namespace:android
53 DISPLAY_EVENT_VSYNC = fourcc('v', 's', 'y', 'n'),
54 DISPLAY_EVENT_HOTPLUG = fourcc('p', 'l', 'u', 'g'),
/frameworks/av/include/media/stagefright/
H A DMPEG4Writer.h52 void beginBox(const char *fourcc);
59 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 DMPEG4Writer.cpp1342 void MPEG4Writer::beginBox(const char *fourcc) { argument
1343 CHECK_EQ(strlen(fourcc), 4);
1349 writeFourcc(fourcc);
3244 const char *fourcc = getFourCCForMime(mime); local
3245 if (fourcc == NULL) {
3249 mOwner->beginBox(fourcc); // TextMetaDataSampleEntry
3258 const char *fourcc = getFourCCForMime(mime); local
3259 if (fourcc == NULL) {
3264 mOwner->beginBox(fourcc); // video format
3331 const char *fourcc local
[all...]
H A DMPEG4Extractor.cpp326 static const char *FourCC2MIME(uint32_t fourcc) { argument
327 switch (fourcc) {
357 static bool AdjustChannelsAndRate(uint32_t fourcc, uint32_t *channels, uint32_t *rate) { argument
358 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_NB, FourCC2MIME(fourcc))) {
363 } else if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_WB, FourCC2MIME(fourcc))) {
5187 static bool isCompatibleBrand(uint32_t fourcc) { argument
5210 if (kCompatibleBrands[i] == fourcc) {
/frameworks/av/media/libstagefright/foundation/include/
H A DMPEG4Writer.h52 void beginBox(const char *fourcc);
59 void writeFourcc(const char *fourcc);
/frameworks/av/media/libstagefright/include/
H A DMPEG4Writer.h52 void beginBox(const char *fourcc);
59 void writeFourcc(const char *fourcc);

Completed in 311 milliseconds