Searched defs:mime (Results 101 - 106 of 106) sorted by relevance

12345

/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp469 const char *mime; local
470 CHECK(track->meta->findCString(kKeyMIMEType, &mime));
471 if (!strncasecmp("video/", mime, 6)) {
473 if (!strcmp(mime, MEDIA_MIMETYPE_VIDEO_MPEG2)) {
1372 const char *mime; local
1377 CHECK(mLastTrack->meta->findCString(kKeyMIMEType, &mime));
1378 if (strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) &&
1379 strcasecmp(mime, "application/octet-stream")) {
1662 const char *mime; local
1663 CHECK(mLastTrack->meta->findCString(kKeyMIMEType, &mime));
1679 const char *mime; local
3246 String8 mime; local
3294 const char *mime; local
3338 const char *mime; local
3759 const char *mime; local
5148 const char *mime; local
[all...]
H A DMPEG4Writer.cpp123 static const char *getFourCCForMime(const char *mime);
525 const char *MPEG4Writer::Track::getFourCCForMime(const char *mime) { argument
526 if (mime == NULL) {
529 if (!strncasecmp(mime, "audio/", 6)) {
530 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_NB, mime)) {
532 } else if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_WB, mime)) {
534 } else if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AAC, mime)) {
537 } else if (!strncasecmp(mime, "video/", 6)) {
538 if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_MPEG4, mime)) {
540 } else if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_H263, mime)) {
564 const char *mime; local
1635 const char *mime; local
1822 const char *mime; local
3169 const char *mime; local
3241 const char *mime; local
3255 const char *mime; local
3328 const char *mime; local
[all...]
H A DACodec.cpp1698 bool isEncoder, const char *mime) {
1699 const char *role = GetComponentRole(isEncoder, mime);
1712 const char *mime, const sp<AMessage> &msg) {
1727 status_t err = setComponentRole(encoder /* isEncoder */, mime);
1735 if (encoder && strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_FLAC)
1802 int32_t video = !strncasecmp(mime, "video/", 6);
2031 err = setupVideoEncoder(mime, msg, outputFormat, inputFormat);
2033 err = setupVideoDecoder(mime, msg, haveNativeWindow, usingSwRenderer, outputFormat);
2078 mime, msg, haveNativeWindow, usingSwRenderer, outputFormat);
2087 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_MPE
1697 setComponentRole( bool isEncoder, const char *mime) argument
1711 configureCodec( const char *mime, const sp<AMessage> &msg) argument
3223 GetVideoCodingTypeFromMime( const char *mime, OMX_VIDEO_CODINGTYPE *codingType) argument
3239 GetMimeTypeForVideoCoding( OMX_VIDEO_CODINGTYPE codingType, AString *mime) argument
3278 setupVideoDecoder( const char *mime, const sp<AMessage> &msg, bool haveNativeWindow, bool usingSwRenderer, sp<AMessage> &outputFormat) argument
3710 setupVideoEncoder( const char *mime, const sp<AMessage> &msg, sp<AMessage> &outputFormat, sp<AMessage> &inputFormat) argument
4920 AString mime; local
5161 const char *mime = NULL; local
5286 AString mime; local
6351 AString mime; local
6563 AString mime; local
8201 queryCapabilities( const AString &name, const AString &mime, bool isEncoder, sp<MediaCodecInfo::Capabilities> *caps) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaCodecInfo.java624 final String mime = (String)map.get(MediaFormat.KEY_MIME);
626 // mime must match if present
627 if (mime != null && !mMime.equalsIgnoreCase(mime)) {
779 * Returns the mime type for which this codec-capability object was created.
843 * Retrieve the codec capabilities for a certain {@code mime type}, {@code
851 String mime, int profile, int level) {
856 defaultFormat.setString(MediaFormat.KEY_MIME, mime);
1071 String mime = mParent.getMimeType();
1073 if (mime
850 createFromProfileLevel( String mime, int profile, int level) argument
[all...]
H A DMediaPlayer.java2315 // even for audio/video tracks, meaning we only set the mime and language.
2316 String mime = in.readString();
2318 mFormat = MediaFormat.createSubtitleFormat(mime, language);
2481 * A helper function to check if the mime type is supported by media framework.
2700 * @param mimeType The mime type of the file. Must be one of the mime types listed above.
2734 * @param mimeType The mime type of the file. Must be one of the mime types listed above.
2777 * @param mimeType The mime type of the file. Must be one of the mime type
2805 addTimedTextSource(FileDescriptor fd, long offset, long length, String mime) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 596 milliseconds

12345