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/native/libs/gui/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.h51 void beginBox(const char *fourcc);
58 void writeFourcc(const char *fourcc);
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DMPEG4Writer.h51 void beginBox(const char *fourcc);
58 void writeFourcc(const char *fourcc);
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp1493 void MPEG4Writer::beginBox(const char *fourcc) { argument
1494 CHECK_EQ(strlen(fourcc), 4u);
1500 writeFourcc(fourcc);
3671 const char *fourcc = getFourCCForMime(mime); local
3672 if (fourcc == NULL) {
3676 mOwner->beginBox(fourcc); // TextMetaDataSampleEntry
3685 const char *fourcc = getFourCCForMime(mime); local
3686 if (fourcc == NULL) {
3691 mOwner->beginBox(fourcc); // video format
3758 const char *fourcc local
[all...]
/frameworks/av/media/extractors/mp4/
H A DMPEG4Extractor.cpp302 static const char *FourCC2MIME(uint32_t fourcc) { argument
303 switch (fourcc) {
328 ALOGW("Unknown fourcc: %c%c%c%c",
329 (fourcc >> 24) & 0xff,
330 (fourcc >> 16) & 0xff,
331 (fourcc >> 8) & 0xff,
332 fourcc & 0xff
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))) {
5403 isCompatibleBrand(uint32_t fourcc) argument
[all...]
/frameworks/native/opengl/include/EGL/
H A Deglext.h992 typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEQUERYMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers);
995 EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers);

Completed in 247 milliseconds