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
|
/*
* 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) 2014 Cable Television Laboratories, Inc.
* Copyright (C) 2009, 2019 Igalia S.L
* Copyright (C) 2015, 2019 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.
*/
#pragma once
#if ENABLE(VIDEO) && USE(GSTREAMER)
#include "AbortableTaskQueue.h"
#include "GStreamerCommon.h"
#include "GStreamerEMEUtilities.h"
#include "GStreamerQuirks.h"
#include "ImageOrientation.h"
#include "Logging.h"
#include "MainThreadNotifier.h"
#include "MediaPlayerPrivate.h"
#include "PlatformLayer.h"
#include "PlatformMediaResourceLoader.h"
#include "TrackPrivateBaseGStreamer.h"
#include <glib.h>
#include <gst/gst.h>
#include <gst/pbutils/install-plugins.h>
#include <wtf/Atomics.h>
#include <wtf/Condition.h>
#include <wtf/DataMutex.h>
#include <wtf/Forward.h>
#include <wtf/Lock.h>
#include <wtf/LoggerHelper.h>
#include <wtf/OptionSet.h>
#include <wtf/RefCounted.h>
#include <wtf/RunLoop.h>
#include <wtf/TZoneMalloc.h>
#include <wtf/ThreadSafeWeakPtr.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/AtomStringHash.h>
#if USE(COORDINATED_GRAPHICS)
#include "CoordinatedPlatformLayerBufferVideo.h"
#endif
typedef struct _GstMpegtsSection GstMpegtsSection;
#if USE(GSTREAMER_GL)
// Include the <epoxy/gl.h> header before <gst/gl/gl.h>.
#include <epoxy/gl.h>
#define GST_USE_UNSTABLE_API
#include <gst/gl/gl.h>
#undef GST_USE_UNSTABLE_API
#endif
#if ENABLE(ENCRYPTED_MEDIA)
#include "CDMProxy.h"
#endif
typedef struct _GstStreamVolume GstStreamVolume;
typedef struct _GstVideoInfo GstVideoInfo;
namespace WebCore {
class BitmapTexture;
class GLContext;
class GraphicsContext;
class GraphicsContextGL;
class IntSize;
class IntRect;
#if USE(COORDINATED_GRAPHICS)
class CoordinatedPlatformLayerBufferProxy;
#endif
#if ENABLE(WEB_AUDIO)
class AudioSourceProvider;
class AudioSourceProviderGStreamer;
#endif
class AudioTrackPrivateGStreamer;
class InbandMetadataTextTrackPrivateGStreamer;
class InbandTextTrackPrivateGStreamer;
class VideoTrackPrivateGStreamer;
enum class TextureMapperFlags : uint16_t;
void registerWebKitGStreamerElements();
// Use eager initialization for the WeakPtrFactory since we construct WeakPtrs on another thread.
class MediaPlayerPrivateGStreamer
: public MediaPlayerPrivateInterface
, public ThreadSafeRefCountedAndCanMakeThreadSafeWeakPtr<MediaPlayerPrivateGStreamer, WTF::DestructionThread::Main>
#if !RELEASE_LOG_DISABLED
, private LoggerHelper
#endif
{
WTF_MAKE_TZONE_ALLOCATED(MediaPlayerPrivateGStreamer);
public:
MediaPlayerPrivateGStreamer(MediaPlayer*);
virtual ~MediaPlayerPrivateGStreamer();
constexpr MediaPlayerType mediaPlayerType() const override { return MediaPlayerType::GStreamer; }
void ref() const final { ThreadSafeRefCountedAndCanMakeThreadSafeWeakPtr::ref(); }
void deref() const final { ThreadSafeRefCountedAndCanMakeThreadSafeWeakPtr::deref(); }
static void registerMediaEngine(MediaEngineRegistrar);
static bool supportsKeySystem(const String& keySystem, const String& mimeType);
void mediaPlayerWillBeDestroyed() final;
bool hasVideo() const final { return m_hasVideo; }
bool hasAudio() const final { return m_hasAudio; }
void load(const String &url) override;
#if ENABLE(MEDIA_SOURCE)
void load(const URL&, const LoadOptions&, MediaSourcePrivateClient&) override;
#endif
#if ENABLE(MEDIA_STREAM)
void load(MediaStreamPrivate&) override;
#endif
bool isMediaStreamPlayer() const;
void cancelLoad() final;
void prepareToPlay() final;
void play() override;
void pause() override;
bool paused() const final;
bool ended() const final;
bool seeking() const override { return m_isSeeking; }
void seekToTarget(const SeekTarget&) override;
void setRate(float) override;
double rate() const final;
void setPreservesPitch(bool) final;
void setPreload(MediaPlayer::Preload) final;
FloatSize naturalSize() const final;
void setVolume(float) final;
float volume() const final;
void setMuted(bool) final;
MediaPlayer::NetworkState networkState() const final;
MediaPlayer::ReadyState readyState() const final;
void setPageIsVisible(bool visible) final { m_pageIsVisible = visible; }
void setVisibleInViewport(bool isVisible) final;
void setPresentationSize(const IntSize&) final;
MediaTime duration() const override;
MediaTime currentTime() const override;
const PlatformTimeRanges& buffered() const override;
MediaTime maxTimeSeekable() const override;
MediaTime minTimeSeekable() const final { return MediaTime::zeroTime(); }
bool didLoadingProgress() const final;
unsigned long long totalBytes() const final;
std::optional<bool> isCrossOrigin(const SecurityOrigin&) const final;
void simulateAudioInterruption() final;
#if ENABLE(WEB_AUDIO)
AudioSourceProvider* audioSourceProvider() final;
#endif
void paint(GraphicsContext&, const FloatRect&) final;
DestinationColorSpace colorSpace() final;
bool supportsFullscreen() const final;
MediaPlayer::MovieLoadType movieLoadType() const final;
std::optional<VideoPlaybackQualityMetrics> videoPlaybackQualityMetrics() final;
unsigned decodedFrameCount() const final;
unsigned droppedFrameCount() const final;
void acceleratedRenderingStateChanged() final;
bool performTaskAtTime(Function<void()>&&, const MediaTime&) override;
void isLoopingChanged() final;
void audioOutputDeviceChanged() final;
GstElement* pipeline() const { return m_pipeline.get(); }
#if USE(COORDINATED_GRAPHICS)
PlatformLayer* platformLayer() const override;
bool supportsAcceleratedRendering() const override { return true; }
#endif
#if ENABLE(ENCRYPTED_MEDIA)
void cdmInstanceAttached(CDMInstance&) final;
void cdmInstanceDetached(CDMInstance&) final;
void attemptToDecryptWithInstance(CDMInstance&) final;
bool waitingForKey() const final;
void handleProtectionEvent(GstEvent*);
#endif
RefPtr<VideoFrame> videoFrameForCurrentTime() override;
void updateEnabledVideoTrack();
void updateEnabledAudioTrack();
void playbin3SendSelectStreamsIfAppropriate();
void updateVideoOrientation(const GstTagList*);
// Append pipeline interface
// FIXME: Use the client interface pattern, AppendPipeline does not need the full interface to this class just for this function.
bool handleNeedContextMessage(GstMessage*);
void handleStreamCollectionMessage(GstMessage*);
void handleMessage(GstMessage*);
void triggerRepaint(GRefPtr<GstSample>&&);
#if USE(GSTREAMER_GL)
void flushCurrentBuffer();
#endif
void handleTextSample(GRefPtr<GstSample>&&, TrackID streamId);
#if !RELEASE_LOG_DISABLED
const Logger& logger() const final { return m_logger; }
ASCIILiteral logClassName() const override { return "MediaPlayerPrivateGStreamer"_s; }
uint64_t logIdentifier() const final { return m_logIdentifier; }
WTFLogChannel& logChannel() const override;
uint64_t mediaPlayerLogIdentifier() { return logIdentifier(); }
const Logger& mediaPlayerLogger() { return logger(); }
#endif
// This AbortableTaskQueue must be aborted everytime a flush is sent downstream from the main thread
// to avoid deadlocks from threads in the playback pipeline waiting for the main thread.
AbortableTaskQueue& sinkTaskQueue() { return m_sinkTaskQueue; }
String codecForStreamId(TrackID streamId);
bool shouldDownload() { return m_fillTimer.isActive(); }
void setQuirkState(const GStreamerQuirk* owner, std::unique_ptr<GStreamerQuirkBase::GStreamerQuirkState>&& state)
{
m_quirkStates.set(owner, WTFMove(state));
}
GStreamerQuirkBase::GStreamerQuirkState* quirkState(const GStreamerQuirk* owner)
{
if (!m_quirkStates.contains(owner))
return nullptr;
return m_quirkStates.get(owner);
}
void setLiveStream(bool isLiveStream) { m_isLiveStream = isLiveStream; }
bool requiresVideoSinkCapsNotifications() const;
void videoSinkCapsChanged(GstPad*);
protected:
enum MainThreadNotification {
VideoChanged = 1 << 0,
VideoCapsChanged = 1 << 1,
AudioChanged = 1 << 2,
VolumeChanged = 1 << 3,
MuteChanged = 1 << 4,
TextChanged = 1 << 5,
StreamCollectionChanged = 1 << 7
};
enum class PlaybackRatePausedState {
// Initialization. This takes preference over RatePaused. You don't
// transition from Initially to Rate Paused unless there is a play while rate == 0.
InitiallyPaused,
// User explicitly paused. This takes preference over RatePaused. You don't
// transition from Manually to Rate Paused unless there is a play while rate == 0.
ManuallyPaused,
// Pipeline was playing and rate was set to zero.
RatePaused,
// Pipeline was playing and had to be paused for buffering reasons. This state is
// like ManuallyPaused, but not requested by the user.
BufferingPaused,
// Pipeline was paused because of zero rate and it should be playing. This is not a
// definitive state, just an operational transition from RatePaused to Playing to keep the
// pipeline state changes contained in updateStates.
ShouldMoveToPlaying,
// Pipeline is playing and it should be.
Playing,
};
enum class ChangePipelineStateResult {
Ok,
Rejected,
Failed,
};
ChangePipelineStateResult changePipelineState(GstState);
static bool isAvailable();
virtual void durationChanged();
virtual void sourceSetup(GstElement*);
virtual void updatePlaybackRate();
bool isHolePunchRenderingEnabled() const;
GstElement* createHolePunchVideoSink();
void pushNextHolePunchBuffer();
bool shouldIgnoreIntrinsicSize() final;
#if USE(GSTREAMER_GL)
GstElement* createVideoSinkGL();
#endif
#if USE(COORDINATED_GRAPHICS)
void pushTextureToCompositor(bool isDuplicateSample);
#endif
GstElement* videoSink() const { return m_videoSink.get(); }
void setStreamVolumeElement(GstStreamVolume*);
void repaint();
void cancelRepaint(bool destroying = false);
static void repaintCancelledCallback(MediaPlayerPrivateGStreamer*);
void notifyPlayerOfVolumeChange();
void notifyPlayerOfMute();
static void volumeChangedCallback(MediaPlayerPrivateGStreamer*);
static void muteChangedCallback(MediaPlayerPrivateGStreamer*);
void pausedTimerFired();
template <typename TrackPrivateType> void notifyPlayerOfTrack();
void ensureAudioSourceProvider();
virtual void checkPlayingConsistency();
virtual bool doSeek(const SeekTarget& position, float rate, bool isAsync = false);
void invalidateCachedPosition() const;
void ensureSeekFlags();
static void sourceSetupCallback(MediaPlayerPrivateGStreamer*, GstElement*);
void timeChanged(const MediaTime&); // If MediaTime is valid, indicates that a seek has completed.
void loadingFailed(MediaPlayer::NetworkState, MediaPlayer::ReadyState = MediaPlayer::ReadyState::HaveNothing, bool forceNotifications = false);
void loadStateChanged();
#if USE(TEXTURE_MAPPER)
void updateTextureMapperFlags();
#endif
void setCachedPosition(const MediaTime&) const;
bool isPipelineWaitingPreroll(GstState current, GstState pending, GstStateChangeReturn) const;
bool isPipelineWaitingPreroll() const;
Ref<MainThreadNotifier<MainThreadNotification>> m_notifier;
ThreadSafeWeakPtr<MediaPlayer> m_player;
String m_referrer;
mutable MediaTime m_cachedPosition;
mutable bool m_isCachedPositionValid { false };
mutable MediaTime m_cachedDuration;
bool m_canFallBackToLastFinishedSeekPosition { false };
bool m_isChangingRate { false };
bool m_didDownloadFinish { false };
bool m_didErrorOccur { false };
mutable bool m_isEndReached { false };
mutable std::optional<bool> m_isLiveStream;
// Must reflect whether the last successfull call to gst_element_set_state() was for PLAYING.
bool m_isPipelinePlaying = false;
// m_isPaused represents:
// A) In MSE streams, whether playback or pause has last been requested with pause() and play(),
// defaulting to true before playback starts.
// B) In live streams, whether at an unspecified point in time after the main thread tick in
// which play() or pause() are called, whether the playback was paused or resumed.
// C) In regular non-live streams, it represents whether playback has ended with a EOS with
// looping set to false since the pipeline successfully pre-rolled.
//
// FIXME m_isPaused should represent something useful and consistent for all the possible cases
// (regular playback, live playback, MSE, WebRTC) or be deleted from MediaPlayerPrivateGStreamer.
// https://bugs.webkit.org/show_bug.cgi?id=260385
bool m_isPaused { true };
float m_playbackRate { 1 };
PlaybackRatePausedState m_playbackRatePausedState { PlaybackRatePausedState::InitiallyPaused };
GstState m_currentState { GST_STATE_NULL };
GstState m_oldState { GST_STATE_NULL };
GstState m_requestedState { GST_STATE_VOID_PENDING };
bool m_shouldResetPipeline { false };
bool m_isSeeking { false };
bool m_isSeekPending { false };
SeekTarget m_seekTarget;
GRefPtr<GstElement> m_source { nullptr };
bool m_areVolumeAndMuteInitialized { false };
// Reflects whether the pipeline was paused due to the HTMLMediaElement being both muted and invisible in the viewport.
bool isPausedByViewport() const { return m_stateToRestoreWhenVisible != GST_STATE_VOID_PENDING; };
#if USE(TEXTURE_MAPPER)
OptionSet<TextureMapperFlags> m_textureMapperFlags;
#endif
GRefPtr<GstStreamVolume> m_volumeElement;
GRefPtr<GstElement> m_audioSink;
GRefPtr<GstElement> m_videoSink;
GRefPtr<GstElement> m_pipeline;
IntSize m_size;
MediaPlayer::ReadyState m_readyState { MediaPlayer::ReadyState::HaveNothing };
mutable MediaPlayer::NetworkState m_networkState { MediaPlayer::NetworkState::Empty };
mutable Lock m_sampleMutex;
GRefPtr<GstSample> m_sample WTF_GUARDED_BY_LOCK(m_sampleMutex);
bool m_hasFirstVideoSampleBeenRendered WTF_GUARDED_BY_LOCK(m_sampleMutex) { false };
mutable FloatSize m_videoSize;
bool m_isUsingFallbackVideoSink { false };
bool m_canRenderingBeAccelerated { false };
bool m_isBeingDestroyed WTF_GUARDED_BY_LOCK(m_drawLock) { false };
ImageOrientation m_videoSourceOrientation;
#if ENABLE(ENCRYPTED_MEDIA)
Lock m_cdmAttachmentLock;
Condition m_cdmAttachmentCondition;
RefPtr<CDMInstanceProxy> m_cdmInstance;
Lock m_protectionMutex; // Guards access to m_handledProtectionEvents.
HashSet<uint32_t> m_handledProtectionEvents;
bool m_isWaitingForKey { false };
#endif
std::optional<GstVideoDecoderPlatform> m_videoDecoderPlatform;
GstSeekFlags m_seekFlags;
bool m_ignoreErrors { false };
String errorMessage() const override { return m_errorMessage; }
void incrementDecodedVideoFramesCount() { m_decodedVideoFrames++; }
uint64_t decodedVideoFramesCount() const { return m_decodedVideoFrames; }
bool updateVideoSinkStatistics();
private:
class TaskAtMediaTimeScheduler {
public:
enum PlaybackDirection {
Forward, // Schedule when targetTime <= currentTime. Used on forward playback, when playbackRate >= 0.
Backward // Schedule when targetTime >= currentTime. Used on backward playback, when playbackRate < 0.
};
void setTask(Function<void()>&& task, const MediaTime& targetTime, PlaybackDirection playbackDirection)
{
m_targetTime = targetTime;
m_task = WTFMove(task);
m_playbackDirection = playbackDirection;
}
std::optional<Function<void()>> checkTaskForScheduling(const MediaTime& currentTime)
{
if (!m_targetTime.isValid() || !currentTime.isFinite()
|| (m_playbackDirection == Forward && currentTime < m_targetTime)
|| (m_playbackDirection == Backward && currentTime > m_targetTime))
return std::optional<Function<void()>>();
m_targetTime = MediaTime::invalidTime();
return WTFMove(m_task);
}
private:
MediaTime m_targetTime = MediaTime::invalidTime();
PlaybackDirection m_playbackDirection = Forward;
Function<void()> m_task = Function<void()>();
};
void tearDown(bool clearMediaPlayer);
bool isPlayerShuttingDown() const { return m_isPlayerShuttingDown.load(); }
MediaTime maxTimeLoaded() const;
bool setVideoSourceOrientation(ImageOrientation);
MediaTime platformDuration() const;
bool isMuted() const;
void commitLoad();
void fillTimerFired();
void didEnd();
void setPlaybackFlags(bool isMediaStream);
void recalculateDurationIfNeeded() const; // It's called from other const methods.
GstElement* createVideoSink();
GstElement* createAudioSink();
GstElement* audioSink() const { return m_audioSink.get(); }
friend class MediaPlayerFactoryGStreamer;
static void getSupportedTypes(HashSet<String>&);
static MediaPlayer::SupportsType supportsType(const MediaEngineSupportParameters&);
void syncOnClock(bool sync);
GstClockTime gstreamerPositionFromSinks() const;
MediaTime playbackPosition() const;
virtual void updateStates();
void finishSeek();
virtual void didPreroll() { }
void createGSTPlayBin(const URL&);
bool loadNextLocation();
void mediaLocationChanged(GstMessage*);
virtual void updateDownloadBufferingFlag();
void processBufferingStats(GstMessage*);
void updateBufferingStatus(GstBufferingMode, double percentage, bool resetHistory = false, bool shouldUpdateStates = true);
void updateMaxTimeLoaded(double percentage);
#if USE(GSTREAMER_MPEGTS)
void processMpegTsSection(GstMpegtsSection*);
#endif
void processTableOfContents(GstMessage*);
void processTableOfContentsEntry(GstTocEntry*);
String engineDescription() const override { return "GStreamer"_s; }
bool didPassCORSAccessCheck() const override;
bool canSaveMediaData() const override;
void purgeOldDownloadFiles(const String& downloadFilePrefixPath);
void configureDownloadBuffer(GstElement*);
static void downloadBufferFileCreatedCallback(MediaPlayerPrivateGStreamer*);
void configureAudioDecoder(GstElement*);
void configureVideoDecoder(GstElement*);
void configureElement(GstElement*);
void configureElementPlatformQuirks(GstElement*);
std::optional<int> queryBufferingPercentage();
void setPlaybinURL(const URL& urlString);
void updateTracks(const GRefPtr<GstObject>& collectionOwner);
void updateVideoSizeAndOrientationFromCaps(const GstCaps*);
bool hasFirstVideoSampleReachedSink() const;
#if ENABLE(ENCRYPTED_MEDIA)
bool isCDMAttached() const { return m_cdmInstance; }
void attemptToDecryptWithLocalInstance();
void initializationDataEncountered(InitData&&);
InitData parseInitDataFromProtectionMessage(GstMessage*);
bool waitForCDMAttachment();
#endif
void configureMediaStreamAudioTracks();
void invalidateCachedPositionOnNextIteration() const;
Atomic<bool> m_isPlayerShuttingDown;
GRefPtr<GstElement> m_textSink;
GUniquePtr<GstStructure> m_mediaLocations;
int m_mediaLocationCurrentIndex { 0 };
MediaTime m_timeOfOverlappingSeek;
// Last playback rate sent through a GStreamer seek.
float m_lastPlaybackRate { 1 };
Timer m_fillTimer;
MediaTime m_maxTimeLoaded;
bool m_loadingStalled { false };
MediaPlayer::Preload m_preload;
bool m_isDelayingLoad { false };
mutable MediaTime m_maxTimeLoadedAtLastDidLoadingProgress;
bool m_hasVideo { false };
bool m_hasAudio { false };
Condition m_drawCondition;
Lock m_drawLock;
RunLoop::Timer m_drawTimer WTF_GUARDED_BY_LOCK(m_drawLock);
RunLoop::Timer m_pausedTimerHandler;
#if USE(COORDINATED_GRAPHICS)
RefPtr<CoordinatedPlatformLayerBufferProxy> m_contentsBufferProxy;
#endif
// These attributes can ONLY be changed from updateBufferingStatus() in order to keep the
// hysteresis level detection consistent between buffer percentage update cycles.
bool m_wasBuffering { false };
bool m_isBuffering { false };
int m_previousBufferingPercentage { 0 };
int m_bufferingPercentage { 0 };
bool m_hasWebKitWebSrcSentEOS { false };
mutable unsigned long long m_totalBytes { 0 };
URL m_url;
bool m_shouldPreservePitch { false };
bool m_isLegacyPlaybin;
#if ENABLE(MEDIA_STREAM)
RefPtr<MediaStreamPrivate> m_streamPrivate;
#endif
bool m_isMuted { false };
// Whether the page containing the HTMLMediaElement is visible, reflects: setPageIsVisible()
bool m_pageIsVisible { false };
// playbin3 only:
bool m_waitingForStreamsSelectedEvent { true };
std::optional<TrackID> m_currentAudioStreamId; // Currently playing.
std::optional<TrackID> m_currentVideoStreamId;
std::optional<TrackID> m_currentTextStreamId;
std::optional<TrackID> m_wantedAudioStreamId; // Set in JavaScript.
std::optional<TrackID> m_wantedVideoStreamId;
std::optional<TrackID> m_wantedTextStreamId;
std::optional<TrackID> m_requestedAudioStreamId; // Expected in the next STREAMS_SELECTED message.
std::optional<TrackID> m_requestedVideoStreamId;
std::optional<TrackID> m_requestedTextStreamId;
#if ENABLE(WEB_AUDIO)
RefPtr<AudioSourceProviderGStreamer> m_audioSourceProvider;
#endif
GRefPtr<GstElement> m_downloadBuffer;
TrackIDHashMap<Ref<AudioTrackPrivateGStreamer>> m_audioTracks;
TrackIDHashMap<Ref<VideoTrackPrivateGStreamer>> m_videoTracks;
TrackIDHashMap<Ref<InbandTextTrackPrivateGStreamer>> m_textTracks;
RefPtr<InbandMetadataTextTrackPrivateGStreamer> m_chaptersTrack;
#if USE(GSTREAMER_MPEGTS)
TrackIDHashMap<RefPtr<InbandMetadataTextTrackPrivateGStreamer>> m_metadataTracks;
#endif
virtual bool isMediaSource() const { return false; }
uint64_t m_httpResponseTotalSize { 0 };
uint64_t m_networkReadPosition { 0 };
mutable uint64_t m_readPositionAtLastDidLoadingProgress { 0 };
uint64_t m_totalVideoFrames { 0 };
uint64_t m_droppedVideoFrames { 0 };
uint64_t m_decodedVideoFrames { 0 };
DataMutex<TaskAtMediaTimeScheduler> m_TaskAtMediaTimeSchedulerDataMutex;
private:
std::optional<VideoFrameMetadata> videoFrameMetadata() final;
uint64_t m_sampleCount { 0 };
uint64_t m_lastVideoFrameMetadataSampleCount { 0 };
mutable PlatformTimeRanges m_buffered;
#if !RELEASE_LOG_DISABLED
Ref<const Logger> m_logger;
const uint64_t m_logIdentifier;
#endif
String m_errorMessage;
GRefPtr<GstStreamCollection> m_streamCollection;
AbortableTaskQueue m_sinkTaskQueue;
bool m_didTryToRecoverPlayingState { false };
// The state the pipeline should be set back to after the player becomes visible in the viewport again.
GstState m_stateToRestoreWhenVisible { GST_STATE_VOID_PENDING };
// Specific to MediaStream playback.
MediaTime m_startTime;
std::optional<MediaTime> m_pausedTime;
void setupCodecProbe(GstElement*);
Lock m_codecsLock;
TrackIDHashMap<String> m_codecs WTF_GUARDED_BY_LOCK(m_codecsLock);
bool isSeamlessSeekingEnabled() const { return m_seekFlags & GST_SEEK_FLAG_SEGMENT; }
Ref<PlatformMediaResourceLoader> m_loader;
RefPtr<GStreamerQuirksManager> m_quirksManagerForTesting;
UncheckedKeyHashMap<const GStreamerQuirk*, std::unique_ptr<GStreamerQuirkBase::GStreamerQuirkState>> m_quirkStates;
MediaTime m_estimatedVideoFrameDuration { MediaTime::zeroTime() };
#if USE(COORDINATED_GRAPHICS)
void updateVideoInfoFromCaps(GstCaps*);
std::optional<DMABufFormat> m_dmabufFormat;
GstVideoInfo m_videoInfo;
#endif
};
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::MediaPlayerPrivateGStreamer)
static bool isType(const WebCore::MediaPlayerPrivateInterface& player) { return player.mediaPlayerType() == WebCore::MediaPlayerType::GStreamer; }
SPECIALIZE_TYPE_TRAITS_END()
#endif // ENABLE(VIDEO) && USE(GSTREAMER)
|