/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
mediachannel.h | 944 // Sets the codecs/payload types to be used for incoming media. 945 virtual bool SetRecvCodecs(const std::vector<AudioCodec>& codecs) = 0; 946 // Sets the codecs/payload types to be used for outgoing media. 947 virtual bool SetSendCodecs(const std::vector<AudioCodec>& codecs) = 0 [all...] |
rtpdataengine.h | 104 virtual bool SetSendCodecs(const std::vector<DataCodec>& codecs); 105 virtual bool SetRecvCodecs(const std::vector<DataCodec>& codecs);
|
/frameworks/av/media/libstagefright/httplive/ |
M3UParser.cpp | 356 AString codecs; local 357 if (!meta->findString("codecs", &codecs)) { 362 // Split the comma separated list of codecs. 365 codecs.append(','); 366 while ((commaPos = codecs.find(",", offset)) >= 0) { 367 AString codec(codecs, offset, commaPos - offset); 705 } else if (!strcasecmp("codecs", key.c_str())) { 715 const AString &codecs = unquoteString(val); local 716 (*meta)->setString(key.c_str(), codecs.c_str()) [all...] |
/art/tools/ |
generate-operator-out.py | 19 import codecs namespace 39 lines = codecs.open(filename, 'r', 'utf8', 'replace').read().split('\n')
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
MIMETypeRegistry.cpp | 102 bool MIMETypeRegistry::isSupportedMediaSourceMIMEType(const String& mimeType, const String& codecs) 105 && blink::Platform::current()->mimeRegistry()->supportsMediaSourceMIMEType(mimeType, codecs);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
backward.py | 134 import codecs namespace 135 f = codecs.open(fname, 'w', encoding=encoding, errors=errors)
|
/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/chromium_org/third_party/libjingle/source/talk/media/sctp/ |
sctpdataengine.cc | 708 static bool GetCodecIntParameter(const std::vector<DataCodec>& codecs, 715 for (size_t i = 0; i < codecs.size(); ++i) { 716 if (codecs[i].Matches(match_pattern)) { 717 if (codecs[i].GetParam(param, &value)) { 726 bool SctpDataMediaChannel::SetSendCodecs(const std::vector<DataCodec>& codecs) { 728 codecs, kGoogleSctpDataCodecId, kGoogleSctpDataCodecName, kCodecParamPort, 732 bool SctpDataMediaChannel::SetRecvCodecs(const std::vector<DataCodec>& codecs) { 734 codecs, kGoogleSctpDataCodecId, kGoogleSctpDataCodecName, kCodecParamPort,
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
channelmanager.cc | 174 std::vector<AudioCodec>* codecs) const { 175 codecs->clear(); 180 codecs->push_back(*it); 190 std::vector<VideoCodec>* codecs) const { 191 codecs->clear(); 199 codecs->push_back(*it); 209 std::vector<DataCodec>* codecs) const { 210 *codecs = data_media_engine_->data_codecs();
|
channel_unittest.cc | 582 EXPECT_TRUE(media_channel1_->codecs().empty()); 589 // the codecs. 595 EXPECT_EQ(0U, media_channel1_->codecs().size()); 597 ASSERT_EQ(1U, media_channel1_->codecs().size()); 598 EXPECT_TRUE(CodecMatches(content.codecs()[0], 599 media_channel1_->codecs()[0])); 609 EXPECT_EQ(0U, media_channel1_->codecs().size()); 611 ASSERT_EQ(1U, media_channel1_->codecs().size()); 612 EXPECT_TRUE(CodecMatches(content.codecs()[0], 613 media_channel1_->codecs()[0])) [all...] |
/external/chromium_org/tools/telemetry/docs/ |
telemetry.core.platform.profiler.trace_profiler.html | 22 <td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="codecs.html">codecs</a><br>
|
/external/libogg/ |
README | 39 Ogg project codecs use the Ogg bitstream format to arrange the raw, 130 (Build instructions for Ogg codecs such as vorbis are similar and may
|
/external/libogg/doc/ |
ogg-multiplex.html | 269 <li>Codecs shall choose a granule position definition that allows that 307 <p>Frame counting is insufficient in codecs such as Vorbis where an audio 316 <p>Some video codecs may be able to use the simple framestamp scheme for 317 granule position. However, most modern video codecs introduce at 374 responsibility of codecs to track timing information at granularities 393 header. The majority of codecs will always be continuous (such as 408 in the Ogg domain and require no intervention from codecs.</p> 426 interaction with the codecs in order to decode the granule position of
|
/external/libvpx/libvpx/examples/ |
simple_encoder.txt | 23 header files for the specific codecs you use. In this case, we're using 39 configurations. All codecs provide a default configuration, number 0,
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
AudioCodec.java | 22 * This class defines a collection of audio codecs to be used with 91 * Returns system supported audio codecs.
|
/frameworks/wilhelm/src/android/ |
VideoCodec_to_android.cpp | 73 // used to check whether no codecs were found, which is a sign of failure 141 // range check: function can be called for fewer codecs than there are
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
driver.py | 19 import codecs namespace 97 stream = codecs.open(filename, "r", encoding)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_main.py | 3 import codecs namespace 57 out_enc = codecs.getwriter("ascii")(out)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
driver.py | 19 import codecs namespace 97 stream = codecs.open(filename, "r", encoding)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_main.py | 3 import codecs namespace 57 out_enc = codecs.getwriter("ascii")(out)
|
/external/chromium_org/content/renderer/ |
renderer_webkitplatformsupport_impl.cc | 146 const blink::WebString& codecs, 149 const blink::WebString& codecs); 387 const WebString& codecs, 395 // Check whether the key system is supported with the mime_type and codecs. 399 net::ParseCodecString(ToASCIIOrEmpty(codecs), &strict_codecs, strip_suffix); 405 // Continue processing the mime_type and codecs. 408 // Check list of strict codecs to see if it is supported. 410 // We support the container, but no codecs were specified. 411 if (codecs.isNull()) 414 // Check if the codecs are a perfect match [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
unicodeobject.h | 622 /* === Builtin Codecs ===================================================== 632 error handling for all builtin codecs is "strict" (ValueErrors are 635 The codecs all use a similar interface. Only deviation from the 680 /* --- Generic Codecs ----------------------------------------------------- */ 725 /* --- UTF-7 Codecs ------------------------------------------------------- */ 748 /* --- UTF-8 Codecs ------------------------------------------------------- */ 773 /* --- UTF-32 Codecs ------------------------------------------------------ */ [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
unicodeobject.h | 622 /* === Builtin Codecs ===================================================== 632 error handling for all builtin codecs is "strict" (ValueErrors are 635 The codecs all use a similar interface. Only deviation from the 680 /* --- Generic Codecs ----------------------------------------------------- */ 725 /* --- UTF-7 Codecs ------------------------------------------------------- */ 748 /* --- UTF-8 Codecs ------------------------------------------------------- */ 773 /* --- UTF-32 Codecs ------------------------------------------------------ */ [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideoengine.h | 113 const std::vector<VideoCodec>& codecs() const; 184 // For other codecs, it should be set to -1. 252 virtual bool SetRecvCodecs(const std::vector<VideoCodec> &codecs); 253 virtual bool SetSendCodecs(const std::vector<VideoCodec> &codecs); 339 // codecs in |receive_codecs_| and start receive packets.
|
/external/chromium_org/chrome/common/ |
chrome_content_client.cc | 278 // Add the supported codecs as if they came from the component manifest. 279 std::vector<std::string> codecs; local 280 codecs.push_back(kCdmSupportedCodecVorbis); 281 codecs.push_back(kCdmSupportedCodecVp8); 286 codecs.push_back(kCdmSupportedCodecAac); 289 codecs.push_back(kCdmSupportedCodecAvc1); 293 JoinString(codecs, kCdmSupportedCodecsValueDelimiter);
|