HomeSort by relevance Sort by last modified time
    Searched refs:codecs (Results 1 - 25 of 71) sorted by null

1 2 3

  /frameworks/base/voip/jni/rtp/
Android.mk 47 frameworks/base/media/libstagefright/codecs/amrnb/common/include \
48 frameworks/base/media/libstagefright/codecs/amrnb/common/ \
49 frameworks/base/media/libstagefright/codecs/amrnb/enc/include \
50 frameworks/base/media/libstagefright/codecs/amrnb/enc/src \
51 frameworks/base/media/libstagefright/codecs/amrnb/dec/include \
52 frameworks/base/media/libstagefright/codecs/amrnb/dec/src \
  /external/webkit/Tools/Scripts/webkitpy/style/
filereader.py 33 import codecs namespace
77 file = codecs.StreamReaderWriter(sys.stdin,
78 codecs.getreader('utf8'),
79 codecs.getwriter('utf8'),
83 # (codecs does not support it anyway), so the resulting
86 file = codecs.open(file_path, 'r', 'utf8', 'replace')
  /frameworks/base/media/jni/
Android.mk 39 frameworks/base/media/libstagefright/codecs/amrnb/enc/src \
40 frameworks/base/media/libstagefright/codecs/amrnb/common \
41 frameworks/base/media/libstagefright/codecs/amrnb/common/include \
  /external/chromium/third_party/libjingle/source/talk/session/phone/
filemediaengine.h 70 // Should be called before codecs() and video_codecs() are called. We need to
71 // set the voice and video codecs; otherwise, Jingle initiation will fail.
72 void set_voice_codecs(const std::vector<AudioCodec>& codecs) {
73 voice_codecs_ = codecs;
75 void set_video_codecs(const std::vector<VideoCodec>& codecs) {
76 video_codecs_ = codecs;
131 virtual bool SetRecvCodecs(const std::vector<AudioCodec>& codecs) {
134 virtual bool SetSendCodecs(const std::vector<AudioCodec>& codecs);
166 virtual bool SetRecvCodecs(const std::vector<VideoCodec>& codecs) {
169 virtual bool SetSendCodecs(const std::vector<VideoCodec>& codecs);
    [all...]
mediaengine.h 223 return voice_.codecs();
226 return video_.codecs();
261 virtual bool SetRecvCodecs(const std::vector<AudioCodec> &codecs) {
264 virtual bool SetSendCodecs(const std::vector<AudioCodec> &codecs) {
301 const std::vector<AudioCodec>& codecs() { return codecs_; } function in class:cricket::NullVoiceEngine
325 const std::vector<VideoCodec>& codecs() { return codecs_; } function in class:cricket::NullVideoEngine
mediasessionclient.cc 172 // add video codecs, if this is a video call
255 // The answer contains the intersection of the codecs in the offer with the
256 // codecs we support, ordered by our local preference. As indicated by
269 for (AudioCodecs::const_iterator theirs = audio_offer->codecs().begin();
270 theirs != audio_offer->codecs().end(); ++theirs) {
305 for (VideoCodecs::const_iterator theirs = video_offer->codecs().begin();
306 theirs != video_offer->codecs().end(); ++theirs) {
362 // If our accept would have no codecs, then we must reject this call.
375 if (!audio_accept || audio_accept->codecs().size() == 0) {
849 for (AudioCodecs::const_iterator codec = audio->codecs().begin()
    [all...]
channelmanager.h 79 void GetSupportedAudioCodecs(std::vector<AudioCodec>* codecs) const;
80 void GetSupportedVideoCodecs(std::vector<VideoCodec>* codecs) const;
  /external/chromium/net/base/
mime_util.h 51 // Returns true if and only if all codecs are supported, false otherwise.
52 bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs);
59 void ParseCodecString(const std::string& codecs,
64 // certain subset of codecs.
68 // certain subset of codecs. Returns true if and only if all codecs are
70 // false you will still need to check if the media MIME tpyes and codecs are
73 const std::vector<std::string>& codecs);
mime_util.cc 43 bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs) const;
45 void ParseCodecString(const std::string& codecs,
51 const std::vector<std::string>& codecs) const;
232 // List of supported codecs when passed in with <source type="...">.
351 MimeMappings codecs; local
353 codecs.insert(mime_type_codecs[j]);
354 strict_format_map_[format_codec_mappings[i].mime_type] = codecs;
423 const std::vector<std::string>& codecs) const {
424 for (size_t i = 0; i < codecs.size(); ++i) {
425 if (codecs_map_.find(codecs[i]) == codecs_map_.end())
    [all...]
  /external/webkit/Tools/Scripts/
check-webkit-style 45 import codecs namespace
65 stderr = codecs.StreamReaderWriter(sys.stderr,
66 codecs.getreader('utf8'),
67 codecs.getwriter('utf8'),
print-vse-failure-logs 35 import codecs namespace
108 with codecs.open(build_log_path, "r", "utf-16") as build_log:
  /external/chromium/webkit/glue/
simple_webmimeregistry_impl.cc 53 const WebString& mime_type, const WebString& codecs) {
58 // Check list of strict codecs to see if it is supported.
60 // We support the container, but no codecs were specified.
61 if (codecs.isNull())
64 // Check if the codecs are a perfect match.
66 net::ParseCodecString(ToASCIIOrEmpty(codecs).c_str(),
79 net::ParseCodecString(ToASCIIOrEmpty(codecs).c_str(), &parsed_codecs, true);
  /external/webkit/Source/WebKit/chromium/public/
WebMimeRegistry.h 48 const WebString& codecs) = 0;
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
__init__.py 29 import codecs namespace
95 with codecs.open(readme_path, "w", "ascii") as file:
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
deps.py 31 import codecs namespace
changelog_unittest.py 31 import codecs namespace
121 with codecs.open(file_path, "r", encoding) as file:
  /external/webkit/Tools/Scripts/webkitpy/common/system/
deprecated_logging.py 33 import codecs namespace
80 return codecs.open(log_path, "a+", "utf-8")
filesystem.py 33 import codecs namespace
204 return codecs.open(path, mode, 'utf8')
207 return codecs.open(path, 'rb')
218 with codecs.open(path, 'r', 'utf8') as f:
263 with codecs.open(path, 'r', 'utf8') as f:
279 with codecs.open(path, 'w', 'utf8') as f:
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
websocket_server.py 35 import codecs namespace
158 self._wsout = codecs.open(output_log, "w", "utf-8")
215 with codecs.open(output_log, "r", "utf-8") as fp:
227 with codecs.open(self._pidfile, "w", "ascii") as file:
238 with codecs.open(self._pidfile, "r", "ascii") as file:
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_results_uploader.py 32 import codecs namespace
98 with codecs.open(path, "rb") as file:
  /external/webkit/Source/WebCore/platform/graphics/android/
MediaPlayerPrivateAndroid.h 111 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.h 69 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
  /external/webkit/Source/WebCore/platform/graphics/wince/
MediaPlayerPrivateWinCE.h 102 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
  /frameworks/base/media/libstagefright/codecs/aacenc/
Android.mk 3 include frameworks/base/media/libstagefright/codecs/common/Config.mk
68 frameworks/base/media/libstagefright/codecs/common/include \
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 180 static MediaPlayerFactory* bestMediaEngineForTypeAndCodecs(const String& type, const String& codecs, MediaPlayerFactory* current = 0);
229 static const AtomicString& codecs() function in namespace:WebCore
231 DEFINE_STATIC_LOCAL(const AtomicString, codecs, ("codecs"));
232 return codecs;
235 static MediaPlayerFactory* bestMediaEngineForTypeAndCodecs(const String& type, const String& codecs, MediaPlayerFactory* current)
245 // when used with parameters, e.g. "application/octet-stream;codecs=theora", is a type that the user agent knows
248 if (!codecs.isEmpty())
261 MediaPlayer::SupportsType engineSupport = engines[ndx]->supportsTypeAndCodecs(type, codecs);
330 String typeCodecs = contentType.parameter(codecs());
    [all...]

Completed in 386 milliseconds

1 2 3