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
|
/*
* Copyright (C) 2025 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <WebCore/HostingContext.h>
#include <WebCore/MediaPlayerEnums.h>
#include <WebCore/MediaPromiseTypes.h>
#include <WebCore/PlatformLayer.h>
#include <WebCore/TrackInfo.h>
#include <WebCore/VideoPlaybackQualityMetrics.h>
#include <WebCore/VideoTarget.h>
#include <optional>
#include <wtf/AbstractThreadSafeRefCountedAndCanMakeWeakPtr.h>
#include <wtf/CompletionHandler.h>
#include <wtf/MediaTime.h>
#include <wtf/NativePromise.h>
#include <wtf/ObjectIdentifier.h>
namespace WebCore {
class CDMInstance;
class FloatRect;
class GraphicsContext;
class LegacyCDMSession;
class LayoutRect;
class MediaSample;
class NativeImage;
class PlatformDynamicRangeLimit;
class ProcessIdentity;
class TextTrackRepresentation;
class VideoFrame;
class AudioInterface {
public:
using PitchCorrectionAlgorithm = MediaPlayerPitchCorrectionAlgorithm;
virtual ~AudioInterface() = default;
virtual void setVolume(float) = 0;
virtual void setMuted(bool) = 0;
virtual void setPreservesPitchAndCorrectionAlgorithm(bool, std::optional<PitchCorrectionAlgorithm>) { }
#if HAVE(AUDIO_OUTPUT_DEVICE_UNIQUE_ID)
virtual void setOutputDeviceId(const String&) { }
#endif
};
class VideoInterface {
public:
virtual ~VideoInterface() = default;
virtual void setIsVisible(bool) = 0;
virtual void setPresentationSize(const IntSize&) = 0;
virtual void setShouldMaintainAspectRatio(bool) { }
virtual void renderingCanBeAcceleratedChanged(bool) { }
virtual void contentBoxRectChanged(const LayoutRect&) { }
virtual void notifyFirstFrameAvailable(Function<void()>&&) { }
virtual void notifyWhenHasAvailableVideoFrame(Function<void(const MediaTime&, double)>&&) { }
virtual void notifyWhenRequiresFlushToResume(Function<void()>&&) { }
virtual void notifyRenderingModeChanged(Function<void()>&&) { }
virtual void expectMinimumUpcomingPresentationTime(const MediaTime&) { }
virtual void notifySizeChanged(Function<void(const MediaTime&, FloatSize)>&&) { }
virtual void setShouldDisableHDR(bool) { };
virtual void setPlatformDynamicRangeLimit(const PlatformDynamicRangeLimit&) { };
virtual void setResourceOwner(const ProcessIdentity&) { }
virtual void flushAndRemoveImage() { };
virtual RefPtr<VideoFrame> currentVideoFrame() const = 0;
virtual void paintCurrentVideoFrameInContext(GraphicsContext&, const FloatRect&) { }
virtual RefPtr<NativeImage> currentNativeImage() const { return nullptr; }
virtual std::optional<VideoPlaybackQualityMetrics> videoPlaybackQualityMetrics() = 0;
virtual PlatformLayer* platformVideoLayer() const { return nullptr; }
using LayerHostingContextCallback = CompletionHandler<void(HostingContext)>;
virtual void requestHostingContext(LayerHostingContextCallback&& completionHandler) { completionHandler({ }); }
virtual HostingContext hostingContext() const { return { }; }
virtual WebCore::FloatSize videoLayerSize() const { return { }; }
virtual void notifyVideoLayerSizeChanged(Function<void(const MediaTime&, FloatSize)>&&) { }
virtual void setVideoLayerSizeFenced(const FloatSize&, WTF::MachSendRightAnnotated&&) { }
};
class VideoFullscreenInterface {
public:
virtual ~VideoFullscreenInterface() = default;
#if ENABLE(VIDEO_PRESENTATION_MODE)
virtual void setVideoFullscreenLayer(PlatformLayer*, Function<void()>&&) { }
virtual void setVideoFullscreenFrame(const FloatRect&) { }
virtual Ref<GenericPromise> setVideoTarget(const PlatformVideoTarget&) { return GenericPromise::createAndReject(); }
virtual void isInFullscreenOrPictureInPictureChanged(bool) { }
#endif
virtual void setTextTrackRepresentation(TextTrackRepresentation*) { }
virtual void syncTextTrackBounds() { }
};
class SynchronizerInterface {
public:
virtual ~SynchronizerInterface() = default;
virtual void play(std::optional<MonotonicTime> hostTime = std::nullopt) = 0;
virtual void pause(std::optional<MonotonicTime> hostTime = std::nullopt) = 0;
virtual bool paused() const = 0;
virtual void setRate(double) = 0;
virtual double effectiveRate() const = 0;
virtual void stall() { };
virtual void prepareToSeek() { }
virtual Ref<MediaTimePromise> seekTo(const MediaTime&) = 0;
virtual bool seeking() const = 0;
};
struct SamplesRendererTrackIdentifierType;
using SamplesRendererTrackIdentifier = AtomicObjectIdentifier<SamplesRendererTrackIdentifierType>;
class TracksRendererManager {
public:
using TrackType = TrackInfo::TrackType;
using TrackIdentifier = SamplesRendererTrackIdentifier;
virtual ~TracksRendererManager() = default;
virtual void setPreferences(VideoRendererPreferences) { }
virtual void setHasProtectedVideoContent(bool) { }
virtual TrackIdentifier addTrack(TrackType) = 0;
virtual void removeTrack(TrackIdentifier) = 0;
virtual void enqueueSample(TrackIdentifier, Ref<MediaSample>&&, std::optional<MediaTime> = std::nullopt) = 0;
virtual bool isReadyForMoreSamples(TrackIdentifier) = 0;
virtual void requestMediaDataWhenReady(TrackIdentifier, Function<void(TrackIdentifier)>&&) = 0;
virtual void stopRequestingMediaData(TrackIdentifier) = 0;
virtual void notifyTrackNeedsReenqueuing(TrackIdentifier, Function<void(TrackIdentifier, const MediaTime&)>&&) { }
virtual bool timeIsProgressing() const = 0;
virtual void notifyEffectiveRateChanged(Function<void(double)>&&) { }
virtual MediaTime currentTime() const = 0;
virtual void notifyTimeReachedAndStall(const MediaTime&, Function<void(const MediaTime&)>&&) { }
virtual void cancelTimeReachedAction() { }
virtual void performTaskAtTime(const MediaTime&, Function<void(const MediaTime&)>&&) { }
virtual void setTimeObserver(Seconds, Function<void(const MediaTime&)>&&) { }
virtual void flush() = 0;
virtual void flushTrack(TrackIdentifier) = 0;
virtual void applicationWillResignActive() { }
virtual void notifyWhenErrorOccurs(Function<void(PlatformMediaError)>&&) = 0;
using SoundStageSize = MediaPlayerSoundStageSize;
virtual void setSpatialTrackingInfo(bool /* prefersSpatialAudioExperience */, SoundStageSize, const String& /* sceneIdentifier */, const String& /* defaultLabel */, const String& /* label */) { }
#if ENABLE(ENCRYPTED_MEDIA)
virtual void setCDMInstance(CDMInstance*) { }
virtual Ref<MediaPromise> setInitData(Ref<SharedBuffer>) { return MediaPromise::createAndResolve(); }
virtual void attemptToDecrypt() { }
#endif
#if ENABLE(LEGACY_ENCRYPTED_MEDIA)
virtual RefPtr<SharedBuffer> initData() const { return nullptr; }
virtual void setCDMSession(LegacyCDMSession*) { }
#endif
};
class WEBCORE_EXPORT AudioVideoRenderer : public AudioInterface, public VideoInterface, public VideoFullscreenInterface, public SynchronizerInterface, public TracksRendererManager, public AbstractThreadSafeRefCountedAndCanMakeWeakPtr {
public:
virtual ~AudioVideoRenderer() = default;
};
}
|