HomeSort by relevance Sort by last modified time
    Searched defs:mime (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /frameworks/av/media/libstagefright/timedtext/
TimedTextSource.cpp 37 const char *mime; local
38 CHECK(mediaSource->getFormat()->findCString(kKeyMIMEType, &mime));
39 if (strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0) {
42 ALOGE("Unsupported mime type for subtitle. : %s", mime);
TimedText3GPPSource.cpp 71 const char *mime; local
72 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
73 CHECK(strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0);
95 const char *mime; local
96 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
97 CHECK(strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0);
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMPlugin.cpp 64 const MimeClassInfo& mime = pluginInfo().mimes[index]; local
68 if (mimes[i] == mime && m_pluginData->mimePluginIndices()[i] == m_index)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
__init__.py 40 'mime',
104 # email.MIME<old name> -> email.mime.<new name is lowercased old name>
120 import email.mime
122 importer = LazyImporter('mime.' + _name.lower())
123 sys.modules['email.MIME' + _name] = importer
124 setattr(sys.modules['email'], 'MIME' + _name, importer)
125 setattr(sys.modules['email.mime'], _name, importer)
118 import email.mime namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
__init__.py 40 'mime',
104 # email.MIME<old name> -> email.mime.<new name is lowercased old name>
120 import email.mime
122 importer = LazyImporter('mime.' + _name.lower())
123 sys.modules['email.MIME' + _name] = importer
124 setattr(sys.modules['email'], 'MIME' + _name, importer)
125 setattr(sys.modules['email.mime'], _name, importer)
118 import email.mime namespace
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 100 String8 mime; local
101 const void *data = tag.getAlbumArt(&dataSize, &mime);
104 printf("found album art: size=%zu mime='%s'\n", dataSize,
105 mime.string());
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /external/chromium_org/third_party/WebKit/Source/platform/plugins/
PluginData.cpp 132 const MimeClassInfo& mime = plugins[i].mimes[j]; local
133 const Vector<String>& extensions = mime.extensions;
136 return mime.type;
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 40 const char *mime; local
41 CHECK(meta->findCString(kKeyMIMEType, &mime));
43 mIsAudio = !strncasecmp(mime, "audio/", 6);
119 AString mime = tmp; local
121 ALOGI("MediaPuller(%s) stopping.", mime.c_str());
123 ALOGI("MediaPuller(%s) stopped.", mime.c_str());
  /frameworks/wilhelm/tests/examples/
slesTestPlayFdPath.cpp 61 SLDataFormat_MIME mime; local
120 mime.formatType = SL_DATAFORMAT_MIME;
121 /* this is how ignored mime information is specified, according to OpenSL ES spec
123 mime.mimeType = (SLchar*)NULL;
124 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
126 audioSource.pFormat = (void*)&mime;
  /frameworks/wilhelm/tests/listening/
seekTorture.c 60 SLDataFormat_MIME mime; local
65 mime.formatType = SL_DATAFORMAT_MIME;
66 mime.mimeType = (SLchar *) NULL;
67 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
69 audiosrc.pFormat = &mime;
  /frameworks/wilhelm/tests/mimeUri/
slesTestPlayStreamType.cpp 59 SLDataFormat_MIME mime; local
118 mime.formatType = SL_DATAFORMAT_MIME;
119 /* this is how ignored mime information is specified, according to OpenSL ES spec
121 mime.mimeType = (SLchar*)NULL;
122 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
124 audioSource.pFormat = (void*)&mime;
slesTestPlayUri2.cpp 74 SLDataFormat_MIME mime; local
127 mime.formatType = SL_DATAFORMAT_MIME;
128 /* this is how ignored mime information is specified, according to OpenSL ES spec
130 mime.mimeType = (SLchar*)NULL;
131 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
133 audioSource.pFormat = (void *)&mime;
slesTest_playStates.cpp 59 SLDataFormat_MIME mime; local
113 mime.formatType = SL_DATAFORMAT_MIME;
114 /* this is how ignored mime information is specified, according to OpenSL ES spec
116 mime.mimeType = (SLchar*)NULL;
117 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
119 audioSource.pFormat = (void*)&mime;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
CharsetUtil.java 45 * MIME character set names and to get a list of known aliases.
51 * <td>MIME preferred</td>
799 private String mime = null; field in class:CharsetUtil.Charset
802 private Charset(String canonical, String mime, String[] aliases) {
804 this.mime = mime;
    [all...]
  /cts/tests/tests/drm/src/android/drm/cts/
DrmSupportInfoTest.java 130 fail("Mime type '" + mimeType + "' was accepted for DrmSupportInfo");
141 String mime = (String) mimes.next(); local
142 assertEquals(mime, mimeType);
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 21 package org.ksoap2.kobjects.mime;
  /frameworks/av/media/libmedia/
ICrypto.cpp 85 const char *mime) const {
88 data.writeCString(mime);
218 const char *mime = data.readCString(); local
219 reply->writeInt32(requiresSecureDecoderComponent(mime));
MediaCodecInfo.cpp 125 MediaCodecInfo::getCapabilitiesFor(const char *mime) const {
126 ssize_t ix = getCapabilityIndex(mime);
151 AString mime = AString::FromParcel(parcel); local
154 info->mCaps.add(mime, caps);
175 ssize_t MediaCodecInfo::getCapabilityIndex(const char *mime) const {
177 if (mCaps.keyAt(ix).equalsIgnoreCase(mime)) {
184 MediaCodecInfo::MediaCodecInfo(AString name, bool encoder, const char *mime)
188 if (mime != NULL) {
189 addMime(mime);
194 status_t MediaCodecInfo::addMime(const char *mime) {
    [all...]
  /frameworks/av/media/libstagefright/
AMRWriter.cpp 82 const char *mime; local
83 CHECK(meta->findCString(kKeyMIMEType, &mime));
86 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_WB)) {
88 } else if (strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_NB)) {
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 132 const char *mime; local
133 CHECK(meta->findCString(kKeyMIMEType, &mime));
135 if (!strncasecmp("audio/", mime, 6)) {
  /frameworks/av/media/libstagefright/wifi-display/
MediaSender.cpp 78 AString mime; local
79 CHECK(format->findString("mime", &mime));
80 info.mIsAudio = !strncasecmp("audio/", mime.c_str(), 6);
  /frameworks/base/media/java/android/media/
MediaCodecList.java 211 String mime = format.getString(MediaFormat.KEY_MIME); local
217 MediaCodecInfo.CodecCapabilities caps = info.getCapabilitiesForType(mime);

Completed in 537 milliseconds

1 2 3 4 5 6