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
|
/*
* Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2007 Collabora Ltd. All rights reserved.
* Copyright (C) 2007 Alp Toker <alp@atoker.com>
* Copyright (C) 2009 Gustavo Noronha Silva <gns@gnome.org>
* Copyright (C) 2009, 2010, 2011, 2012, 2013, 2016, 2017, 2018, 2019, 2020, 2021 Igalia S.L
* Copyright (C) 2015 Sebastian Dröge <sebastian@centricular.com>
* Copyright (C) 2015, 2016, 2017, 2018, 2019, 2020, 2021 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 "MediaPlayerPrivateGStreamerMSE.h"
#if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(MEDIA_SOURCE)
#include "AppendPipeline.h"
#include "AudioTrackPrivateGStreamer.h"
#include "GStreamerCommon.h"
#include "GStreamerRegistryScannerMSE.h"
#include "InbandTextTrackPrivateGStreamer.h"
#include "MIMETypeRegistry.h"
#include "MediaDescription.h"
#include "MediaPlayer.h"
#include "MediaSourceTrackGStreamer.h"
#include "SourceBufferPrivateGStreamer.h"
#include "TimeRanges.h"
#include "VideoTrackPrivateGStreamer.h"
#include "WebKitMediaSourceGStreamer.h"
#include <gst/app/gstappsink.h>
#include <gst/app/gstappsrc.h>
#include <gst/gst.h>
#include <gst/pbutils/pbutils.h>
#include <gst/video/video.h>
#include <wtf/Condition.h>
#include <wtf/HashSet.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/StringPrintStream.h>
#include <wtf/URL.h>
#include <wtf/text/AtomString.h>
#include <wtf/text/AtomStringHash.h>
#include <wtf/text/StringToIntegerConversion.h>
static const char* dumpReadyState(WebCore::MediaPlayer::ReadyState readyState)
{
switch (readyState) {
case WebCore::MediaPlayer::ReadyState::HaveNothing: return "HaveNothing";
case WebCore::MediaPlayer::ReadyState::HaveMetadata: return "HaveMetadata";
case WebCore::MediaPlayer::ReadyState::HaveCurrentData: return "HaveCurrentData";
case WebCore::MediaPlayer::ReadyState::HaveFutureData: return "HaveFutureData";
case WebCore::MediaPlayer::ReadyState::HaveEnoughData: return "HaveEnoughData";
default: return "(unknown)";
}
}
GST_DEBUG_CATEGORY(webkit_mse_debug);
#define GST_CAT_DEFAULT webkit_mse_debug
namespace WebCore {
class MediaPlayerFactoryGStreamerMSE final : public MediaPlayerFactory {
private:
MediaPlayerEnums::MediaEngineIdentifier identifier() const final { return MediaPlayerEnums::MediaEngineIdentifier::GStreamerMSE; };
std::unique_ptr<MediaPlayerPrivateInterface> createMediaEnginePlayer(MediaPlayer* player) const final
{
return makeUnique<MediaPlayerPrivateGStreamerMSE>(player);
}
void getSupportedTypes(HashSet<String, ASCIICaseInsensitiveHash>& types) const final
{
return MediaPlayerPrivateGStreamerMSE::getSupportedTypes(types);
}
MediaPlayer::SupportsType supportsTypeAndCodecs(const MediaEngineSupportParameters& parameters) const final
{
return MediaPlayerPrivateGStreamerMSE::supportsType(parameters);
}
bool supportsKeySystem(const String& keySystem, const String& mimeType) const final
{
return MediaPlayerPrivateGStreamerMSE::supportsKeySystem(keySystem, mimeType);
}
};
void MediaPlayerPrivateGStreamerMSE::registerMediaEngine(MediaEngineRegistrar registrar)
{
GST_DEBUG_CATEGORY_INIT(webkit_mse_debug, "webkitmse", 0, "WebKit MSE media player");
registrar(makeUnique<MediaPlayerFactoryGStreamerMSE>());
}
MediaPlayerPrivateGStreamerMSE::MediaPlayerPrivateGStreamerMSE(MediaPlayer* player)
: MediaPlayerPrivateGStreamer(player)
{
GST_TRACE("creating the player (%p)", this);
}
MediaPlayerPrivateGStreamerMSE::~MediaPlayerPrivateGStreamerMSE()
{
GST_TRACE("destroying the player (%p)", this);
m_source.clear();
}
void MediaPlayerPrivateGStreamerMSE::load(const String&)
{
// This media engine only supports MediaSource URLs.
m_networkState = MediaPlayer::NetworkState::FormatError;
if (auto player = m_player.get())
player->networkStateChanged();
}
void MediaPlayerPrivateGStreamerMSE::load(const URL& url, const ContentType&, MediaSourcePrivateClient& mediaSource)
{
auto mseBlobURI = makeString("mediasource", url.string().isEmpty() ? "blob://"_s : url.string());
GST_DEBUG("Loading %s", mseBlobURI.ascii().data());
m_mediaSource = mediaSource;
m_mediaSourcePrivate = MediaSourcePrivateGStreamer::open(*m_mediaSource.get(), *this);
MediaPlayerPrivateGStreamer::load(mseBlobURI);
}
void MediaPlayerPrivateGStreamerMSE::play()
{
GST_DEBUG_OBJECT(pipeline(), "Play requested");
m_isPaused = false;
updateStates();
}
void MediaPlayerPrivateGStreamerMSE::pause()
{
GST_DEBUG_OBJECT(pipeline(), "Pause requested");
m_isPaused = true;
updateStates();
}
MediaTime MediaPlayerPrivateGStreamerMSE::durationMediaTime() const
{
if (UNLIKELY(!m_pipeline || m_didErrorOccur))
return MediaTime();
return m_mediaTimeDuration;
}
void MediaPlayerPrivateGStreamerMSE::seek(const MediaTime& time)
{
GST_DEBUG_OBJECT(pipeline(), "Requested seek to %s", time.toString().utf8().data());
doSeek(time, m_playbackRate);
}
bool MediaPlayerPrivateGStreamerMSE::doSeek(const MediaTime& position, float rate)
{
// This method should only be called outside of MediaPlayerPrivateGStreamerMSE by MediaPlayerPrivateGStreamer::setRate().
// Note: An important difference between seek with WebKitMediaSrc and regular playback is that seeking before
// pre-roll (e.g. to start playback at a non-zero position) is supported in WebKitMediaSrc but not in regular
// playback. This is relevant in MSE because pre-roll may never occur if the JS code never appends a range starting
// at zero, creating a chicken and egg problem.
// GStreamer doesn't support zero as a valid playback rate. Instead, that is implemented in WebKit by pausing
// the pipeline.
if (rate <= 0)
rate = 1.0;
m_seekTime = position;
m_isSeeking = true;
m_isWaitingForPreroll = true;
m_isEndReached = false;
// Important: In order to ensure correct propagation whether pre-roll has happened or not, we send the seek directly
// to the source element, rather than letting playbin do the routing.
gst_element_seek(m_source.get(), rate, GST_FORMAT_TIME, m_seekFlags,
GST_SEEK_TYPE_SET, toGstClockTime(m_seekTime), GST_SEEK_TYPE_NONE, 0);
invalidateCachedPosition();
// Notify MediaSource and have new frames enqueued (when they're available).
m_mediaSource->seekToTime(m_seekTime);
return true;
}
void MediaPlayerPrivateGStreamerMSE::setNetworkState(MediaPlayer::NetworkState networkState)
{
if (networkState == m_mediaSourceNetworkState)
return;
m_mediaSourceNetworkState = networkState;
m_networkState = networkState;
updateStates();
if (auto player = m_player.get())
player->networkStateChanged();
}
void MediaPlayerPrivateGStreamerMSE::setReadyState(MediaPlayer::ReadyState mediaSourceReadyState)
{
// Something important to bear in mind is that the readyState we get here comes from MediaSource.
// From MediaSource perspective, as long as the sample for currentTime exists in the sample map, we are >= HaveCurrentData.
// This is NOT true from the player perspective though, because there needs to pass some time since we have the first frame
// (>=HaveCurrentData for MediaSource) and we have decoded it and sent it to the sink/compositor (>=HaveCurrentData in HTMLMediaElement).
// The way we implement this is by keeping track of the MediaSource readyState internally in m_mediaSourceReadyState but not
// spreading states >= HaveCurrentData to the player until prerolled.
if (mediaSourceReadyState == m_mediaSourceReadyState)
return;
GST_DEBUG("MediaSource called setReadyState(%p): %s -> %s Current player state: %s Waiting for preroll: %s", this,
dumpReadyState(m_mediaSourceReadyState), dumpReadyState(mediaSourceReadyState), dumpReadyState(m_readyState), boolForPrinting(m_isWaitingForPreroll));
m_mediaSourceReadyState = mediaSourceReadyState;
if (mediaSourceReadyState < MediaPlayer::ReadyState::HaveCurrentData || !m_isWaitingForPreroll)
propagateReadyStateToPlayer();
}
void MediaPlayerPrivateGStreamerMSE::propagateReadyStateToPlayer()
{
ASSERT(m_mediaSourceReadyState < MediaPlayer::ReadyState::HaveCurrentData || !m_isWaitingForPreroll);
if (m_readyState == m_mediaSourceReadyState)
return;
GST_DEBUG("Propagating MediaSource readyState %s to player ready state (currently %s)", dumpReadyState(m_mediaSourceReadyState), dumpReadyState(m_readyState));
m_readyState = m_mediaSourceReadyState;
updateStates(); // Set the pipeline to PLAYING or PAUSED if necessary.
auto player = m_player.get();
if (player)
player->readyStateChanged();
// The readyState change may be a result of monitorSourceBuffers() finding that currentTime == duration, which
// should cause the video to be marked as ended. Let's have the player check that.
if (player && (!m_isWaitingForPreroll || currentMediaTime() == durationMediaTime()))
player->timeChanged();
}
void MediaPlayerPrivateGStreamerMSE::asyncStateChangeDone()
{
ASSERT(GST_STATE(m_pipeline.get()) >= GST_STATE_PAUSED);
// There are three circumstances in which a preroll can occur:
// a) At the begining of playback. This is the point where we propagate >=HaveCurrentData to the player.
// b) At the end of a seek. We emit the "seeked" event as well.
// c) At the end of a flush (forced quality change). These should not produce either of these outcomes.
// We identify (a) and (b) by setting m_isWaitingForPreroll = true at the initialization of the player and
// at the beginning of a seek.
GST_DEBUG("Pipeline prerolled. currentMediaTime = %s", currentMediaTime().toString().utf8().data());
if (!m_isWaitingForPreroll) {
GST_DEBUG("Preroll was consequence of a flush, nothing to do at this level.");
return;
}
m_isWaitingForPreroll = false;
// The order of these sections is important. In the case of a seek, the "seeked" event must be emitted
// before the "playing" event (which is emitted on HAVE_ENOUGH_DATA). Therefore, we take care of them in
// that order.
if (m_isSeeking) {
m_isSeeking = false;
GST_DEBUG("Seek complete because of preroll. currentMediaTime = %s", currentMediaTime().toString().utf8().data());
// By calling timeChanged(), m_isSeeking will be checked an a "seeked" event will be emitted.
if (auto player = m_player.get())
player->timeChanged();
}
propagateReadyStateToPlayer();
}
const PlatformTimeRanges& MediaPlayerPrivateGStreamerMSE::buffered() const
{
return m_mediaSource ? m_mediaSource->buffered() : PlatformTimeRanges::emptyRanges();
}
void MediaPlayerPrivateGStreamerMSE::sourceSetup(GstElement* sourceElement)
{
ASSERT(WEBKIT_IS_MEDIA_SRC(sourceElement));
GST_DEBUG_OBJECT(pipeline(), "Source %p setup (old was: %p)", sourceElement, m_source.get());
m_source = sourceElement;
if (m_mediaSourcePrivate->hasAllTracks())
webKitMediaSrcEmitStreams(WEBKIT_MEDIA_SRC(m_source.get()), m_tracks);
}
void MediaPlayerPrivateGStreamerMSE::updateStates()
{
bool shouldBePlaying = !m_isPaused && readyState() >= MediaPlayer::ReadyState::HaveFutureData;
GST_DEBUG_OBJECT(pipeline(), "shouldBePlaying = %s, m_isPipelinePlaying = %s", boolForPrinting(shouldBePlaying), boolForPrinting(m_isPipelinePlaying));
if (shouldBePlaying && !m_isPipelinePlaying) {
if (!changePipelineState(GST_STATE_PLAYING))
GST_ERROR_OBJECT(pipeline(), "Setting the pipeline to PLAYING failed");
m_isPipelinePlaying = true;
} else if (!shouldBePlaying && m_isPipelinePlaying) {
if (!changePipelineState(GST_STATE_PAUSED))
GST_ERROR_OBJECT(pipeline(), "Setting the pipeline to PAUSED failed");
m_isPipelinePlaying = false;
}
}
bool MediaPlayerPrivateGStreamerMSE::isTimeBuffered(const MediaTime &time) const
{
bool result = m_mediaSource && m_mediaSource->buffered().contain(time);
GST_DEBUG("Time %s buffered? %s", toString(time).utf8().data(), boolForPrinting(result));
return result;
}
void MediaPlayerPrivateGStreamerMSE::durationChanged()
{
ASSERT(isMainThread());
MediaTime previousDuration = m_mediaTimeDuration;
m_mediaTimeDuration = m_mediaSource ? m_mediaSource->duration() : MediaTime::invalidTime();
GST_TRACE("previous=%s, new=%s", toString(previousDuration).utf8().data(), toString(m_mediaTimeDuration).utf8().data());
// Avoid emiting durationchanged in the case where the previous duration was 0 because that case is already handled
// by the HTMLMediaElement.
if (m_mediaTimeDuration != previousDuration && m_mediaTimeDuration.isValid() && previousDuration.isValid()) {
if (auto player = m_player.get())
player->durationChanged();
}
}
void MediaPlayerPrivateGStreamerMSE::setInitialVideoSize(const FloatSize& videoSize)
{
ASSERT(isMainThread());
// We set the size of the video only for the first initialization segment.
// This is intentional: Normally the video size depends on the frames arriving
// at the sink in the playback pipeline, not in the append pipeline; but we still
// want to report an initial size for HAVE_METADATA (first initialization segment).
if (!m_videoSize.isEmpty())
return;
GST_DEBUG("Setting initial video size: %gx%g", videoSize.width(), videoSize.height());
m_videoSize = videoSize;
}
void MediaPlayerPrivateGStreamerMSE::startSource(const Vector<RefPtr<MediaSourceTrackGStreamer>>& tracks)
{
m_tracks = tracks;
webKitMediaSrcEmitStreams(WEBKIT_MEDIA_SRC(m_source.get()), tracks);
}
void MediaPlayerPrivateGStreamerMSE::getSupportedTypes(HashSet<String, ASCIICaseInsensitiveHash>& types)
{
GStreamerRegistryScannerMSE::getSupportedDecodingTypes(types);
}
MediaPlayer::SupportsType MediaPlayerPrivateGStreamerMSE::supportsType(const MediaEngineSupportParameters& parameters)
{
MediaPlayer::SupportsType result = MediaPlayer::SupportsType::IsNotSupported;
if (!parameters.isMediaSource)
return result;
if (!ensureGStreamerInitialized())
return result;
auto containerType = parameters.type.containerType();
// YouTube TV provides empty types for some videos and we want to be selected as best media engine for them.
if (containerType.isEmpty()) {
result = MediaPlayer::SupportsType::MayBeSupported;
GST_DEBUG("mime-type \"%s\" supported: %s", parameters.type.raw().utf8().data(), convertEnumerationToString(result).utf8().data());
return result;
}
registerWebKitGStreamerElements();
GST_DEBUG("Checking mime-type \"%s\"", parameters.type.raw().utf8().data());
auto& gstRegistryScanner = GStreamerRegistryScannerMSE::singleton();
result = gstRegistryScanner.isContentTypeSupported(GStreamerRegistryScanner::Configuration::Decoding, parameters.type, parameters.contentTypesRequiringHardwareSupport);
GST_DEBUG("Supported: %s", convertEnumerationToString(result).utf8().data());
return result;
}
MediaTime MediaPlayerPrivateGStreamerMSE::maxMediaTimeSeekable() const
{
if (UNLIKELY(m_didErrorOccur))
return MediaTime::zeroTime();
GST_DEBUG("maxMediaTimeSeekable");
MediaTime result = durationMediaTime();
// Infinite duration means live stream.
if (result.isPositiveInfinite()) {
MediaTime maxBufferedTime = buffered().maximumBufferedTime();
// Return the highest end time reported by the buffered attribute.
result = maxBufferedTime.isValid() ? maxBufferedTime : MediaTime::zeroTime();
}
return result;
}
bool MediaPlayerPrivateGStreamerMSE::currentMediaTimeMayProgress() const
{
if (!m_mediaSourcePrivate)
return false;
return m_mediaSourcePrivate->hasFutureTime(currentMediaTime(), durationMediaTime(), buffered());
}
#undef GST_CAT_DEFAULT
} // namespace WebCore.
#endif // USE(GSTREAMER)
|