/frameworks/av/drm/libdrmframework/plugins/common/include/ |
DrmEngineBase.h | 84 int fd, off64_t offset, off64_t length, const char* mime); 88 const char* uri, const char* mime); 221 * Retrieves the mime type embedded inside the original content 227 * Returns mime-type of the original content, such as "video/mpeg" 238 * @param[in] mimeType Mime type of the content or null. 395 * @param[in] mime Mime type of the protected content 396 * drm plugin may do some optimization since the mime type is known. 403 const char* mime) { 427 * @param[in] mime Mime type of the protected content. The correspondin [all...] |
/frameworks/av/include/media/stagefright/ |
ACodec.h | 230 status_t setComponentRole(bool isEncoder, const char *mime); 231 status_t configureCodec(const char *mime, const sp<AMessage> &msg); 241 const char *mime, int32_t width, int32_t height); 244 const char *mime, const sp<AMessage> &msg);
|
Utils.h | 53 // Convert a MIME type to a AudioSystem::audio_format 54 status_t mapMimeToAudioFormat(audio_format_t& format, const char* 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));
|
/frameworks/av/media/libmediaplayerservice/ |
Crypto.h | 46 const char *mime) const;
|
/frameworks/av/media/libstagefright/ |
AMRWriter.cpp | 80 const char *mime; local 81 CHECK(meta->findCString(kKeyMIMEType, &mime)); 84 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_WB)) { 86 } else if (strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_NB)) {
|
MPEG4Writer.cpp | 444 const char *mime; local 445 source->getFormat()->findCString(kKeyMIMEType, &mime); 446 bool isAudio = !strncasecmp(mime, "audio/", 6); 447 bool isVideo = !strncasecmp(mime, "video/", 6); 450 mime); 1362 const char *mime; local 1457 const char *mime; local 2568 const char *mime; local 2635 const char *mime; local 2689 const char *mime; local [all...] |
NuMediaExtractor.cpp | 108 // at the container mime type. 190 const char *mime; local 191 CHECK(meta->findCString(kKeyMIMEType, &mime)); 192 ALOGV("track of type '%s' does not publish bitrate", mime); 242 const char *mime; local 243 CHECK(meta->findCString(kKeyMIMEType, &mime)); 245 (*format)->setString("mime", mime); 293 const char *mime; local 294 CHECK(source->getFormat()->findCString(kKeyMIMEType, &mime)); [all...] |
/frameworks/av/media/libstagefright/include/ |
ID3.h | 46 const void *getAlbumArt(size_t *length, String8 *mime) const;
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
MessageAttachmentTile.java | 155 final String mime = Utils.normalizeMimeType(mAttachment.getContentType()); local 158 .sendEvent("view_attachment", mime, "attachment_tile", mAttachment.size); 160 if (ImageUtils.isImageMimeType(mime)) { 170 intent, mAttachment.contentUri, mime);
|
/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/wilhelm/src/android/ |
android_AudioSfDecoder.cpp | 239 const char *mime; local 240 CHECK(meta->findCString(kKeyMIMEType, &mime)); 242 if (!strncasecmp("audio/", mime, 6)) { 243 if (isSupportedCodec(mime)) { 246 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_RAW, mime)) { 790 bool AudioSfDecoder::isSupportedCodec(const char* mime) { 793 if (!strcasecmp(mime, kPlaybackOnlyCodecs[i])) {
|
/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...] |
/frameworks/wilhelm/tests/examples/ |
slesTestEqFdPath.cpp | 70 SLDataFormat_MIME mime; local 136 mime.formatType = SL_DATAFORMAT_MIME; 137 /* this is how ignored mime information is specified, according to OpenSL ES spec 139 mime.mimeType = (SLchar*)NULL; 140 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 142 audioSource.pFormat = (void*)&mime;
|
slesTestEqOutputPath.cpp | 70 SLDataFormat_MIME mime; local 143 mime.formatType = SL_DATAFORMAT_MIME; 144 /* this is how ignored mime information is specified, according to OpenSL ES spec 146 mime.mimeType = (SLchar*)NULL; 147 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 149 audioSource.pFormat = (void*)&mime;
|
slesTestSendToPresetReverb.cpp | 88 SLDataFormat_MIME mime; local 192 mime.formatType = SL_DATAFORMAT_MIME; 193 /* this is how ignored mime information is specified, according to OpenSL ES spec 195 mime.mimeType = (SLchar*)NULL; 196 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 198 audioSource.pFormat = (void*)&mime;
|
/frameworks/wilhelm/tests/listening/ |
slesTest_playMuteSolo.cpp | 174 SLDataFormat_MIME mime; local 228 mime.formatType = SL_DATAFORMAT_MIME; 229 /* this is how ignored mime information is specified, according to OpenSL ES spec 231 mime.mimeType = (SLchar*)NULL; 232 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 234 audioSource.pFormat = (void*)&mime;
|
/frameworks/wilhelm/tests/mimeUri/ |
slesTestGetPositionUri.cpp | 138 SLDataFormat_MIME mime; local 184 mime.formatType = SL_DATAFORMAT_MIME; 185 mime.mimeType = (SLchar*)NULL; 186 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 188 audioSource.pFormat = (void *)&mime;
|
slesTestManyPlayers.cpp | 48 SLDataFormat_MIME mime; variable 161 //mime = { /*formatType*/ SL_DATAFORMAT_MIME, /*mimeType*/ (SLchar*)NULL, 165 mime.formatType = SL_DATAFORMAT_MIME; 166 mime.mimeType = (SLchar*)NULL; 167 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 169 audioSource.pFormat = (void *)&mime;
|
/frameworks/wilhelm/tests/sandbox/streamSource/ |
slesTestPlayStream.cpp | 191 SLDataFormat_MIME mime; local 236 mime.formatType = SL_DATAFORMAT_MIME; 237 mime.mimeType = (SLchar *) "video/mp2ts";//(SLchar*)NULL; 238 mime.containerType = SL_CONTAINERTYPE_MPEG_TS; 240 audioSource.pFormat = (void *)&mime;
|
/packages/apps/Gallery2/src/com/android/photos/ |
MultiChoiceManager.java | 231 String mime = getItemMimetype(item); local 235 intent.setDataAndType(uri, mime) 241 intent.setDataAndType(uri, mime) 260 intent.setDataAndType(uri, mime) 263 .putExtra("mimeType", mime);
|
/frameworks/av/cmds/stagefright/ |
sf2.cpp | 86 const char *mime; local 87 CHECK(meta->findCString(kKeyMIMEType, &mime)); 90 mime, 6)) { 93 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_VORBIS)) { 268 const char *mime; local 269 CHECK(meta->findCString(kKeyMIMEType, &mime)); 272 msg->setString("mime", mime); 274 if (!strncasecmp("video/", mime, 6)) { 282 CHECK(!strncasecmp("audio/", mime, 6)) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
imageinfo.js | 22 var mime = http.getResponseHeader("Content-Type"); 24 tags["mimeType"] = mime;
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
imageinfo.js | 22 var mime = http.getResponseHeader("Content-Type"); 24 tags["mimeType"] = mime;
|