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

<<1112131415161718

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py 30 import codecs namespace
32 codecs = None variable
62 if codecs is None:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py 30 import codecs namespace
32 codecs = None variable
62 if codecs is None:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_pyio.py 9 import codecs namespace
108 passed. See the codecs module for the list of supported encodings.
115 See the documentation for codecs.register for a list of the permitted
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_pyio.py 9 import codecs namespace
108 passed. See the codecs module for the list of supported encodings.
115 See the documentation for codecs.register for a list of the permitted
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession_unittest.cc 309 std::vector<cricket::AudioCodec> codecs; local
310 codecs.push_back(kTelephoneEventCodec);
311 media_engine_->SetAudioCodecs(codecs);
312 desc_factory_->set_audio_codecs(codecs);
789 // Adds CN codecs to FakeMediaEngine and MediaDescriptionFactory.
792 std::vector<cricket::AudioCodec> codecs = media_engine_->audio_codecs();; local
793 codecs.push_back(kCNCodec1);
794 codecs.push_back(kCNCodec2)
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 99 } codecs[] = { variable in typeref:struct:codec_item
    [all...]
configure 55 Codecs:
56 Codecs can be selectively enabled or disabled individually, or by family:
62 Codecs available in this distribution:
70 for c in ${CODECS}; do
196 [ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
197 [ -d ${source_path}/vp9 ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
200 [ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channel.cc     [all...]
call.cc 844 if (!audio_update->codecs().empty()) {
853 if (!video_update->codecs().empty()) {
862 if (!data_update->codecs().empty()) {
    [all...]
mediasessionclient_unittest.cc 54 // The codecs that our FakeMediaEngine will support. Order is important, since
55 // the tests check that our messages have codecs in the correct order.
273 // Initiate string with a different order of supported codecs.
1235 const std::vector<CodecClass> codecs = desc->codecs(); local
    [all...]
  /external/chromium_org/media/filters/
chunk_demuxer.cc 876 std::vector<std::string>& codecs) {
877 DCHECK_GT(codecs.size(), 0u);
886 StreamParserFactory::Create(type, codecs, log_cb_,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 33 from codecs import BOM_UTF8, lookup
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 33 from codecs import BOM_UTF8, lookup
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcvoiceengine.h 123 FakeWebRtcVoiceEngine(const cricket::AudioCodec* const* codecs,
128 codecs_(codecs),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 114 import codecs namespace
115 _open_with_encoding = codecs.open
116 # codecs.open doesn't translate newlines sadly.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys.py 596 import codecs, encodings.iso8859_3 namespace
597 x = codecs.charmap_build(encodings.iso8859_3.decoding_table)
test_io.py 41 import codecs namespace
    [all...]
test_logging.py 28 import codecs namespace
1047 writer_class = codecs.getwriter('cp1251')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 114 import codecs namespace
115 _open_with_encoding = codecs.open
116 # codecs.open doesn't translate newlines sadly.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys.py 596 import codecs, encodings.iso8859_3 namespace
597 x = codecs.charmap_build(encodings.iso8859_3.decoding_table)
test_io.py 41 import codecs namespace
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm_unittest.py 33 import codecs namespace
99 with codecs.open(file_path, "w", encoding) as file:
107 with codecs.open(file_path, "r", encoding) as file:
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp 191 DEFINE_STATIC_LOCAL(const String, codecs, ("codecs"));
194 String contentTypeCodecs = contentType.parameter(codecs);
207 // when used with parameters, e.g. "application/octet-stream;codecs=theora", is a type that the user agent knows
219 DEFINE_STATIC_LOCAL(const String, codecs, ("codecs"));
225 // The codecs string is not lower-cased because MP4 values are case sensitive
227 String typeCodecs = contentType.parameter(codecs);
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipAudioCall.java 738 AudioCodec[] codecs = AudioCodec.getCodecs();
805 throw new IllegalStateException("Reject SDP: no suitable codecs");
    [all...]
  /external/v8/tools/
grokdump.py 37 import codecs namespace
729 self.chars = codecs.getdecoder("utf16")(raw_chars)[0]
    [all...]

Completed in 1420 milliseconds

<<1112131415161718