Home
last modified time | relevance | path

Searched refs:codecs (Results 1 – 25 of 36) sorted by relevance

12

/external/chromium/net/base/
Dmime_util.cc40 bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs) const;
42 void ParseCodecString(const std::string& codecs,
365 const std::vector<std::string>& codecs) const { in AreSupportedMediaCodecs()
366 for (size_t i = 0; i < codecs.size(); ++i) { in AreSupportedMediaCodecs()
367 if (codecs_map_.find(codecs[i]) == codecs_map_.end()) { in AreSupportedMediaCodecs()
374 void MimeUtil::ParseCodecString(const std::string& codecs, in ParseCodecString() argument
377 TrimString(codecs, "\"", &no_quote_codecs); in ParseCodecString()
441 bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs) { in AreSupportedMediaCodecs() argument
442 return GetMimeUtil()->AreSupportedMediaCodecs(codecs); in AreSupportedMediaCodecs()
445 void ParseCodecString(const std::string& codecs, in ParseCodecString() argument
[all …]
Dmime_util.h50 bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs);
56 void ParseCodecString(const std::string& codecs,
/external/webkit/WebKitTools/Scripts/
Dcheck-webkit-style45 import codecs
56 sys.stderr = codecs.StreamReaderWriter(sys.stderr,
57 codecs.getreader('utf8'),
58 codecs.getwriter('utf8'),
/external/webkit/WebCore/platform/graphics/
DMediaPlayer.cpp144 …tic MediaPlayerFactory* chooseBestEngineForTypeAndCodecs(const String& type, const String& codecs);
169 …atic MediaPlayerFactory* chooseBestEngineForTypeAndCodecs(const String& type, const String& codecs) in chooseBestEngineForTypeAndCodecs() argument
181 MediaPlayer::SupportsType engineSupport = engines[ndx]->supportsTypeAndCodecs(type, codecs); in chooseBestEngineForTypeAndCodecs()
228 String codecs = contentType.parameter("codecs"); in load() local
243 engine = chooseBestEngineForTypeAndCodecs(type, codecs); in load()
497 String codecs = contentType.parameter("codecs"); in supportsType() local
498 MediaPlayerFactory* engine = chooseBestEngineForTypeAndCodecs(type, codecs); in supportsType()
503 return engine->supportsTypeAndCodecs(type, codecs); in supportsType()
DMediaPlayer.h268 …def MediaPlayer::SupportsType (*MediaEngineSupportsType)(const String& type, const String& codecs);
/external/webkit/WebKitTools/Scripts/webkitpy/style/
Dchecker.py32 import codecs
741 file = codecs.StreamReaderWriter(sys.stdin,
742 codecs.getreader('utf8'),
743 codecs.getwriter('utf8'),
746 file = codecs.open(file_path, 'r', 'utf8', 'replace')
/external/libvpx/
Dvpxenc.c68 } codecs[] = variable
1029 for (i = 0; i < sizeof(codecs) / sizeof(codecs[0]); i++) in usage_exit()
1031 codecs[i].name, in usage_exit()
1032 vpx_codec_iface_name(codecs[i].iface)); in usage_exit()
1051 const struct codec_item *codec = codecs; in main()
1095 for (j = 0; j < sizeof(codecs) / sizeof(codecs[0]); j++) in main()
1096 if (!strcmp(codecs[j].name, arg.val)) in main()
1100 codec = codecs + k; in main()
Dusage.dox4 supported codecs. This abstraction allows applications using this SDK to
6 "special casing." This section describes the interface common to all codecs.
7 For codec-specific details, see the \ref codecs page.
9 The following sections are common to all codecs:
139 (XMA) interface. Not all codecs support the XMA \ref usage_features.
Dmainpage.dox45 /*!\defgroup codecs Supported Codecs */
Dusage_dx.dox19 codecs support asynchronous (callback-based) decoding \ref usage_features
/external/webkit/WebKitTools/pywebsocket/example/
Decho_client.py43 import codecs
163 sys.stdout = codecs.getwriter('utf-8')(sys.stdout)
/external/webkit/WebKit/chromium/public/
DWebMimeRegistry.h48 const WebString& codecs) = 0;
/external/webkit/WebKit/chromium/src/
DWebMediaPlayerClientImpl.cpp378 const String& codecs) in supportsType() argument
381 webKitClient()->mimeRegistry()->supportsMediaMIMEType(type, codecs); in supportsType()
DWebMediaPlayerClientImpl.h104 const WebCore::String& type, const WebCore::String& codecs);
/external/libvpx/examples/
Dsimple_encoder.txt23 header files for the specific codecs you use. In this case, we're using
39 configurations. All codecs provide a default configuration, number 0,
Dpostproc.txt50 Some codecs provide fine grained controls over their built-in
Dsimple_decoder.txt23 header files for the specific codecs you use. In this case, we're using
/external/webkit/WebCore/platform/graphics/wince/
DMediaPlayerPrivateWince.h102 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
/external/webkit/WebCore/platform/graphics/qt/
DMediaPlayerPrivatePhonon.h134 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
/external/webkit/WebCore/platform/graphics/android/
DMediaPlayerPrivateAndroid.h100 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
/external/webkit/WebCore/platform/graphics/win/
DMediaPlayerPrivateQuickTimeWin.h138 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
DMediaPlayerPrivateQuickTimeWin.cpp637 MediaPlayer::SupportsType MediaPlayerPrivate::supportsType(const String& type, const String& codecs) in supportsType() argument
641 …return mimeTypeCache().contains(type) ? (codecs.isEmpty() ? MediaPlayer::MayBeSupported : MediaPla… in supportsType()
/external/webkit/WebCore/platform/graphics/gtk/
DMediaPlayerPrivateGStreamer.h122 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
DMediaPlayerPrivateGStreamer.cpp1132 MediaPlayer::SupportsType MediaPlayerPrivate::supportsType(const String& type, const String& codecs) in supportsType() argument
1139 return codecs.isEmpty() ? MediaPlayer::MayBeSupported : MediaPlayer::IsSupported; in supportsType()
/external/webkit/WebCore/platform/graphics/mac/
DMediaPlayerPrivateQTKit.h77 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);

12