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
|
/*
* 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, 2010, 2016 Igalia S.L
* Copyright (C) 2015 Sebastian Dröge <sebastian@centricular.com>
* Copyright (C) 2015, 2016 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) && ENABLE(MEDIA_SOURCE)
#include "GRefPtrGStreamer.h"
#include "MediaPlayerPrivateGStreamer.h"
#include "MediaSample.h"
#include "MediaSourceGStreamer.h"
#include "PlaybackPipeline.h"
#include "WebKitMediaSourceGStreamer.h"
namespace WebCore {
class MediaSourceClientGStreamerMSE;
class AppendPipeline;
class PlaybackPipeline;
class MediaPlayerPrivateGStreamerMSE : public MediaPlayerPrivateGStreamer {
WTF_MAKE_NONCOPYABLE(MediaPlayerPrivateGStreamerMSE); WTF_MAKE_FAST_ALLOCATED;
friend class MediaSourceClientGStreamerMSE;
public:
explicit MediaPlayerPrivateGStreamerMSE(MediaPlayer*);
virtual ~MediaPlayerPrivateGStreamerMSE();
static void registerMediaEngine(MediaEngineRegistrar);
void load(const String&) override;
void load(const String&, MediaSourcePrivateClient*) override;
void setDownloadBuffering() override { };
bool isLiveStream() const override { return false; }
MediaTime currentMediaTime() const override;
void pause() override;
bool seeking() const override;
void seek(float) override;
void configurePlaySink() override;
bool changePipelineState(GstState) override;
void durationChanged() override;
MediaTime durationMediaTime() const override;
void setRate(float) override;
std::unique_ptr<PlatformTimeRanges> buffered() const override;
float maxTimeSeekable() const override;
void sourceChanged() override;
void setReadyState(MediaPlayer::ReadyState);
void waitForSeekCompleted();
void seekCompleted();
MediaSourcePrivateClient* mediaSourcePrivateClient() { return m_mediaSource.get(); }
void markEndOfStream(MediaSourcePrivate::EndOfStreamStatus);
void trackDetected(RefPtr<AppendPipeline>, RefPtr<WebCore::TrackPrivateBase>, bool firstTrackDetected);
void notifySeekNeedsDataForTime(const MediaTime&);
static bool supportsCodecs(const String& codecs);
private:
static void getSupportedTypes(HashSet<String, ASCIICaseInsensitiveHash>&);
static MediaPlayer::SupportsType supportsType(const MediaEngineSupportParameters&);
static bool isAvailable();
// FIXME: Reduce code duplication.
void updateStates() override;
bool doSeek(gint64, float, GstSeekFlags) override;
bool doSeek();
void maybeFinishSeek();
void updatePlaybackRate() override;
void asyncStateChangeDone() override;
// FIXME: Implement.
unsigned long totalVideoFrames() override { return 0; }
unsigned long droppedVideoFrames() override { return 0; }
unsigned long corruptedVideoFrames() override { return 0; }
MediaTime totalFrameDelay() override { return MediaTime::zeroTime(); }
bool isTimeBuffered(const MediaTime&) const;
bool isMediaSource() const override { return true; }
void setMediaSourceClient(Ref<MediaSourceClientGStreamerMSE>);
RefPtr<MediaSourceClientGStreamerMSE> mediaSourceClient();
HashMap<RefPtr<SourceBufferPrivateGStreamer>, RefPtr<AppendPipeline>> m_appendPipelinesMap;
bool m_eosMarked = false;
mutable bool m_eosPending = false;
bool m_gstSeekCompleted = true;
RefPtr<MediaSourcePrivateClient> m_mediaSource;
RefPtr<MediaSourceClientGStreamerMSE> m_mediaSourceClient;
MediaTime m_mediaTimeDuration;
bool m_mseSeekCompleted = true;
RefPtr<PlaybackPipeline> m_playbackPipeline;
};
} // namespace WebCore
#endif // USE(GSTREAMER)
|