HomeSort by relevance Sort by last modified time
    Searched refs:codecs (Results 326 - 350 of 448) sorted by null

<<1112131415161718

  /external/chromium/third_party/libjingle/source/talk/session/phone/
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;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
reflectionhandler.py 32 import codecs namespace
127 with codecs.open(file_path, "rb") as static_file:
  /external/lzma/CPP/7zip/UI/Common/
Update.h 114 bool Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath);
168 CCodecs *codecs,
Extract.cpp 103 CCodecs *codecs, const CIntVector &formatIndices,
172 int index = codecs->FindFormatForExtension(s);
179 int index2 = codecs->FindFormatForExtension(s.Mid(pos + 1));
190 HRESULT result = archiveLink.Open2(codecs, formatIndices2, options.StdInMode, NULL, arcPath, openCallback);
Update.cpp 246 bool CUpdateOptions::Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath)
257 MethodMode.FormatIndex = codecs->FindFormatForArchiveName(arcPath);
260 MethodMode.FormatIndex = codecs->FindFormatForArchiveType(kDefaultArchiveType);
264 const CArcInfoEx &arcInfo = codecs->Formats[MethodMode.FormatIndex];
302 CCodecs *codecs,
330 RINOK(codecs->CreateOutArchive(compressionMethod.FormatIndex, outArchive));
338 RINOK(setCompressCodecsInfo->SetCompressCodecsInfo(codecs));
565 CCodecs *codecs,
588 codecs,
640 CCodecs *codecs,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
textView.py 68 import codecs namespace
69 textFile = codecs.open(filename, 'r')
IOBinding.py 12 import codecs namespace
23 from codecs import BOM_UTF8
45 codecs.lookup(encoding)
58 codecs.lookup(encoding)
68 codecs.lookup(encoding)
136 import codecs namespace
138 codecs.lookup(name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
textView.py 68 import codecs namespace
69 textFile = codecs.open(filename, 'r')
IOBinding.py 12 import codecs namespace
23 from codecs import BOM_UTF8
45 codecs.lookup(encoding)
58 codecs.lookup(encoding)
68 codecs.lookup(encoding)
136 import codecs namespace
138 codecs.lookup(name)
  /bionic/libc/kernel/common/sound/
compress_offload.h 66 __u32 codecs[MAX_NUM_CODECS]; member in struct:snd_compr_caps
  /external/kernel-headers/original/sound/
compress_offload.h 93 * @codecs: pointer to array of codecs
99 * @num_codecs: number of codecs supported
109 __u32 codecs[MAX_NUM_CODECS]; member in struct:snd_compr_caps
  /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/chromium_org/build/android/
lighttpd_server.py 13 import codecs namespace
80 with codecs.open(self.base_config_path, 'r', 'utf-8') as f:
87 with codecs.open(self.config_path, 'w', 'utf-8') as f:
  /external/chromium_org/content/renderer/
renderer_webkitplatformsupport_impl.cc 140 const WebKit::WebString& codecs);
143 const WebKit::WebString& codecs,
146 const WebKit::WebString& codecs);
387 const WebString& codecs) {
388 return supportsMediaMIMEType(mime_type, codecs, WebString());
394 const WebString& codecs,
402 // Check whether the key system is supported with the mime_type and codecs.
410 net::ParseCodecString(ToASCIIOrEmpty(codecs), &strict_codecs, strip_suffix);
416 // Continue processing the mime_type and codecs.
419 // Check list of strict codecs to see if it is supported
    [all...]
  /external/chromium_org/remoting/tools/
json_to_grd.py 8 import codecs namespace
143 out = codecs.open(out_name, mode='w', encoding = 'UTF-8')
176 grd_out = codecs.open(grd_name + '_new', mode='w', encoding = 'UTF-8')
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
testutils.h 228 // Checks whether |codecs| contains |codec|; checks using Codec::Matches().
230 bool ContainsMatchingCodec(const std::vector<C>& codecs, const C& codec) {
232 for (it = codecs.begin(); it != codecs.end(); ++it) {
mediachannel.h 739 // Sets the codecs/payload types to be used for incoming media.
740 virtual bool SetRecvCodecs(const std::vector<AudioCodec>& codecs) = 0;
741 // Sets the codecs/payload types to be used for outgoing media.
742 virtual bool SetSendCodecs(const std::vector<AudioCodec>& codecs) = 0;
813 // Sets the codecs/payload types to be used for incoming media.
814 virtual bool SetRecvCodecs(const std::vector<VideoCodec>& codecs) = 0;
815 // Sets the codecs/payload types to be used for outgoing media.
816 virtual bool SetSendCodecs(const std::vector<VideoCodec>& codecs) = 0;
817 // Gets the currently set codecs/payload types to be used for outgoing media.
930 virtual bool SetSendCodecs(const std::vector<DataCodec>& codecs) = 0
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.cc 163 bool LinphoneVoiceChannel::SetSendCodecs(const std::vector<AudioCodec>& codecs) {
170 for (i = codecs.begin(); i < codecs.end(); i++) {
205 // We're being asked to set an empty list of codecs. This will only happen when
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager.h 93 void GetSupportedAudioCodecs(std::vector<AudioCodec>* codecs) const;
95 void GetSupportedVideoCodecs(std::vector<VideoCodec>* codecs) const;
97 void GetSupportedDataCodecs(std::vector<DataCodec>* codecs) const;
mediasession.cc 374 // and data codecs. When bundle is used the payload types may not collide.
417 ContainsRtxCodec(content_description->codecs());
646 static bool ContainsRtxCodec(const std::vector<C>& codecs) {
648 for (it = codecs.begin(); it != codecs.end(); ++it) {
663 // options.streams, codecs, secure_transport, crypto, and streams. If we don't
671 const std::vector<C>& codecs,
679 offer->AddCodecs(codecs);
743 static bool FindMatchingCodec(const std::vector<C>& codecs,
746 for (typename std::vector<C>::const_iterator it = codecs.begin()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 2123 const std::vector<cricket::AudioCodec>& codecs = audio_desc->codecs(); local
2134 const std::vector<cricket::VideoCodec>& codecs = video_desc->codecs(); local
2186 std::vector<U> codecs = desc->codecs(); local
2240 std::vector<cricket::VideoCodec> codecs = video_desc->codecs(); local
2258 std::vector<cricket::AudioCodec> codecs = audio_desc->codecs(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine.h 112 const std::vector<VideoCodec>& codecs() const;
248 virtual bool SetRecvCodecs(const std::vector<VideoCodec> &codecs);
249 virtual bool SetSendCodecs(const std::vector<VideoCodec> &codecs);
335 // codecs in |receive_codecs_| and start receive packets.
webrtcvoiceengine.h 134 const std::vector<AudioCodec>& codecs();
315 virtual bool SetRecvCodecs(const std::vector<AudioCodec> &codecs);
316 virtual bool SetSendCodecs(const std::vector<AudioCodec> &codecs);

Completed in 802 milliseconds

<<1112131415161718