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 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
|
/*
* 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 "GStreamerCodecUtilities.h"
#include "GStreamerCommon.h"
#include "RuntimeApplicationChecks.h"
#include <fnmatch.h>
#include <gst/pbutils/codec-utils.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/PrintStream.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/StringToIntegerConversion.h>
#if USE(GSTREAMER_WEBRTC)
#include <gst/rtp/rtp.h>
#endif
#if ENABLE(VIDEO)
#include "VideoEncoderPrivateGStreamer.h"
#endif
namespace {
struct VideoDecodingLimits {
unsigned mediaMaxWidth = 0;
unsigned mediaMaxHeight = 0;
unsigned mediaMaxFrameRate = 0;
VideoDecodingLimits(unsigned mediaMaxWidth, unsigned mediaMaxHeight, unsigned mediaMaxFrameRate)
: mediaMaxWidth(mediaMaxWidth)
, mediaMaxHeight(mediaMaxHeight)
, mediaMaxFrameRate(mediaMaxFrameRate)
{
}
};
}
#ifdef VIDEO_DECODING_LIMIT
static std::optional<VideoDecodingLimits> videoDecoderLimitsDefaults()
{
// VIDEO_DECODING_LIMIT should be in format: WIDTHxHEIGHT@FRAMERATE.
String videoDecodingLimit(String::fromUTF8(VIDEO_DECODING_LIMIT));
if (videoDecodingLimit.isEmpty())
return { };
Vector<String> entries;
// Extract frame rate part from the VIDEO_DECODING_LIMIT: WIDTHxHEIGHT@FRAMERATE.
videoDecodingLimit.split('@', [&entries](StringView item) {
entries.append(item.toString());
});
if (entries.size() != 2)
return { };
auto frameRate = parseIntegerAllowingTrailingJunk<unsigned>(entries[1]);
if (!frameRate.has_value())
return { };
const auto widthAndHeight = entries[0].split('x');
if (widthAndHeight.size() != 2)
return { };
const auto width = parseIntegerAllowingTrailingJunk<unsigned>(widthAndHeight[0]);
if (!width.has_value())
return { };
const auto height = parseIntegerAllowingTrailingJunk<unsigned>(widthAndHeight[1]);
if (!height.has_value())
return { };
return { VideoDecodingLimits(width.value(), height.value(), frameRate.value()) };
}
#endif
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
static bool singletonInitialized = false;
bool GStreamerRegistryScanner::singletonNeedsInitialization()
{
return singletonInitialized;
}
GStreamerRegistryScanner& GStreamerRegistryScanner::singleton()
{
static NeverDestroyed<GStreamerRegistryScanner> sharedInstance;
singletonInitialized = true;
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 PLATFORM(BCM_NEXUS) || PLATFORM(BROADCOM)
if (types.contains(Type::AudioDecoder))
audioDecoderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_PARSER | GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO, GST_RANK_MARGINAL);
if (types.contains(Type::VideoDecoder))
videoDecoderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_PARSER | GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO, GST_RANK_MARGINAL);
#else
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::VideoDecoder))
videoDecoderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_DECODER | GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO, GST_RANK_MARGINAL);
#endif
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::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);
if (types.contains(Type::RtpPayloader))
rtpPayloaderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_PAYLOADER, GST_RANK_MARGINAL);
if (types.contains(Type::RtpDepayloader))
rtpDepayloaderFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_DEPAYLOADER, GST_RANK_MARGINAL);
if (types.contains(Type::Decryptor))
decryptorFactories = gst_element_factory_list_get_elements(GST_ELEMENT_FACTORY_TYPE_DECRYPTOR, 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);
gst_plugin_feature_list_free(rtpPayloaderFactories);
gst_plugin_feature_list_free(rtpDepayloaderFactories);
gst_plugin_feature_list_free(decryptorFactories);
}
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::RtpPayloader:
return "RTP payloader";
case Type::RtpDepayloader:
return "RTP depayloader";
case Type::Decryptor:
return "Decryptor";
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::RtpPayloader:
return rtpPayloaderFactories;
case GStreamerRegistryScanner::ElementFactories::Type::RtpDepayloader:
return rtpDepayloaderFactories;
case GStreamerRegistryScanner::ElementFactories::Type::Decryptor:
return decryptorFactories;
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
{
GRefPtr<GstCaps> caps = adoptGRef(gst_caps_from_string(capsString));
if (!caps)
return { };
return hasElementForCaps(factoryType, caps, shouldCheckHardwareClassifier, disallowedList);
}
GStreamerRegistryScanner::RegistryLookupResult GStreamerRegistryScanner::ElementFactories::hasElementForCaps(ElementFactories::Type factoryType, const GRefPtr<GstCaps>& caps, 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 || factoryType == Type::RtpDepayloader)
padDirection = GST_PAD_SRC;
GList* candidates = gst_element_factory_list_filter(elementFactories, caps.get(), padDirection, false);
bool isSupported = candidates;
bool isUsingHardware = false;
GRefPtr<GstElementFactory> selectedFactory;
if (isSupported)
selectedFactory = GST_ELEMENT_FACTORY_CAST(candidates->data);
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;
selectedFactory = GST_ELEMENT_FACTORY_CAST(factories->data);
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);
auto metadata = String::fromLatin1(gst_element_factory_get_metadata(factory, GST_ELEMENT_METADATA_KLASS));
auto components = metadata.split('/');
if (components.contains("Hardware"_s)
#if PLATFORM(BCM_NEXUS) || PLATFORM(BROADCOM)
|| g_str_has_prefix(GST_OBJECT_NAME(factory), "brcm")
#elif PLATFORM(REALTEK)
|| g_str_has_prefix(GST_OBJECT_NAME(factory), "omx")
#elif USE(WESTEROS_SINK)
|| g_str_has_prefix(GST_OBJECT_NAME(factory), "westeros")
#endif
) {
isUsingHardware = true;
selectedFactory = factory;
break;
}
}
}
gst_plugin_feature_list_free(candidates);
// Valid `selectedFactory` ends up stored in the scanner singleton.
if (isSupported)
GST_OBJECT_FLAG_SET(selectedFactory.get(), GST_OBJECT_FLAG_MAY_BE_LEAKED);
else
selectedFactory.clear();
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, selectedFactory };
}
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");
refresh();
}
void GStreamerRegistryScanner::refresh()
{
#if USE(GSTREAMER_WEBRTC)
m_audioRtpExtensions.reset();
m_videoRtpExtensions.reset();
#endif
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 (auto result = factories.hasElementForMediaType(current.elementType, current.capsString)) {
if (!current.webkitCodecPatterns.isEmpty()) {
for (const auto& pattern : current.webkitCodecPatterns)
m_decoderCodecMap.add(pattern, result);
}
if (!current.webkitMimeTypes.isEmpty()) {
for (const auto& mimeType : current.webkitMimeTypes)
m_decoderMimeTypeSet.add(mimeType);
} else
m_decoderMimeTypeSet.add(AtomString::fromLatin1(current.capsString));
}
}
}
void GStreamerRegistryScanner::initializeDecoders(const GStreamerRegistryScanner::ElementFactories& factories)
{
m_decoderCodecMap.clear();
m_decoderMimeTypeSet.clear();
if (auto result = factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/mpeg, mpegversion=(int)4")) {
m_decoderMimeTypeSet.add(AtomString("audio/aac"_s));
m_decoderMimeTypeSet.add(AtomString("audio/mp4"_s));
m_decoderMimeTypeSet.add(AtomString("audio/x-m4a"_s));
m_decoderMimeTypeSet.add(AtomString("audio/mpeg"_s));
m_decoderMimeTypeSet.add(AtomString("audio/x-mpeg"_s));
m_decoderCodecMap.add(AtomString("mpeg"_s), result);
m_decoderCodecMap.add(AtomString("mp4a*"_s), result);
}
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"_s));
m_decoderCodecMap.add(AtomString("opus"_s), opusSupported);
m_decoderCodecMap.add(AtomString("x-opus"_s), opusSupported);
}
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"_s), vorbisSupported);
m_decoderCodecMap.add(AtomString("x-vorbis"_s), vorbisSupported);
}
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, { { "vp8alphadecodebin"_s } });
auto vp9DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-vp9", ElementFactories::CheckHardwareClassifier::Yes, { { "vp9alphadecodebin"_s } });
if (vp8DecoderAvailable || vp9DecoderAvailable)
m_decoderMimeTypeSet.add(AtomString("video/webm"_s));
if (vp8DecoderAvailable) {
m_decoderCodecMap.add(AtomString("vp8"_s), vp8DecoderAvailable);
m_decoderCodecMap.add(AtomString("x-vp8"_s), vp8DecoderAvailable);
m_decoderCodecMap.add(AtomString("vp8.0"_s), vp8DecoderAvailable);
}
if (vp9DecoderAvailable) {
m_decoderCodecMap.add(AtomString("vp9"_s), vp9DecoderAvailable);
m_decoderCodecMap.add(AtomString("x-vp9"_s), vp9DecoderAvailable);
m_decoderCodecMap.add(AtomString("vp9.0"_s), vp9DecoderAvailable);
m_decoderCodecMap.add(AtomString("vp09*"_s), vp9DecoderAvailable);
}
if (opusSupported)
m_decoderMimeTypeSet.add(AtomString("audio/webm"_s));
}
bool shouldAddMP4Container = false;
auto h264DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h264, profile=(string){ constrained-baseline, baseline, high }", ElementFactories::CheckHardwareClassifier::Yes);
auto h264AllFormatsDecoderAvailable = GStreamerRegistryScanner::RegistryLookupResult::merge(
factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h264, profile=(string){ constrained-baseline, baseline, high }, stream-format=(string)avc", ElementFactories::CheckHardwareClassifier::Yes),
factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h264, profile=(string){ constrained-baseline, baseline, high }, stream-format=(string)byte-stream", ElementFactories::CheckHardwareClassifier::Yes)
);
auto needsH264Parse = h264DecoderAvailable != h264AllFormatsDecoderAvailable;
if (h264DecoderAvailable && (!needsH264Parse || factories.hasElementForMediaType(ElementFactories::Type::VideoParser, "video/x-h264"))) {
shouldAddMP4Container = true;
m_decoderCodecMap.add(AtomString("x-h264"_s), h264DecoderAvailable);
m_decoderCodecMap.add(AtomString("avc*"_s), h264DecoderAvailable);
m_decoderCodecMap.add(AtomString("mp4v*"_s), h264DecoderAvailable);
}
auto h265DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h265", ElementFactories::CheckHardwareClassifier::Yes);
auto h265AllFormatsDecoderAvailable = GStreamerRegistryScanner::RegistryLookupResult::merge(
factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h265, stream-format=(string)byte-stream", ElementFactories::CheckHardwareClassifier::Yes),
GStreamerRegistryScanner::RegistryLookupResult::merge(
factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h265, stream-format=(string)hev1", ElementFactories::CheckHardwareClassifier::Yes),
factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-h265, stream-format=(string)hvc1", ElementFactories::CheckHardwareClassifier::Yes)
)
);
auto needsH265Parse = h265DecoderAvailable != h265AllFormatsDecoderAvailable;
if (h265DecoderAvailable && (!needsH265Parse || factories.hasElementForMediaType(ElementFactories::Type::VideoParser, "video/x-h265"))) {
shouldAddMP4Container = true;
m_decoderCodecMap.add(AtomString("x-h265"_s), h265DecoderAvailable);
m_decoderCodecMap.add(AtomString("hvc1*"_s), h265DecoderAvailable);
m_decoderCodecMap.add(AtomString("hev1*"_s), h265DecoderAvailable);
}
if (shouldAddMP4Container) {
m_decoderMimeTypeSet.add(AtomString("video/mp4"_s));
m_decoderMimeTypeSet.add(AtomString("video/x-m4v"_s));
}
auto av1DecoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-av1", ElementFactories::CheckHardwareClassifier::Yes);
if ((matroskaSupported || isContainerTypeSupported(Configuration::Decoding, "video/mp4"_s)) && av1DecoderAvailable) {
m_decoderCodecMap.add(AtomString("av01*"_s), av1DecoderAvailable);
m_decoderCodecMap.add(AtomString("av1"_s), av1DecoderAvailable);
m_decoderCodecMap.add(AtomString("x-av1"_s), av1DecoderAvailable);
}
Vector<GstCapsWebKitMapping> mseCompatibleMapping = {
{ ElementFactories::Type::AudioDecoder, "audio/x-ac3", { }, { "x-ac3"_s, "ac-3"_s, "ac3"_s } },
{ ElementFactories::Type::AudioDecoder, "audio/x-eac3", { "audio/x-ac3"_s }, { "x-eac3"_s, "ec3"_s, "ec-3"_s, "eac3"_s } },
{ ElementFactories::Type::AudioDecoder, "audio/x-flac", { "audio/x-flac"_s, "audio/flac"_s }, {"x-flac"_s, "flac"_s } },
};
fillMimeTypeSetFromCapsMapping(factories, mseCompatibleMapping);
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"_s, "audio/riff-midi"_s }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-dts", { }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-sbc", { }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-sid", { }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-speex", { "audio/speex"_s, "audio/x-speex"_s }, { } },
{ ElementFactories::Type::AudioDecoder, "audio/x-wavpack", { "audio/x-wavpack"_s }, { } },
{ ElementFactories::Type::VideoDecoder, "video/mpeg, mpegversion=(int){1,2}, systemstream=(boolean)false", { "video/mpeg"_s }, { "mpeg"_s } },
{ ElementFactories::Type::VideoDecoder, "video/mpegts", { }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-dirac", { }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-flash-video", { "video/flv"_s, "video/x-flv"_s }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-h263", { }, { } },
{ ElementFactories::Type::VideoDecoder, "video/x-msvideocodec", { "video/x-msvideo"_s }, { } },
{ ElementFactories::Type::Demuxer, "application/vnd.rn-realmedia", { }, { } },
{ ElementFactories::Type::Demuxer, "application/x-3gp", { }, { } },
{ ElementFactories::Type::Demuxer, "application/x-pn-realaudio", { }, { } },
{ ElementFactories::Type::Demuxer, "audio/x-aiff", { }, { } },
{ ElementFactories::Type::Demuxer, "audio/x-wav", { "audio/x-wav"_s, "audio/wav"_s, "audio/vnd.wave"_s }, { "1"_s } },
{ ElementFactories::Type::Demuxer, "video/quicktime", { }, { } },
{ ElementFactories::Type::Demuxer, "video/quicktime, variant=(string)3gpp", { "video/3gpp"_s }, { } },
{ ElementFactories::Type::Demuxer, "video/x-ms-asf", { }, { } },
};
if (const char* hlsSupport = g_getenv("WEBKIT_GST_ENABLE_HLS_SUPPORT")) {
if (!g_strcmp0(hlsSupport, "1"))
mapping.append({ ElementFactories::Type::Demuxer, "application/x-hls", { "application/vnd.apple.mpegurl"_s, "application/x-mpegurl"_s }, { } });
}
if (const char* dashSupport = g_getenv("WEBKIT_GST_ENABLE_DASH_SUPPORT")) {
if (!g_strcmp0(dashSupport, "1"))
mapping.append({ ElementFactories::Type::Demuxer, "application/dash+xml", { }, { } });
}
fillMimeTypeSetFromCapsMapping(factories, mapping);
if (factories.hasElementForMediaType(ElementFactories::Type::Demuxer, "application/ogg")) {
m_decoderMimeTypeSet.add(AtomString("application/ogg"_s));
if (vorbisSupported) {
m_decoderMimeTypeSet.add(AtomString("audio/ogg"_s));
m_decoderMimeTypeSet.add(AtomString("audio/x-vorbis+ogg"_s));
}
if (auto result = factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/x-speex")) {
m_decoderMimeTypeSet.add(AtomString("audio/ogg"_s));
m_decoderCodecMap.add(AtomString("speex"_s), result);
}
if (auto result = factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-theora")) {
m_decoderMimeTypeSet.add(AtomString("video/ogg"_s));
m_decoderCodecMap.add(AtomString("theora"_s), result);
}
}
bool audioMpegSupported = false;
if (auto result = factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/mpeg, mpegversion=(int)1, layer=(int)[1, 3]")) {
audioMpegSupported = true;
m_decoderMimeTypeSet.add(AtomString("audio/mp1"_s));
m_decoderMimeTypeSet.add(AtomString("audio/mp3"_s));
m_decoderMimeTypeSet.add(AtomString("audio/x-mp3"_s));
m_decoderCodecMap.add(AtomString("audio/mp3"_s), result);
m_decoderCodecMap.add(AtomString("mp3"_s), result);
}
if (factories.hasElementForMediaType(ElementFactories::Type::AudioDecoder, "audio/mpeg, mpegversion=(int)2")) {
audioMpegSupported = true;
m_decoderMimeTypeSet.add(AtomString("audio/mp2"_s));
}
audioMpegSupported |= isContainerTypeSupported(Configuration::Decoding, "audio/mp4"_s);
if (audioMpegSupported) {
m_decoderMimeTypeSet.add(AtomString("audio/mpeg"_s));
m_decoderMimeTypeSet.add(AtomString("audio/x-mpeg"_s));
}
if (matroskaSupported) {
m_decoderMimeTypeSet.add(AtomString("video/x-matroska"_s));
if (factories.hasElementForMediaType(ElementFactories::Type::VideoDecoder, "video/x-vp10"))
m_decoderMimeTypeSet.add(AtomString("video/webm"_s));
}
}
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;
m_encoderCodecMap.clear();
m_encoderMimeTypeSet.clear();
auto aacSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/mpeg, mpegversion=(int)4");
if (auto result = factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/mpeg, mpegversion=(int)4")) {
m_encoderCodecMap.add(AtomString("mpeg"_s), result);
m_encoderCodecMap.add(AtomString("mp4a*"_s), result);
}
auto opusSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/x-opus");
if (opusSupported) {
m_encoderCodecMap.add(AtomString("opus"_s), opusSupported);
m_encoderCodecMap.add(AtomString("x-opus"_s), opusSupported);
}
auto vorbisSupported = factories.hasElementForMediaType(ElementFactories::Type::AudioEncoder, "audio/x-vorbis");
if (vorbisSupported) {
m_encoderCodecMap.add(AtomString("vorbis"_s), vorbisSupported);
m_encoderCodecMap.add(AtomString("x-vorbis"_s), vorbisSupported);
}
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*"_s), av1EncoderAvailable);
m_encoderCodecMap.add(AtomString("av1"_s), av1EncoderAvailable);
m_encoderCodecMap.add(AtomString("x-av1"_s), av1EncoderAvailable);
}
auto vp8EncoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoEncoder, "video/x-vp8", ElementFactories::CheckHardwareClassifier::Yes);
if (vp8EncoderAvailable) {
m_encoderCodecMap.add(AtomString("vp8"_s), vp8EncoderAvailable);
m_encoderCodecMap.add(AtomString("x-vp8"_s), vp8EncoderAvailable);
m_encoderCodecMap.add(AtomString("vp8.0"_s), vp8EncoderAvailable);
}
auto vp9EncoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoEncoder, "video/x-vp9", ElementFactories::CheckHardwareClassifier::Yes);
if (vp9EncoderAvailable) {
m_encoderCodecMap.add(AtomString("vp9"_s), vp9EncoderAvailable);
m_encoderCodecMap.add(AtomString("x-vp9"_s), vp9EncoderAvailable);
m_encoderCodecMap.add(AtomString("vp9.0"_s), vp9EncoderAvailable);
m_encoderCodecMap.add(AtomString("vp09*"_s), vp9EncoderAvailable);
}
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "video/webm") && (vp8EncoderAvailable || vp9EncoderAvailable || av1EncoderAvailable))
m_encoderMimeTypeSet.add(AtomString("video/webm"_s));
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "audio/webm")) {
if (opusSupported)
m_encoderMimeTypeSet.add(AtomString("audio/opus"_s));
m_encoderMimeTypeSet.add(AtomString("audio/webm"_s));
}
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "audio/ogg") && (vorbisSupported || opusSupported))
m_encoderMimeTypeSet.add(AtomString("audio/ogg"_s));
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("h264"_s), h264EncoderAvailable);
m_encoderCodecMap.add(AtomString("x-h264"_s), h264EncoderAvailable);
m_encoderCodecMap.add(AtomString("avc*"_s), h264EncoderAvailable);
m_encoderCodecMap.add(AtomString("mp4v*"_s), h264EncoderAvailable);
}
auto h265EncoderAvailable = factories.hasElementForMediaType(ElementFactories::Type::VideoEncoder, "video/x-h265, profile=(string){ main, high }", ElementFactories::CheckHardwareClassifier::Yes);
if (h265EncoderAvailable) {
m_encoderCodecMap.add(AtomString("hev1*"_s), h265EncoderAvailable);
m_encoderCodecMap.add(AtomString("hvc1*"_s), h265EncoderAvailable);
}
if (factories.hasElementForMediaType(ElementFactories::Type::Muxer, "video/quicktime")) {
if (opusSupported)
m_encoderMimeTypeSet.add(AtomString("audio/opus"_s));
if (aacSupported) {
m_encoderMimeTypeSet.add(AtomString("audio/aac"_s));
m_encoderMimeTypeSet.add(AtomString("audio/mp4"_s));
m_encoderMimeTypeSet.add(AtomString("audio/x-m4a"_s));
}
if (h264EncoderAvailable) {
m_encoderMimeTypeSet.add(AtomString("video/mp4"_s));
m_encoderMimeTypeSet.add(AtomString("video/x-m4v"_s));
}
}
}
GStreamerRegistryScanner::CodecLookupResult 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;
CodecLookupResult result;
if (codecName.startsWith("avc1"_s))
result = isAVC1CodecSupported(configuration, codecName, shouldCheckForHardwareUse);
else {
auto& codecMap = configuration == Configuration::Decoding ? m_decoderCodecMap : m_encoderCodecMap;
for (const auto& [codecId, lookupResult] : codecMap) {
if (!fnmatch(codecId.string().utf8().data(), codecName.utf8().data(), 0)) {
bool isSupported = shouldCheckForHardwareUse ? lookupResult.isUsingHardware : true;
if (isSupported) {
result.isSupported = true;
result.factory = lookupResult.factory;
break;
}
}
}
}
const char* configLogString = configurationNameForLogging(configuration);
GST_LOG("Checked %s %s codec \"%s\" supported %s", shouldCheckForHardwareUse ? "hardware" : "software", configLogString, codecName.utf8().data(), boolForPrinting(result.isSupported));
return result;
}
bool GStreamerRegistryScanner::supportsFeatures(const String& features) const
{
// Apple TV requires this one for DD+.
constexpr auto dolbyDigitalPlusJOC = "joc"_s;
if (equalIgnoringASCIICase(features, dolbyDigitalPlusJOC))
return true;
return false;
}
MediaPlayerEnums::SupportsType GStreamerRegistryScanner::isContentTypeSupported(Configuration configuration, const ContentType& contentType, const Vector<ContentType>& contentTypesRequiringHardwareSupport) const
{
static std::optional<VideoDecodingLimits> videoDecodingLimits;
#ifdef VIDEO_DECODING_LIMIT
static std::once_flag onceFlag;
if (configuration == Configuration::Decoding) {
std::call_once(onceFlag, [] {
videoDecodingLimits = videoDecoderLimitsDefaults();
if (!videoDecodingLimits) {
GST_WARNING("Parsing VIDEO_DECODING_LIMIT failed");
ASSERT_NOT_REACHED();
return;
}
});
}
#endif
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)))
return SupportsType::IsNotSupported;
bool ok;
float width = contentType.parameter("width"_s).toFloat(&ok);
if (!ok)
width = 0;
float height = contentType.parameter("height"_s).toFloat(&ok);
if (!ok)
height = 0;
if (videoDecodingLimits && (width > videoDecodingLimits->mediaMaxWidth || height > videoDecodingLimits->mediaMaxHeight))
return SupportsType::IsNotSupported;
float frameRate = contentType.parameter("framerate"_s).toFloat(&ok);
// Limit frameRate only in case of highest supported resolution.
if (ok && videoDecodingLimits && width == videoDecodingLimits->mediaMaxWidth && height == videoDecodingLimits->mediaMaxHeight && frameRate > videoDecodingLimits->mediaMaxFrameRate)
return SupportsType::IsNotSupported;
const auto& codecs = contentType.codecs();
#if ENABLE(ENCRYPTED_MEDIA)
String cryptoblockformat = contentType.parameter("cryptoblockformat"_s);
if (!cryptoblockformat.isEmpty()) {
OptionSet<ElementFactories::Type> factoryTypes;
factoryTypes.add(ElementFactories::Type::Decryptor);
auto factories = ElementFactories(factoryTypes);
// https://developers.google.com/youtube/devices/living-room/certification-requirements
// section 15.1.3: The isTypeSupported method MUST support the cryptoblockformat mime-type
// parameter, and MUST support subsample as a parameter value.
if (cryptoblockformat != "subsample"_s)
return SupportsType::IsNotSupported;
if (!containerType.endsWith("webm"_s))
return SupportsType::IsNotSupported;
#if GST_CHECK_VERSION(1, 22, 0)
for (const auto& mimeCodec : codecs) {
auto codecCaps = adoptGRef(gst_codec_utils_caps_from_mime_codec(mimeCodec.ascii().data()));
if (!codecCaps) {
GST_WARNING("Unable to convert codec %s to caps", mimeCodec.ascii().data());
continue;
}
auto* structure = gst_caps_get_structure(codecCaps.get(), 0);
const char* name = gst_structure_get_name(structure);
auto caps = adoptGRef(gst_caps_new_simple("application/x-webm-enc", "original-media-type", G_TYPE_STRING, name, nullptr));
if (!factories.hasElementForCaps(ElementFactories::Type::Decryptor, caps))
return SupportsType::IsNotSupported;
}
#else
if (!factories.hasElementForMediaType(ElementFactories::Type::Decryptor, "application/x-webm-enc"))
return SupportsType::IsNotSupported;
#endif // GST_CHECK_VERSION(1, 22, 0)
}
#endif // ENABLE(ENCRYPTED_MEDIA)
// 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;
}
GStreamerRegistryScanner::CodecLookupResult GStreamerRegistryScanner::areCapsSupported(Configuration configuration, const GRefPtr<GstCaps>& caps, bool shouldCheckForHardwareUse)
{
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).hasElementForCaps(factoryTypes.toSingleValue().value(), caps, ElementFactories::CheckHardwareClassifier::Yes);
bool supported = lookupResult && shouldCheckForHardwareUse ? lookupResult.isUsingHardware : true;
GST_DEBUG("%s decoding supported for caps %" GST_PTR_FORMAT ": %s", shouldCheckForHardwareUse ? "Hardware" : "Software", caps.get(), boolForPrinting(supported));
return { supported, supported ? lookupResult.factory : nullptr };
}
GStreamerRegistryScanner::CodecLookupResult GStreamerRegistryScanner::isAVC1CodecSupported(Configuration configuration, const String& codec, bool shouldCheckForHardwareUse) const
{
auto checkH264Caps = [&](const char* capsString) -> CodecLookupResult {
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, supported ? lookupResult.factory : nullptr };
};
if (codec.find('.') == notFound) {
GST_DEBUG("Codec has no profile/level, falling back to unconstrained caps");
return checkH264Caps("video/x-h264");
}
auto [profile, level] = GStreamerCodecUtilities::parseH264ProfileAndLevel(codec);
if (!profile || !level) {
GST_ERROR("H.264 profile / level was not recognised in codec %s", codec.utf8().data());
return { false, nullptr };
}
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, nullptr };
}
if (levelAsInteger > maxLevel)
return { false, nullptr };
return checkH264Caps(makeString("video/x-h264, level=(string)", maxLevelString).utf8().data());
}
GST_DEBUG("Checking video decoders for constrained caps");
return checkH264Caps(makeString("video/x-h264, level=(string)", level, ", profile=(string)", profile).utf8().data());
}
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, nullptr };
}
#if USE(GSTREAMER_WEBRTC)
RTCRtpCapabilities GStreamerRegistryScanner::audioRtpCapabilities(Configuration configuration)
{
RTCRtpCapabilities capabilies;
fillAudioRtpCapabilities(configuration, capabilies);
return capabilies;
}
RTCRtpCapabilities GStreamerRegistryScanner::videoRtpCapabilities(Configuration configuration)
{
RTCRtpCapabilities capabilies;
fillVideoRtpCapabilities(configuration, capabilies);
return capabilies;
}
static inline Vector<RTCRtpCapabilities::HeaderExtensionCapability> probeRtpExtensions(const Vector<const char*>& candidates)
{
Vector<RTCRtpCapabilities::HeaderExtensionCapability> extensions;
for (const auto& uri : candidates) {
if (auto extension = adoptGRef(gst_rtp_header_extension_create_from_uri(uri)))
extensions.append({ String::fromLatin1(uri) });
}
return extensions;
}
void GStreamerRegistryScanner::fillAudioRtpCapabilities(Configuration configuration, RTCRtpCapabilities& capabilities)
{
if (!m_audioRtpExtensions)
m_audioRtpExtensions = probeRtpExtensions(m_allAudioRtpExtensions);
if (m_audioRtpExtensions)
capabilities.headerExtensions = copyToVector(*m_audioRtpExtensions);
auto codecElement = ElementFactories::Type::AudioDecoder;
auto rtpElement = ElementFactories::Type::RtpDepayloader;
if (configuration == Configuration::Encoding) {
codecElement = ElementFactories::Type::AudioEncoder;
rtpElement = ElementFactories::Type::RtpPayloader;
}
auto factories = ElementFactories({ codecElement, rtpElement });
if (factories.hasElementForMediaType(codecElement, "audio/x-opus") && factories.hasElementForMediaType(rtpElement, "audio/x-opus"))
capabilities.codecs.append({ .mimeType = "audio/opus"_s, .clockRate = 48000, .channels = 2, .sdpFmtpLine = "minptime=10;useinbandfec=1"_s });
if (factories.hasElementForMediaType(codecElement, "audio/G722") && factories.hasElementForMediaType(rtpElement, "audio/G722"))
capabilities.codecs.append({ .mimeType = "audio/G722"_s, .clockRate = 8000, .channels = 1, .sdpFmtpLine = emptyString() });
if (factories.hasElementForMediaType(codecElement, "audio/x-mulaw") && factories.hasElementForMediaType(rtpElement, "audio/x-mulaw"))
capabilities.codecs.append({ .mimeType = "audio/PCMU"_s, .clockRate = 8000, .channels = 1, .sdpFmtpLine = emptyString() });
if (factories.hasElementForMediaType(codecElement, "audio/x-alaw") && factories.hasElementForMediaType(rtpElement, "audio/x-alaw"))
capabilities.codecs.append({ .mimeType = "audio/PCMA"_s, .clockRate = 8000, .channels = 1, .sdpFmtpLine = emptyString() });
}
void GStreamerRegistryScanner::fillVideoRtpCapabilities(Configuration configuration, RTCRtpCapabilities& capabilities)
{
if (!m_videoRtpExtensions)
m_videoRtpExtensions = probeRtpExtensions(m_allVideoRtpExtensions);
if (m_videoRtpExtensions)
capabilities.headerExtensions = copyToVector(*m_videoRtpExtensions);
auto codecElement = ElementFactories::Type::VideoDecoder;
auto rtpElement = ElementFactories::Type::RtpDepayloader;
if (configuration == Configuration::Encoding) {
codecElement = ElementFactories::Type::VideoEncoder;
rtpElement = ElementFactories::Type::RtpPayloader;
}
auto factories = ElementFactories({ codecElement, rtpElement });
auto codecLookupResult = factories.hasElementForMediaType(codecElement, "video/x-h264");
if (codecLookupResult && factories.hasElementForMediaType(rtpElement, "video/x-h264")) {
GRefPtr<GstElement> element;
if (configuration == Configuration::Decoding)
element = gst_element_factory_create(codecLookupResult.factory.get(), nullptr);
else
element = gst_element_factory_make("webkitvideoencoder", nullptr);
if (element) {
Vector<String> profiles = {
"42e01f"_s,
"640c1f"_s,
"42001f"_s,
"4d001f"_s,
};
for (auto& profileLevelId : profiles) {
auto spsAsInteger = parseInteger<uint64_t>(profileLevelId, 16).value_or(0);
uint8_t sps[3];
sps[0] = spsAsInteger >> 16;
sps[1] = (spsAsInteger >> 8) & 0xff;
sps[2] = spsAsInteger & 0xff;
auto caps = adoptGRef(gst_caps_new_empty_simple("video/x-h264"));
gst_codec_utils_h264_caps_set_level_and_profile(caps.get(), sps, 3);
if (WEBKIT_IS_VIDEO_ENCODER(element.get())) {
if (!videoEncoderSupportsFormat(WEBKIT_VIDEO_ENCODER(element.get()), caps))
continue;
} else if (!gst_element_factory_can_sink_any_caps(gst_element_get_factory(element.get()), caps.get()))
continue;
capabilities.codecs.append({ .mimeType = "video/H264"_s, .clockRate = 90000, .channels = { }, .sdpFmtpLine = makeString("level-asymmetry-allowed=1;packetization-mode=1;profile-level-id="_s, profileLevelId) });
capabilities.codecs.append({ .mimeType = "video/H264"_s, .clockRate = 90000, .channels = { }, .sdpFmtpLine = makeString("level-asymmetry-allowed=1;packetization-mode=0;profile-level-id="_s, profileLevelId) });
}
}
}
if (factories.hasElementForMediaType(codecElement, "video/x-h265") && factories.hasElementForMediaType(rtpElement, "video/x-h265")) {
// FIXME: Probe for video/H265 encoder capabilities.
capabilities.codecs.append({ .mimeType = "video/H265"_s, .clockRate = 90000, .channels = { }, .sdpFmtpLine = { } });
}
if (factories.hasElementForMediaType(codecElement, "video/x-av1") && factories.hasElementForMediaType(rtpElement, "video/x-av1"))
capabilities.codecs.append({ .mimeType = "video/AV1"_s, .clockRate = 90000, .channels = { }, .sdpFmtpLine = { } });
if (factories.hasElementForMediaType(codecElement, "video/x-vp8") && factories.hasElementForMediaType(rtpElement, "video/x-vp8"))
capabilities.codecs.append({ .mimeType = "video/VP8"_s, .clockRate = 90000, .channels = { }, .sdpFmtpLine = { } });
if (factories.hasElementForMediaType(codecElement, "video/x-vp9") && factories.hasElementForMediaType(rtpElement, "video/x-vp9")) {
// FIXME: Profile levels are hardcoded here for the time being. It might be a good idea to
// actually probe those on the selected encoder.
capabilities.codecs.append({ .mimeType = "video/VP9"_s, .clockRate = 90000, .channels = { }, .sdpFmtpLine = "profile-id=0"_s });
capabilities.codecs.append({ .mimeType = "video/VP9"_s, .clockRate = 90000, .channels = { }, .sdpFmtpLine = "profile-id=2"_s });
}
}
Vector<RTCRtpCapabilities::HeaderExtensionCapability> GStreamerRegistryScanner::audioRtpExtensions()
{
if (!m_audioRtpExtensions)
m_audioRtpExtensions = probeRtpExtensions(m_allAudioRtpExtensions);
return *m_audioRtpExtensions;
}
Vector<RTCRtpCapabilities::HeaderExtensionCapability> GStreamerRegistryScanner::videoRtpExtensions()
{
if (!m_videoRtpExtensions)
m_videoRtpExtensions = probeRtpExtensions(m_allVideoRtpExtensions);
return *m_videoRtpExtensions;
}
#endif // USE(GSTREAMER_WEBRTC)
#undef GST_CAT_DEFAULT
} // namespace WebCore
#endif // USE(GSTREAMER)
|