1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
|
/*
* Copyright (C) 2019 Igalia S.L
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* aint with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "GStreamerRegistryScanner.h"
#if USE(GSTREAMER)
#include "ContentType.h"
#include "GStreamerCommon.h"
#include "RuntimeApplicationChecks.h"
#include <fnmatch.h>
#include <gst/pbutils/codec-utils.h>
#include <wtf/PrintStream.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/StringToIntegerConversion.h>
namespace WebCore {
GST_DEBUG_CATEGORY_STATIC(webkit_media_gst_registry_scanner_debug);
#define GST_CAT_DEFAULT webkit_media_gst_registry_scanner_debug
// We shouldn't accept media that the player can't actually play.
// AAC supports up to 96 channels.
#define MEDIA_MAX_AAC_CHANNELS 96
// Assume hardware video decoding acceleration up to 8K@60fps for the generic case. Some embedded platforms might want to tune this.
#define MEDIA_MAX_WIDTH 7680.0f
#define MEDIA_MAX_HEIGHT 4320.0f
#define MEDIA_MAX_FRAMERATE 60.0f
GStreamerRegistryScanner& GStreamerRegistryScanner::singleton()
{
static NeverDestroyed<GStreamerRegistryScanner> sharedInstance;
return sharedInstance;
}
void GStreamerRegistryScanner::getSupportedDecodingTypes(HashSet<String, ASCIICaseInsensitiveHash>& types)
{
if (isInWebProcess())
types = singleton().mimeTypeSet(GStreamerRegistryScanner::Configuration::Decoding);
else
types = GStreamerRegistryScanner().mimeTypeSet(GStreamerRegistryScanner::Configuration::Decoding);
}
GStreamerRegistryScanner::ElementFactories::ElementFactories(OptionSet<ElementFactories::Type> types)
{
if (types.contains(Type::AudioDecoder))
audioDecoderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_DECODER | GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO, GST_RANK_MARGINAL);
if (types.contains(Type::AudioParser))
audioParserFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_PARSER | GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO, GST_RANK_NONE);
if (types.contains(Type::VideoDecoder))
videoDecoderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_DECODER | GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO, GST_RANK_MARGINAL);
if (types.contains(Type::VideoParser))
videoParserFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_PARSER | GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO, GST_RANK_MARGINAL);
if (types.contains(Type::Demuxer))
demuxerFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_DEMUXER, GST_RANK_MARGINAL);
if (types.contains(Type::AudioEncoder))
audioEncoderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_ENCODER | GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO, GST_RANK_MARGINAL);
if (types.contains(Type::VideoEncoder))
videoEncoderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_ENCODER | GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO, GST_RANK_MARGINAL);
if (types.contains(Type::Muxer))
muxerFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_MUXER, GST_RANK_MARGINAL);
}
GStreamerRegistryScanner::ElementFactories::~ElementFactories()
{
gst_plugin_feature_list_free(audioDecoderFactories);
gst_plugin_feature_list_free(audioParserFactories);
gst_plugin_feature_list_free(videoDecoderFactories);
gst_plugin_feature_list_free(videoParserFactories);
gst_plugin_feature_list_free(demuxerFactories);
gst_plugin_feature_list_free(audioEncoderFactories);
gst_plugin_feature_list_free(videoEncoderFactories);
gst_plugin_feature_list_free(muxerFactories);
}
const char* GStreamerRegistryScanner::ElementFactories::elementFactoryTypeToString(GStreamerRegistryScanner::ElementFactories::Type factoryType)
{
switch (factoryType) {
case Type::AudioParser:
return "audio parser";
case Type::AudioDecoder:
return "audio decoder";
case Type::VideoParser:
return "video parser";
case Type::VideoDecoder:
return "video decoder";
case Type::Demuxer:
return "demuxer";
case Type::AudioEncoder:
return "audio encoder";
case Type::VideoEncoder:
return "video encoder";
case Type::Muxer:
return "muxer";
case Type::All:
break;
}
RELEASE_ASSERT_NOT_REACHED();
}
GList* GStreamerRegistryScanner::ElementFactories::factory(GStreamerRegistryScanner::ElementFactories::Type factoryType) const
{
switch (factoryType) {
case GStreamerRegistryScanner::ElementFactories::Type::AudioParser:
return audioParserFactories;
case GStreamerRegistryScanner::ElementFactories::Type::AudioDecoder:
return audioDecoderFactories;
case GStreamerRegistryScanner::ElementFactories::Type::VideoParser:
return videoParserFactories;
case GStreamerRegistryScanner::ElementFactories::Type::VideoDecoder:
return videoDecoderFactories;
case GStreamerRegistryScanner::ElementFactories::Type::Demuxer:
return demuxerFactories;
case GStreamerRegistryScanner::ElementFactories::Type::AudioEncoder:
return audioEncoderFactories;
case GStreamerRegistryScanner::ElementFactories::Type::VideoEncoder:
return videoEncoderFactories;
case GStreamerRegistryScanner::ElementFactories::Type::Muxer:
return muxerFactories;
case GStreamerRegistryScanner::ElementFactories::Type::All:
break;
}
RELEASE_ASSERT_NOT_REACHED();
}
GStreamerRegistryScanner::RegistryLookupResult GStreamerRegistryScanner::ElementFactories::hasElementForMediaType(ElementFactories::Type factoryType, const char* capsString, ElementFactories::CheckHardwareClassifier shouldCheckHardwareClassifier, std::optional<Vector<String>> disallowedList) const
{
auto* elementFactories = factory(factoryType);
if (!elementFactories)
return { };
GstPadDirection padDirection = GST_PAD_SINK;
if (factoryType == Type::AudioEncoder || factoryType == Type::VideoEncoder || factoryType == Type::Muxer)
padDirection = GST_PAD_SRC;
GRefPtr<GstCaps> caps = adoptGRef(gst_caps_from_string(capsString));
GList* candidates = gst_element_factory_list_filter(elementFactories, caps.get(), padDirection, false);
bool isSupported = candidates;
bool isUsingHardware = false;
if (disallowedList && !disallowedList->isEmpty()) {
bool hasValidCandidate = false;
for (GList* factories = candidates; factories; factories = g_list_next(factories)) {
String name = String::fromUTF8(gst_plugin_feature_get_name(GST_PLUGIN_FEATURE_CAST(factories->data)));
if (disallowedList->contains(name))
continue;
hasValidCandidate = true;
break;
}
if (!hasValidCandidate) {
GST_WARNING("All %s elements matching caps %" GST_PTR_FORMAT " are disallowed", elementFactoryTypeToString(factoryType), caps.get());
isSupported = false;
shouldCheckHardwareClassifier = CheckHardwareClassifier::No;
}
}
if (shouldCheckHardwareClassifier == CheckHardwareClassifier::Yes) {
for (GList* factories = candidates; factories; factories = g_list_next(factories)) {
auto* factory = reinterpret_cast<GstElementFactory*>(factories->data);
String metadata = gst_element_factory_get_metadata(factory, GST_ELEMENT_METADATA_KLASS);
auto components = metadata.split('/');
if (components.contains("Hardware")) {
isUsingHardware = true;
break;
}
}
}
gst_plugin_feature_list_free(candidates);
GST_LOG("Lookup result for %s matching caps %" GST_PTR_FORMAT " : isSupported=%s, isUsingHardware=%s", elementFactoryTypeToString(factoryType), caps.get(), boolForPrinting(isSupported), boolForPrinting(isUsingHardware));
return { isSupported, isUsingHardware };
}
GStreamerRegistryScanner::GStreamerRegistryScanner(bool isMediaSource)
: m_isMediaSource(isMediaSource)
{
if (isInWebProcess())
ensureGStreamerInitialized();
else {
// This is still needed, mostly because of the webkit_web_view_can_show_mime_type() public API (so
// running from UIProcess).
gst_init(nullptr, nullptr);
}
GST_DEBUG_CATEGORY_INIT(webkit_media_gst_registry_scanner_debug, "webkitregistryscanner", 0, "WebKit GStreamer registry scanner");
ElementFactories factories(OptionSet<ElementFactories::Type>::fromRaw(static_cast<unsigned>(ElementFactories::Type::All)));
initializeDecoders(factories);
initializeEncoders(factories);
#ifndef GST_DISABLE_GST_DEBUG
GST_DEBUG("%s registry scanner initialized", m_isMediaSource ? "MSE" : "Regular playback");
for (auto& mimeType : m_decoderMimeTypeSet)
GST_DEBUG("Decoder mime-type registered: %s", mimeType.utf8().data());
for (auto& item : m_decoderCodecMap)
GST_DEBUG("%s decoder codec pattern registered: %s", item.value ? "Hardware" : "Software", item.key.string().utf8().data());
for (auto& mimeType : m_encoderMimeTypeSet)
GST_DEBUG("Encoder mime-type registered: %s", mimeType.utf8().data());
for (auto& item : m_encoderCodecMap)
GST_DEBUG("%s encoder codec pattern registered: %s", item.value ? "Hardware" : "Software", item.key.string().utf8().data());
#endif
}
const HashSet<String, ASCIICaseInsensitiveHash>& GStreamerRegistryScanner::mimeTypeSet(Configuration configuration) const
{
switch (configuration) {
case Configuration::Decoding:
return m_decoderMimeTypeSet;
case Configuration::Encoding:
return m_encoderMimeTypeSet;
}
RELEASE_ASSERT_NOT_REACHED();
}
bool GStreamerRegistryScanner::isContainerTypeSupported(Configuration configuration, const String& containerType) const
{
switch (configuration) {
case Configuration::Decoding:
return m_decoderMimeTypeSet.contains(containerType);
case Configuration::Encoding:
return m_encoderMimeTypeSet.contains(containerType);
}
RELEASE_ASSERT_NOT_REACHED();
}
void GStreamerRegistryScanner::fillMimeTypeSetFromCapsMapping(const GStreamerRegistryScanner::ElementFactories& factories, const Vector<GstCapsWebKitMapping>& mapping)
{
for (const auto& current : mapping) {
if (factories.hasElementForMediaType(current.elementType, current.capsString)) {
if (!current.webkitCodecPatterns.isEmpty()) {
for (const auto& pattern : current.webkitCodecPatterns)
m_decoderCodecMap.add(pattern, false);
}
if (!current.webkitMimeTypes.isEmpty()) {
for (const auto& mimeType : current.webkitMimeTypes)
m_decoderMimeTypeSet.add(mimeType);
} else
m_decoderMimeTypeSet.add(AtomString(current.capsString));
}
}
}
void GStreamerRegistryScanner::initializeDecoders(const GStreamerRegistryScanner::ElementFactories& factories)
{
if (factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/mpeg, mpegversion=(int)4")) {
m_decoderMimeTypeSet.add(AtomString("audio/aac"));
m_decoderMimeTypeSet.add(AtomString("audio/mp4"));
m_decoderMimeTypeSet.add(AtomString("audio/x-m4a"));
m_decoderMimeTypeSet.add(AtomString("audio/mpeg"));
m_decoderMimeTypeSet.add(AtomString("audio/x-mpeg"));
m_decoderCodecMap.add(AtomString("mpeg"), false);
m_decoderCodecMap.add(AtomString("mp4a*"), false);
}
auto opusSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/x-opus");
if (opusSupported && (!m_isMediaSource || factories.hasElementForMediaType(ElementFactories::Type::AudioParser, "audio/x-opus"))) {
m_decoderMimeTypeSet.add(AtomString("audio/opus"));
m_decoderCodecMap.add(AtomString("opus"), false);
m_decoderCodecMap.add(AtomString("x-opus"), false);
}
auto vorbisSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/x-vorbis");
if (vorbisSupported && (!m_isMediaSource || factories.hasElementForMediaType(ElementFactories::Type::AudioParser, "audio/x-vorbis"))) {
m_decoderCodecMap.add(AtomString("vorbis"), false);
m_decoderCodecMap.add(AtomString("x-vorbis"), false);
}
bool matroskaSupported = factories.hasElementForMediaType(ElementFactories::Type::Demuxer, "video/x-matroska");
if (matroskaSupported) {
auto vp8DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-vp8", ElementFactories::CheckHardwareClassifier::Yes);
auto vp9DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-vp9", ElementFactories::CheckHardwareClassifier::Yes);
if (vp8DecoderAvailable || vp9DecoderAvailable)
m_decoderMimeTypeSet.add(AtomString("video/webm"));
if (vp8DecoderAvailable) {
m_decoderCodecMap.add(AtomString("vp8"), vp8DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("x-vp8"), vp8DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("vp8.0"), vp8DecoderAvailable.isUsingHardware);
}
if (vp9DecoderAvailable) {
m_decoderCodecMap.add(AtomString("vp9"), vp9DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("x-vp9"), vp9DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("vp9.0"), vp9DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("vp09*"), vp9DecoderAvailable.isUsingHardware);
}
if (opusSupported)
m_decoderMimeTypeSet.add(AtomString("audio/webm"));
}
bool shouldAddMP4Container = false;
auto h264DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h264, profile=(string){ constrained-baseline, baseline, high }", ElementFactories::CheckHardwareClassifier::Yes);
if (h264DecoderAvailable && (!m_isMediaSource || factories.hasElementForMediaType(ElementFactories::Type::VideoParser, "video/x-h264"))) {
shouldAddMP4Container = true;
m_decoderCodecMap.add(AtomString("x-h264"), h264DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("avc*"), h264DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("mp4v*"), h264DecoderAvailable.isUsingHardware);
}
auto h265DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h265", ElementFactories::CheckHardwareClassifier::Yes);
if (h265DecoderAvailable && (!m_isMediaSource || factories.hasElementForMediaType(ElementFactories::Type::VideoParser, "video/x-h265"))) {
shouldAddMP4Container = true;
m_decoderCodecMap.add(AtomString("x-h265"), h265DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("hvc1*"), h265DecoderAvailable.isUsingHardware);
m_decoderCodecMap.add(AtomString("hev1*"), h265DecoderAvailable.isUsingHardware);
}
if (shouldAddMP4Container) {
m_decoderMimeTypeSet.add(AtomString("video/mp4"));
m_decoderMimeTypeSet.add(AtomString("video/x-m4v"));
}
Vector<String> av1DecodersDisallowedList { "av1dec"_s };
if ((matroskaSupported || isContainerTypeSupported(Configuration::Decoding, "video/mp4")) && factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-av1", ElementFactories::CheckHardwareClassifier::No, std::make_optional(WTFMove(av1DecodersDisallowedList)))) {
m_decoderCodecMap.add(AtomString("av01*"), false);
m_decoderCodecMap.add(AtomString("av1"), false);
m_decoderCodecMap.add(AtomString("x-av1"), false);
}
if (m_isMediaSource)
return;
// The mime-types initialized below are not supported by the MSE backend.
Vector<GstCapsWebKitMapping> mapping = {
{ ElementFactories::Type::AudioDecoder, "audio/midi", { "audio/midi", "audio/riff-midi" }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-ac3", { }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-dts", { }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-eac3", { "audio/x-ac3" }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-flac", { "audio/x-flac", "audio/flac" }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-sbc", { }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-sid", { }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-speex", { "audio/speex", "audio/x-speex" }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-wavpack", { "audio/x-wavpack" }, { } },
{ ElementFactories::Type::VideoDecoder, "video/mpeg, mpegversion=(int){1,2}, systemstream=(boolean)false", { "video/mpeg" }, { "mpeg" } },
{ ElementFactories::Type::VideoDecoder, "video/mpegts", { }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-dirac", { }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-flash-video", { "video/flv", "video/x-flv" }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-h263", { }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-msvideocodec", { "video/x-msvideo" }, { } },
{ ElementFactories::Type::Demuxer, "application/vnd.rn-realmedia", { }, { } },
{ ElementFactories::Type::Demuxer, "application/x-3gp", { }, { } },
{ ElementFactories::Type::Demuxer, "application/x-hls", { "application/vnd.apple.mpegurl", "application/x-mpegurl" }, { } },
{ ElementFactories::Type::Demuxer, "application/x-pn-realaudio", { }, { } },
{ ElementFactories::Type::Demuxer, "application/dash+xml", { }, { } },
{ ElementFactories::Type::Demuxer, "audio/x-aiff", { }, { } },
{ ElementFactories::Type::Demuxer, "audio/x-wav", { "audio/x-wav", "audio/wav", "audio/vnd.wave" }, { "1" } },
{ ElementFactories::Type::Demuxer, "video/quicktime", { }, { } },
{ ElementFactories::Type::Demuxer, "video/quicktime, variant=(string)3gpp", { "video/3gpp" }, { } },
{ ElementFactories::Type::Demuxer, "video/x-ms-asf", { }, { } },
};
fillMimeTypeSetFromCapsMapping(factories, mapping);
if (factories.hasElementForMediaType(ElementFactories::Type::Demuxer, "application/ogg")) {
m_decoderMimeTypeSet.add(AtomString("application/ogg"));
if (vorbisSupported) {
m_decoderMimeTypeSet.add(AtomString("audio/ogg"));
m_decoderMimeTypeSet.add(AtomString("audio/x-vorbis+ogg"));
}
if (factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/x-speex")) {
m_decoderMimeTypeSet.add(AtomString("audio/ogg"));
m_decoderCodecMap.add(AtomString("speex"), false);
}
if (factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-theora")) {
m_decoderMimeTypeSet.add(AtomString("video/ogg"));
m_decoderCodecMap.add(AtomString("theora"), false);
}
}
bool audioMpegSupported = false;
if (factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/mpeg, mpegversion=(int)1, layer=(int)[1, 3]")) {
audioMpegSupported = true;
m_decoderMimeTypeSet.add(AtomString("audio/mp1"));
m_decoderMimeTypeSet.add(AtomString("audio/mp3"));
m_decoderMimeTypeSet.add(AtomString("audio/x-mp3"));
m_decoderCodecMap.add(AtomString("audio/mp3"), false);
m_decoderCodecMap.add(AtomString("mp3"), false);
}
if (factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/mpeg, mpegversion=(int)2")) {
audioMpegSupported = true;
m_decoderMimeTypeSet.add(AtomString("audio/mp2"));
}
audioMpegSupported |= isContainerTypeSupported(Configuration::Decoding, "audio/mp4");
if (audioMpegSupported) {
m_decoderMimeTypeSet.add(AtomString("audio/mpeg"));
m_decoderMimeTypeSet.add(AtomString("audio/x-mpeg"));
}
if (matroskaSupported) {
m_decoderMimeTypeSet.add(AtomString("video/x-matroska"));
if (factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-vp10"))
m_decoderMimeTypeSet.add(AtomString("video/webm"));
}
}
void GStreamerRegistryScanner::initializeEncoders(const GStreamerRegistryScanner::ElementFactories& factories)
{
// MSE is about playback, which means decoding. No need to check for encoders then.
if (m_isMediaSource)
return;
auto aacSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/mpeg, mpegversion=(int)4");
if (factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/mpeg, mpegversion=(int)4")) {
m_encoderCodecMap.add(AtomString("mpeg"), false);
m_encoderCodecMap.add(AtomString("mp4a*"), false);
}
auto opusSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/x-opus");
if (opusSupported) {
m_encoderCodecMap.add(AtomString("opus"), false);
m_encoderCodecMap.add(AtomString("x-opus"), false);
}
auto vorbisSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/x-vorbis");
if (vorbisSupported) {
m_encoderCodecMap.add(AtomString("vorbis"), false);
m_encoderCodecMap.add(AtomString("x-vorbis"), false);
}
Vector<String> av1EncodersDisallowedList { "av1enc"_s };
auto av1EncoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoEncoder, "video/x-av1", ElementFactories::CheckHardwareClassifier::Yes, std::make_optional(WTFMove(av1EncodersDisallowedList)));
if (av1EncoderAvailable) {
m_encoderCodecMap.add(AtomString("av01*"), false);
m_encoderCodecMap.add(AtomString("av1"), false);
m_encoderCodecMap.add(AtomString("x-av1"), false);
}
auto vp8EncoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoEncoder, "video/x-vp8", ElementFactories::CheckHardwareClassifier::Yes);
if (vp8EncoderAvailable) {
m_encoderCodecMap.add(AtomString("vp8"), vp8EncoderAvailable.isUsingHardware);
m_encoderCodecMap.add(AtomString("x-vp8"), vp8EncoderAvailable.isUsingHardware);
m_encoderCodecMap.add(AtomString("vp8.0"), vp8EncoderAvailable.isUsingHardware);
}
auto vp9EncoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoEncoder, "video/x-vp9", ElementFactories::CheckHardwareClassifier::Yes);
if (vp9EncoderAvailable) {
m_encoderCodecMap.add(AtomString("vp9"), vp9EncoderAvailable.isUsingHardware);
m_encoderCodecMap.add(AtomString("x-vp9"), vp9EncoderAvailable.isUsingHardware);
m_encoderCodecMap.add(AtomString("vp9.0"), vp9EncoderAvailable.isUsingHardware);
m_encoderCodecMap.add(AtomString("vp09*"), vp9EncoderAvailable.isUsingHardware);
}
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "video/webm") && (vp8EncoderAvailable || vp9EncoderAvailable || av1EncoderAvailable))
m_encoderMimeTypeSet.add(AtomString("video/webm"));
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "audio/webm")) {
if (opusSupported)
m_encoderMimeTypeSet.add(AtomString("audio/opus"));
m_encoderMimeTypeSet.add(AtomString("audio/webm"));
}
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "audio/ogg") && (vorbisSupported || opusSupported))
m_encoderMimeTypeSet.add(AtomString("audio/ogg"));
auto h264EncoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoEncoder, "video/x-h264, profile=(string){ constrained-baseline, baseline, high }", ElementFactories::CheckHardwareClassifier::Yes);
if (h264EncoderAvailable) {
m_encoderCodecMap.add(AtomString("x-h264"), h264EncoderAvailable.isUsingHardware);
m_encoderCodecMap.add(AtomString("avc*"), h264EncoderAvailable.isUsingHardware);
m_encoderCodecMap.add(AtomString("mp4v*"), h264EncoderAvailable.isUsingHardware);
}
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "video/quicktime")) {
if (opusSupported)
m_encoderMimeTypeSet.add(AtomString("audio/opus"));
if (aacSupported) {
m_encoderMimeTypeSet.add(AtomString("audio/aac"));
m_encoderMimeTypeSet.add(AtomString("audio/mp4"));
m_encoderMimeTypeSet.add(AtomString("audio/x-m4a"));
}
if (h264EncoderAvailable) {
m_encoderMimeTypeSet.add(AtomString("video/mp4"));
m_encoderMimeTypeSet.add(AtomString("video/x-m4v"));
}
}
}
bool GStreamerRegistryScanner::isCodecSupported(Configuration configuration, const String& codec, bool shouldCheckForHardwareUse) const
{
// If the codec is named like a mimetype (eg: video/avc) remove the "video/" part.
size_t slashIndex = codec.find('/');
String codecName = slashIndex != notFound ? codec.substring(slashIndex + 1) : codec;
bool supported = false;
if (codecName.startsWith("avc1"))
supported = isAVC1CodecSupported(configuration, codecName, shouldCheckForHardwareUse);
else {
auto& codecMap = configuration == Configuration::Decoding ? m_decoderCodecMap : m_encoderCodecMap;
for (const auto& item : codecMap) {
if (!fnmatch(item.key.string().utf8().data(), codecName.utf8().data(), 0)) {
supported = shouldCheckForHardwareUse ? item.value : true;
if (supported)
break;
}
}
}
const char* configLogString = configurationNameForLogging(configuration);
GST_LOG("Checked %s %s codec \"%s\" supported %s", shouldCheckForHardwareUse ? "hardware" : "software", configLogString, codecName.utf8().data(), boolForPrinting(supported));
return supported;
}
bool GStreamerRegistryScanner::supportsFeatures(const String& features) const
{
// Apple TV requires this one for DD+.
constexpr auto dolbyDigitalPlusJOC = "joc";
if (features == dolbyDigitalPlusJOC)
return true;
return false;
}
MediaPlayerEnums::SupportsType GStreamerRegistryScanner::isContentTypeSupported(Configuration configuration, const ContentType& contentType, const Vector<ContentType>& contentTypesRequiringHardwareSupport) const
{
using SupportsType = MediaPlayerEnums::SupportsType;
const auto& containerType = contentType.containerType().convertToASCIILowercase();
if (!isContainerTypeSupported(configuration, containerType))
return SupportsType::IsNotSupported;
int channels = parseInteger<int>(contentType.parameter("channels"_s)).value_or(1);
String features = contentType.parameter("features"_s);
if (channels > MEDIA_MAX_AAC_CHANNELS || channels <= 0
|| !(features.isEmpty() || supportsFeatures(features))
|| parseInteger<unsigned>(contentType.parameter("width"_s)).value_or(0) > MEDIA_MAX_WIDTH
|| parseInteger<unsigned>(contentType.parameter("height"_s)).value_or(0) > MEDIA_MAX_HEIGHT
|| parseInteger<unsigned>(contentType.parameter("framerate"_s)).value_or(0) > MEDIA_MAX_FRAMERATE)
return SupportsType::IsNotSupported;
const auto& codecs = contentType.codecs();
// Spec says we should not return "probably" if the codecs string is empty.
if (codecs.isEmpty())
return SupportsType::MayBeSupported;
for (const auto& item : codecs) {
auto codec = item.convertToASCIILowercase();
bool requiresHardwareSupport = contentTypesRequiringHardwareSupport
.findIf([containerType, codec](auto& hardwareContentType) -> bool {
auto hardwareContainer = hardwareContentType.containerType();
if (!hardwareContainer.isEmpty()
&& fnmatch(hardwareContainer.utf8().data(), containerType.utf8().data(), 0))
return false;
auto hardwareCodecs = hardwareContentType.codecs();
return hardwareCodecs.isEmpty()
|| hardwareCodecs.findIf([codec](auto& hardwareCodec) -> bool {
return !fnmatch(hardwareCodec.utf8().data(), codec.utf8().data(), 0);
}) != notFound;
}) != notFound;
if (!isCodecSupported(configuration, codec, requiresHardwareSupport))
return SupportsType::IsNotSupported;
}
return SupportsType::IsSupported;
}
bool GStreamerRegistryScanner::areAllCodecsSupported(Configuration configuration, const Vector<String>& codecs, bool shouldCheckForHardwareUse) const
{
for (const auto& codec : codecs) {
if (!isCodecSupported(configuration, codec, shouldCheckForHardwareUse))
return false;
}
return true;
}
bool GStreamerRegistryScanner::isAVC1CodecSupported(Configuration configuration, const String& codec, bool shouldCheckForHardwareUse) const
{
auto checkH264Caps = [&](const char* capsString) {
OptionSet<ElementFactories::Type> factoryTypes;
switch (configuration) {
case Configuration::Decoding:
factoryTypes.add(ElementFactories::Type::VideoDecoder);
break;
case Configuration::Encoding:
factoryTypes.add(ElementFactories::Type::VideoEncoder);
break;
}
auto lookupResult = ElementFactories(factoryTypes).hasElementForMediaType(factoryTypes.toSingleValue().value(), capsString, ElementFactories::CheckHardwareClassifier::Yes);
bool supported = lookupResult && shouldCheckForHardwareUse ? lookupResult.isUsingHardware : true;
GST_DEBUG("%s decoding supported for codec %s: %s", shouldCheckForHardwareUse ? "Hardware" : "Software", codec.utf8().data(), boolForPrinting(supported));
return supported;
};
if (codec.find('.') == notFound) {
GST_DEBUG("Codec has no profile/level, falling back to unconstrained caps");
return checkH264Caps("video/x-h264");
}
auto components = codec.split('.');
long int spsAsInteger = strtol(components[1].utf8().data(), nullptr, 16);
uint8_t sps[3];
sps[0] = spsAsInteger >> 16;
sps[1] = spsAsInteger >> 8;
sps[2] = spsAsInteger;
const char* profile = gst_codec_utils_h264_get_profile(sps, 3);
const char* level = gst_codec_utils_h264_get_level(sps, 3);
// To avoid going through a class hierarchy for such a simple
// string conversion, we use a little trick here: See
// https://bugs.webkit.org/show_bug.cgi?id=201870.
char levelAsStringFallback[2] = { '\0', '\0' };
if (!level && sps[2] > 0 && sps[2] <= 5) {
levelAsStringFallback[0] = static_cast<char>('0' + sps[2]);
level = levelAsStringFallback;
}
if (!profile || !level) {
GST_ERROR("H.264 profile / level was not recognised in codec %s", codec.utf8().data());
return false;
}
GST_DEBUG("Codec %s translates to H.264 profile %s and level %s", codec.utf8().data(), profile, level);
if (const char* maxVideoResolution = g_getenv("WEBKIT_GST_MAX_AVC1_RESOLUTION")) {
uint8_t levelAsInteger = gst_codec_utils_h264_get_level_idc(level);
GST_DEBUG("Maximum video resolution requested: %s, supplied codec level IDC: %u", maxVideoResolution, levelAsInteger);
uint8_t maxLevel = 0;
const char* maxLevelString = "";
if (!g_strcmp0(maxVideoResolution, "1080P")) {
maxLevel = 40;
maxLevelString = "4";
} else if (!g_strcmp0(maxVideoResolution, "720P")) {
maxLevel = 31;
maxLevelString = "3.1";
} else if (!g_strcmp0(maxVideoResolution, "480P")) {
maxLevel = 30;
maxLevelString = "3";
} else {
g_warning("Invalid value for WEBKIT_GST_MAX_AVC1_RESOLUTION. Currently supported, 1080P, 720P and 480P.");
return false;
}
if (levelAsInteger > maxLevel)
return false;
return checkH264Caps(makeString("video/x-h264, level=(string)", maxLevelString).utf8().data());
}
if (webkitGstCheckVersion(1, 18, 0)) {
GST_DEBUG("Checking video decoders for constrained caps");
return checkH264Caps(makeString("video/x-h264, level=(string)", level, ", profile=(string)", profile).utf8().data());
}
GST_DEBUG("Falling back to unconstrained caps");
return checkH264Caps("video/x-h264");
}
const char* GStreamerRegistryScanner::configurationNameForLogging(Configuration configuration) const
{
const char* configLogString = "";
switch (configuration) {
case Configuration::Encoding:
configLogString = "encoding";
break;
case Configuration::Decoding:
configLogString = "decoding";
break;
}
return configLogString;
}
GStreamerRegistryScanner::RegistryLookupResult GStreamerRegistryScanner::isConfigurationSupported(Configuration configuration, const MediaConfiguration& mediaConfiguration) const
{
bool isSupported = false;
bool isUsingHardware = false;
const char* configLogString = configurationNameForLogging(configuration);
if (mediaConfiguration.video) {
auto& videoConfiguration = mediaConfiguration.video.value();
GST_DEBUG("Checking %s support for video configuration: \"%s\" size: %ux%u bitrate: %" G_GUINT64_FORMAT " framerate: %f", configLogString,
videoConfiguration.contentType.utf8().data(),
videoConfiguration.width, videoConfiguration.height,
videoConfiguration.bitrate, videoConfiguration.framerate);
auto contentType = ContentType(videoConfiguration.contentType);
isSupported = isContainerTypeSupported(configuration, contentType.containerType());
auto codecs = contentType.codecs();
if (!codecs.isEmpty())
isUsingHardware = areAllCodecsSupported(configuration, codecs, true);
}
if (mediaConfiguration.audio) {
auto& audioConfiguration = mediaConfiguration.audio.value();
GST_DEBUG("Checking %s support for audio configuration: \"%s\" %s channels, bitrate: %" G_GUINT64_FORMAT " samplerate: %u", configLogString,
audioConfiguration.contentType.utf8().data(), audioConfiguration.channels.utf8().data(),
audioConfiguration.bitrate.value_or(0), audioConfiguration.samplerate.value_or(0));
auto contentType = ContentType(audioConfiguration.contentType);
isSupported = isContainerTypeSupported(configuration, contentType.containerType());
}
return { isSupported, isUsingHardware };
}
}
#endif
|