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
|
/*
* Copyright (C) 2024 Igalia S.L
* Copyright (C) 2024 Metrological Group B.V.
*
* 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 "GStreamerQuirks.h"
#if USE(GSTREAMER)
#include "GStreamerCommon.h"
#include "GStreamerHolePunchQuirkBcmNexus.h"
#include "GStreamerHolePunchQuirkFake.h"
#include "GStreamerHolePunchQuirkRialto.h"
#include "GStreamerHolePunchQuirkWesteros.h"
#include "GStreamerQuirkAmLogic.h"
#include "GStreamerQuirkBcmNexus.h"
#include "GStreamerQuirkBroadcom.h"
#include "GStreamerQuirkOpenMAX.h"
#include "GStreamerQuirkRealtek.h"
#include "GStreamerQuirkRialto.h"
#include "GStreamerQuirkWesteros.h"
#include <wtf/NeverDestroyed.h>
#include <wtf/OptionSet.h>
#include <wtf/TZoneMallocInlines.h>
#include <wtf/text/StringCommon.h>
#include <wtf/text/StringView.h>
namespace WebCore {
WTF_MAKE_TZONE_ALLOCATED_IMPL(GStreamerQuirkBase);
WTF_MAKE_TZONE_ALLOCATED_IMPL(GStreamerQuirk);
WTF_MAKE_TZONE_ALLOCATED_IMPL(GStreamerHolePunchQuirk);
WTF_MAKE_TZONE_ALLOCATED_IMPL(GStreamerQuirksManager);
GST_DEBUG_CATEGORY_STATIC(webkit_quirks_debug);
#define GST_CAT_DEFAULT webkit_quirks_debug
GStreamerQuirksManager& GStreamerQuirksManager::singleton()
{
static NeverDestroyed<GStreamerQuirksManager> sharedInstance(false, true);
return sharedInstance;
}
GStreamerQuirksManager::GStreamerQuirksManager(bool isForTesting, bool loadQuirksFromEnvironment)
: m_isForTesting(isForTesting)
{
static std::once_flag debugRegisteredFlag;
std::call_once(debugRegisteredFlag, [] {
GST_DEBUG_CATEGORY_INIT(webkit_quirks_debug, "webkitquirks", 0, "WebKit Quirks");
});
// For the time being keep this disabled on non-WPE platforms. GTK on desktop shouldn't require
// quirks, for instance.
#if !PLATFORM(WPE)
return;
#endif
GST_DEBUG("Quirk manager created%s", m_isForTesting ? " for testing." : ".");
if (!loadQuirksFromEnvironment)
return;
const char* quirksList = g_getenv("WEBKIT_GST_QUIRKS");
GST_DEBUG("Attempting to parse requested quirks: %s", GST_STR_NULL(quirksList));
if (quirksList) {
StringView quirks { unsafeSpan(quirksList) };
if (WTF::equalLettersIgnoringASCIICase(quirks, "help"_s)) {
gst_printerrln("Supported quirks for WEBKIT_GST_QUIRKS are: amlogic, broadcom, bcmnexus, openmax, realtek, westeros");
return;
}
for (const auto& identifier : quirks.split(',')) {
std::unique_ptr<GStreamerQuirk> quirk;
if (WTF::equalLettersIgnoringASCIICase(identifier, "amlogic"_s))
quirk = WTF::makeUnique<GStreamerQuirkAmLogic>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "broadcom"_s))
quirk = WTF::makeUnique<GStreamerQuirkBroadcom>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "bcmnexus"_s))
quirk = WTF::makeUnique<GStreamerQuirkBcmNexus>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "openmax"_s))
quirk = WTF::makeUnique<GStreamerQuirkOpenMAX>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "realtek"_s))
quirk = WTF::makeUnique<GStreamerQuirkRealtek>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "rialto"_s))
quirk = WTF::makeUnique<GStreamerQuirkRialto>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "westeros"_s))
quirk = WTF::makeUnique<GStreamerQuirkWesteros>();
else {
GST_WARNING("Unknown quirk requested: %s. Skipping", identifier.toStringWithoutCopying().ascii().data());
continue;
}
if (!quirk->isPlatformSupported()) {
GST_WARNING("Quirk %s was requested but is not supported on this platform. Skipping", quirk->identifier().characters());
continue;
}
m_quirks.append(WTFMove(quirk));
}
}
const char* holePunchQuirk = g_getenv("WEBKIT_GST_HOLE_PUNCH_QUIRK");
GST_DEBUG("Attempting to parse requested hole-punch quirk: %s", GST_STR_NULL(holePunchQuirk));
if (!holePunchQuirk)
return;
StringView identifier { unsafeSpan(holePunchQuirk) };
if (WTF::equalLettersIgnoringASCIICase(identifier, "help"_s)) {
WTFLogAlways("Supported quirks for WEBKIT_GST_HOLE_PUNCH_QUIRK are: fake, westeros, bcmnexus");
return;
}
// TODO: Maybe check this is coherent (somehow) with the quirk(s) selected above.
if (WTF::equalLettersIgnoringASCIICase(identifier, "bcmnexus"_s))
m_holePunchQuirk = WTF::makeUnique<GStreamerHolePunchQuirkBcmNexus>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "rialto"_s))
m_holePunchQuirk = WTF::makeUnique<GStreamerHolePunchQuirkRialto>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "westeros"_s))
m_holePunchQuirk = WTF::makeUnique<GStreamerHolePunchQuirkWesteros>();
else if (WTF::equalLettersIgnoringASCIICase(identifier, "fake"_s))
m_holePunchQuirk = WTF::makeUnique<GStreamerHolePunchQuirkFake>();
else
GST_WARNING("HolePunch quirk %s un-supported.", identifier.toStringWithoutCopying().ascii().data());
}
bool GStreamerQuirksManager::isEnabled() const
{
return !m_quirks.isEmpty();
}
GstElement* GStreamerQuirksManager::createAudioSink()
{
for (const auto& quirk : m_quirks) {
auto* sink = quirk->createAudioSink();
if (sink) {
GST_DEBUG("Using AudioSink from quirk %s : %" GST_PTR_FORMAT, quirk->identifier().characters(), sink);
return sink;
}
}
return nullptr;
}
GstElement* GStreamerQuirksManager::createWebAudioSink()
{
for (const auto& quirk : m_quirks) {
auto* sink = quirk->createWebAudioSink();
if (!sink)
continue;
GST_DEBUG("Using WebAudioSink from quirk %s : %" GST_PTR_FORMAT, quirk->identifier().characters(), sink);
return sink;
}
GST_DEBUG("Quirks didn't specify a WebAudioSink, falling back to default sink");
return createPlatformAudioSink("music"_s);
}
GstElement* GStreamerQuirksManager::createHolePunchVideoSink(bool isLegacyPlaybin, const MediaPlayer* player)
{
if (!m_holePunchQuirk) {
GST_DEBUG("None of the quirks requested a HolePunchSink");
return nullptr;
}
auto sink = m_holePunchQuirk->createHolePunchVideoSink(isLegacyPlaybin, player);
GST_DEBUG("Using HolePunchSink from quirk %s : %" GST_PTR_FORMAT, m_holePunchQuirk->identifier().characters(), sink);
return sink;
}
void GStreamerQuirksManager::setHolePunchVideoRectangle(GstElement* videoSink, const IntRect& rect)
{
if (!m_holePunchQuirk) {
GST_DEBUG("None of the quirks requested a HolePunchSink");
return;
}
if (!m_holePunchQuirk->setHolePunchVideoRectangle(videoSink, rect))
GST_WARNING("Hole punch video rectangle configuration failed.");
}
bool GStreamerQuirksManager::sinksRequireClockSynchronization() const
{
if (!m_holePunchQuirk)
return true;
return m_holePunchQuirk->requiresClockSynchronization();
}
void GStreamerQuirksManager::configureElement(GstElement* element, OptionSet<ElementRuntimeCharacteristics>&& characteristics)
{
GST_DEBUG("Configuring element %" GST_PTR_FORMAT, element);
for (const auto& quirk : m_quirks)
quirk->configureElement(element, characteristics);
}
std::optional<bool> GStreamerQuirksManager::isHardwareAccelerated(GstElementFactory* factory) const
{
for (const auto& quirk : m_quirks) {
auto result = quirk->isHardwareAccelerated(factory);
if (!result)
continue;
GST_DEBUG("Setting %" GST_PTR_FORMAT " as %s accelerated from quirk %s", factory, quirk->identifier().characters(), *result ? "hardware" : "software");
return *result;
}
return std::nullopt;
}
bool GStreamerQuirksManager::supportsVideoHolePunchRendering() const
{
return m_holePunchQuirk.get();
}
GstElementFactoryListType GStreamerQuirksManager::audioVideoDecoderFactoryListType() const
{
for (const auto& quirk : m_quirks) {
auto result = quirk->audioVideoDecoderFactoryListType();
if (!result)
continue;
GST_DEBUG("Quirk %s requests audio/video decoder factory list override to %" G_GUINT32_FORMAT, quirk->identifier().characters(), static_cast<uint32_t>(*result));
return *result;
}
return GST_ELEMENT_FACTORY_TYPE_DECODER;
}
Vector<String> GStreamerQuirksManager::disallowedWebAudioDecoders() const
{
Vector<String> result;
for (const auto& quirk : m_quirks)
result.appendVector(quirk->disallowedWebAudioDecoders());
return result;
}
void GStreamerQuirksManager::setHolePunchEnabledForTesting(bool enabled)
{
if (enabled)
m_holePunchQuirk = WTF::makeUnique<GStreamerHolePunchQuirkFake>();
else
m_holePunchQuirk = nullptr;
}
unsigned GStreamerQuirksManager::getAdditionalPlaybinFlags() const
{
unsigned flags = 0;
for (const auto& quirk : m_quirks) {
auto quirkFlags = quirk->getAdditionalPlaybinFlags();
GST_DEBUG("Quirk %s requests these playbin flags: %u", quirk->identifier().characters(), quirkFlags);
flags |= quirkFlags;
}
if (flags)
GST_DEBUG("Final quirk flags: %u", flags);
else {
GST_DEBUG("Quirks didn't request any specific playbin flags, returning default text+soft-colorbalance.");
flags = getGstPlayFlag("text") | getGstPlayFlag("soft-colorbalance");
}
return flags;
}
bool GStreamerQuirksManager::shouldParseIncomingLibWebRTCBitStream() const
{
for (auto& quirk : m_quirks) {
if (!quirk->shouldParseIncomingLibWebRTCBitStream())
return false;
}
return true;
}
bool GStreamerQuirksManager::needsBufferingPercentageCorrection() const
{
for (auto& quirk : m_quirks) {
if (quirk->needsBufferingPercentageCorrection())
return true;
}
return false;
}
ASCIILiteral GStreamerQuirksManager::queryBufferingPercentage(MediaPlayerPrivateGStreamer* mediaPlayerPrivate, const GRefPtr<GstQuery>& query) const
{
// Only the first quirk that needs percentage correction must operate. We're assuming that the m_quirks Vector
// preserves its order among calls to the percentage correction family of methods.
for (auto& quirk : m_quirks) {
if (quirk->needsBufferingPercentageCorrection())
return quirk->queryBufferingPercentage(mediaPlayerPrivate, query);
}
return nullptr;
}
int GStreamerQuirksManager::correctBufferingPercentage(MediaPlayerPrivateGStreamer* playerPrivate, int originalBufferingPercentage, GstBufferingMode mode) const
{
// Only the first quirk that needs percentage correction must operate. We're assuming that the m_quirks Vector
// preserves its order among calls to the percentage correction family of methods.
for (auto& quirk : m_quirks) {
if (quirk->needsBufferingPercentageCorrection())
return quirk->correctBufferingPercentage(playerPrivate, originalBufferingPercentage, mode);
}
return originalBufferingPercentage;
}
void GStreamerQuirksManager::resetBufferingPercentage(MediaPlayerPrivateGStreamer* playerPrivate, int bufferingPercentage) const
{
// Only the first quirk that needs percentage correction must operate. We're assuming that the m_quirks Vector
// preserves its order among calls to the percentage correction family of methods.
for (auto& quirk : m_quirks) {
if (quirk->needsBufferingPercentageCorrection()) {
quirk->resetBufferingPercentage(playerPrivate, bufferingPercentage);
return;
}
}
}
void GStreamerQuirksManager::setupBufferingPercentageCorrection(MediaPlayerPrivateGStreamer* playerPrivate, GstState currentState, GstState newState, GRefPtr<GstElement>&& element) const
{
// Only the first quirk that needs percentage correction must operate. We're assuming that the m_quirks Vector
// preserves its order among calls to the percentage correction family of methods.
for (auto& quirk : m_quirks) {
if (quirk->needsBufferingPercentageCorrection()) {
// We're moving the element to the inner method. If this loop ever needs to call the method twice,
// think about a solution to avoid passing a dummy element (after first move) to the method the second
// time it's called.
quirk->setupBufferingPercentageCorrection(playerPrivate, currentState, newState, WTFMove(element));
return;
}
}
}
void GStreamerQuirksManager::processWebAudioSilentBuffer(GstBuffer* buffer) const
{
for (const auto& quirk : m_quirks) {
if (quirk->processWebAudioSilentBuffer(buffer))
break;
}
}
#undef GST_CAT_DEFAULT
} // namespace WebCore
#endif // USE(GSTREAMER)
|