Lines Matching refs:codecs

74   bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs) const;
76 void ParseCodecString(const std::string& codecs,
83 const std::vector<std::string>& codecs) const;
95 // Returns true if |codecs| is nonempty and all the items in it are present in
98 const std::vector<std::string>& codecs);
268 // This set of codecs is supported by all variations of Chromium.
300 // List of supported codecs when passed in with <source type="...">.
301 // This set of codecs is supported by all variations of Chromium.
306 // The codecs for WAV are integers as defined in Appendix A of RFC2361:
319 // List of proprietary codecs only supported by Google Chrome.
440 const std::vector<std::string>& codecs) {
441 for (size_t i = 0; i < codecs.size(); ++i) {
442 if (supported_codecs.find(codecs[i]) == supported_codecs.end())
445 return !codecs.empty();
498 MimeMappings codecs;
504 codecs.insert(mime_type_codecs[j]);
506 strict_format_map_[format_codec_mappings[i].mime_type] = codecs;
663 const std::vector<std::string>& codecs) const {
664 return AreSupportedCodecs(codecs_map_, codecs);
667 void MimeUtil::ParseCodecString(const std::string& codecs,
671 base::TrimString(codecs, "\"", &no_quote_codecs);
695 const std::vector<std::string>& codecs) const {
698 AreSupportedCodecs(it->second, codecs);
768 bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs) {
769 return g_mime_util.Get().AreSupportedMediaCodecs(codecs);
777 const std::vector<std::string>& codecs) {
778 return g_mime_util.Get().IsSupportedStrictMediaMimeType(mime_type, codecs);
781 void ParseCodecString(const std::string& codecs,
784 g_mime_util.Get().ParseCodecString(codecs, codecs_out, strip);