HomeSort by relevance Sort by last modified time
    Searched refs:codecs (Results 26 - 50 of 73) sorted by null

12 3

  /external/chromium/third_party/libjingle/source/talk/session/phone/
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;
filemediaengine.cc 216 bool FileVoiceChannel::SetSendCodecs(const std::vector<AudioCodec>& codecs) {
239 bool FileVideoChannel::SetSendCodecs(const std::vector<VideoCodec>& codecs) {
mediachannel.h 210 // Sets the codecs/payload types to be used for incoming media.
211 virtual bool SetRecvCodecs(const std::vector<AudioCodec>& codecs) = 0;
212 // Sets the codecs/payload types to be used for outgoing media.
213 virtual bool SetSendCodecs(const std::vector<AudioCodec>& codecs) = 0;
435 // Sets the codecs/payload types to be used for incoming media.
436 virtual bool SetRecvCodecs(const std::vector<VideoCodec> &codecs) = 0;
437 // Sets the codecs/payload types to be used for outgoing media.
438 virtual bool SetSendCodecs(const std::vector<VideoCodec> &codecs) = 0;
channelmanager.cc 186 std::vector<AudioCodec>* codecs) const {
187 codecs->clear();
192 codecs->push_back(*it);
197 std::vector<VideoCodec>* codecs) const {
198 codecs->clear();
203 codecs->push_back(*it);
  /external/webkit/Tools/Scripts/
check-inspector-strings 31 import codecs namespace
79 localized_strings_file = codecs.open(file_path, encoding="utf-16", mode="r")
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog.py 31 import codecs namespace
104 unicode strings. Use codecs.open or StringIO(unicode())
126 changelog_file = codecs.open(self.path, "r", "utf-8")
api_unittest.py 31 import codecs namespace
47 with codecs.open(file_path, "w", encoding) as file:
  /external/webkit/Tools/Scripts/webkitpy/style/
filereader_unittest.py 27 import codecs namespace
77 with codecs.open(file_path, "w", encoding) as file:
  /external/markdown/
test-markdown.py 3 import os, difflib, time, gc, codecs, platform, sys namespace
198 self.html_diff_file = codecs.open(html_diff_file_path, "w", encoding=encoding)
238 expected_output = codecs.open(output_file, encoding=self.encoding).read()
239 input = codecs.open(input_file, encoding=self.encoding).read()
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 134 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
MediaPlayerPrivatePhonon.cpp 198 MediaPlayer::SupportsType MediaPlayerPrivatePhonon::supportsType(const String& type, const String& codecs)
204 return codecs.isEmpty() ? MediaPlayer::MayBeSupported : MediaPlayer::IsSupported;
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
preparechangelogforrevert_unittest.py 31 import codecs namespace
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
apache_http_server.py 35 import codecs namespace
161 with codecs.open(httpd_config, "r", "utf-8") as httpd_config_file:
175 with codecs.open(httpd_config_copy, "w", "utf-8") as file:
http_server.py 34 import codecs namespace
127 with codecs.open(base_conf_file, "r", "utf-8") as file:
134 f = codecs.open(out_conf_file, "w", "utf-8")
  /external/markdown/markdown/
__init__.py 46 import codecs namespace
400 output, length = codecs.utf_8_decode(self.serializer(root, encoding="utf-8"))
443 input_file = codecs.open(input, mode="r", encoding=encoding)
453 output_file = codecs.open(output, "w", encoding=encoding)
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.h 132 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.h 142 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
MediaPlayerPrivateQuickTimeVisualContext.h 131 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.h 140 const WTF::String& type, const WTF::String& codecs);
  /frameworks/av/media/libstagefright/
Android.mk 4 include frameworks/av/media/libstagefright/codecs/common/Config.mk
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/
Android.mk 64 frameworks/av/media/libstagefright/codecs/amrwb/src \
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.h 78 static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);
  /external/libvpx/
vpxenc.c 76 } codecs[] = variable in typeref:struct:codec_item
1077 for (i = 0; i < sizeof(codecs) / sizeof(codecs[0]); i++)
1079 codecs[i].name,
1080 vpx_codec_iface_name(codecs[i].iface));
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.mm 626 MediaPlayer::SupportsType MediaPlayerPrivateAVFoundationObjC::supportsType(const String& type, const String& codecs)
633 if (codecs.isEmpty())
636 NSString *typeString = [NSString stringWithFormat:@"%@; codecs=\"%@\"", (NSString *)type, (NSString *)codecs];

Completed in 653 milliseconds

12 3