HomeSort by relevance Sort by last modified time
    Searched refs:mime (Results 101 - 117 of 117) sorted by null

1 2 3 45

  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 634 const char *mime; local
635 CHECK(meta->findCString(kKeyMIMEType, &mime));
636 mVideoIsAVC = !strcasecmp(MEDIA_MIMETYPE_VIDEO_AVC, mime);
  /frameworks/media/libvideoeditor/lvpp/
VideoEditorAudioPlayer.cpp 289 const char *mime; local
290 bool success = format->findCString(kKeyMIMEType, &mime);
292 CHECK(!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_RAW));
  /frameworks/media/libvideoeditor/vss/stagefrightshells/src/
VideoEditorMp3Reader.cpp 461 const char *mime; local
462 CHECK(meta->findCString(kKeyMIMEType, &mime));
464 if (!haveAudio && !strncasecmp(mime, "audio/", 6)) {
VideoEditorVideoEncoder.cpp 747 const char* mime = NULL; local
806 mime = MEDIA_MIMETYPE_VIDEO_H263;
809 mime = MEDIA_MIMETYPE_VIDEO_MPEG4;
812 mime = MEDIA_MIMETYPE_VIDEO_AVC;
821 LOGV("Encoder mime %s profile %d, level %d",
822 mime,iProfile, iLevel);
831 encoderMetadata->setCString(kKeyMIMEType, mime);
    [all...]
  /external/webkit/LayoutTests/http/conf/
fedora-httpd.conf 403 # TypesConfig describes where the mime.types file (or equivalent) is
406 TypesConfig /etc/mime.types
409 # DefaultType is the default MIME type the server will use for a document
653 # AddType allows you to add to or override the MIME configuration
654 # file mime.types for specific file types.
674 # MIME-types for downloading Certificates and CRLs
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameView.mm 217 NSString *mime = nil;
218 while ((mime = [enumerator nextObject]) != nil) {
220 if ([allTypes objectForKey:mime] == nil)
221 [allTypes setObject:objCClass forKey:mime];
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 674 // Tests for the standard MIME types -- users may override these
    [all...]
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.cpp 809 const char *mime; local
813 mime = MEDIA_MIMETYPE_AUDIO_AMR_NB;
816 mime = MEDIA_MIMETYPE_AUDIO_AMR_WB;
819 mime = MEDIA_MIMETYPE_AUDIO_AAC;
825 encMeta->setCString(kKeyMIMEType, mime);
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 266 String mime = null; local
320 mime = MediaStore.Audio.Artists.ENTRY_CONTENT_TYPE;
328 mime = MediaStore.Audio.Albums.ENTRY_CONTENT_TYPE;
342 mime = "audio/*"; // the specific type doesn't matter, so don't bother retrieving it
359 i.putExtra(MediaStore.EXTRA_MEDIA_FOCUS, mime);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 339 // Tests for the standard MIME types -- users may override these
590 String mime = URLConnection.guessContentTypeFromStream(is);
592 expected[i], mime);
  /external/bluetooth/glib/gio/
gcontenttype.c 46 * of a file. On unix it is a mime type, on win32 it is an extension string
187 char *mime; local
191 mime = get_registry_classes_key (type, L"Content Type");
192 if (mime)
193 return mime;
311 key = g_strconcat ("MIME\\DataBase\\Content Type\\", mime_type, NULL);
629 filename = g_build_filename (dir, "mime", basename, NULL);
725 * Gets the mime-type for the content type. If one is registered
727 * Returns: the registered mime-type for the given @type, or NULL if unknown.
773 legacy_mimetype_icon = g_strconcat ("gnome-mime-", mimetype_icon, NULL)
    [all...]
  /system/media/wilhelm/src/itf/
IEngine.c 69 const char* mime = (char*)ap->mDataSource.mFormat.mMIME.mimeType; local
70 if ((mime != NULL) && !(strcasecmp(mime, (const char *)SL_ANDROID_MIME_AACADTS) &&
71 strcasecmp(mime, ANDROID_MIME_AACADTS_ANDROID_FRAMEWORK))) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 288 String mime = ((MediaItem) obj).getMimeType(); local
289 if (mime.contains("png") || mime.contains("gif")) {
    [all...]
  /external/libxml2/
xmlIO.c 3634 const char *mime; local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 2088 String mime = null; local
    [all...]
  /packages/apps/Camera/src/com/android/camera/
VideoCamera.java 1396 String mime = convertOutputFormatToMimeType(outputFileFormat); local
    [all...]

Completed in 2261 milliseconds

1 2 3 45