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
|
/*
* Copyright (C) 2016 Metrological Group B.V.
* Copyright (C) 2016 Igalia S.L
*
* 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 "AudioTrackPrivateGStreamer.h"
#include "SourceBufferPrivateGStreamer.h"
#include "VideoTrackPrivateGStreamer.h"
#include "WebKitMediaSourceGStreamer.h"
#include <gst/app/gstappsrc.h>
#include <gst/gst.h>
#include <wtf/Condition.h>
#include <wtf/RefPtr.h>
#include <wtf/glib/GRefPtr.h>
namespace WebCore {
class MediaPlayerPrivateGStreamerMSE;
};
void webKitMediaSrcUriHandlerInit(gpointer, gpointer);
#define WEBKIT_MEDIA_SRC_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), WEBKIT_TYPE_MEDIA_SRC, WebKitMediaSrcPrivate))
typedef struct _Stream Stream;
struct _Stream {
// Fields filled when the Stream is created.
WebKitMediaSrc* parent;
// AppSrc.
GstElement* appsrc;
GstPad* decodebinSinkPad;
WebCore::SourceBufferPrivateGStreamer* sourceBuffer;
// Fields filled when the track is attached.
WebCore::MediaSourceStreamTypeGStreamer type;
// Might be 0, e.g. for VP8/VP9.
GstElement* parser;
GRefPtr<GstCaps> caps;
RefPtr<WebCore::AudioTrackPrivateGStreamer> audioTrack;
RefPtr<WebCore::VideoTrackPrivateGStreamer> videoTrack;
WebCore::FloatSize presentationSize;
// This helps WebKitMediaSrcPrivate.appsrcNeedDataCount, ensuring that needDatas are
// counted only once per each appsrc.
bool appsrcNeedDataFlag;
// Used to enforce continuity in the appended data and avoid breaking the decoder.
MediaTime lastEnqueuedTime;
};
enum {
PROP_0,
PROP_LOCATION,
PROP_N_AUDIO,
PROP_N_VIDEO,
PROP_N_TEXT,
PROP_LAST
};
enum {
SIGNAL_VIDEO_CHANGED,
SIGNAL_AUDIO_CHANGED,
SIGNAL_TEXT_CHANGED,
LAST_SIGNAL
};
enum OnSeekDataAction {
Nothing,
MediaSourceSeekToTime
};
struct _WebKitMediaSrcPrivate {
// Used to coordinate the release of Stream track info.
Lock streamLock;
Condition streamCondition;
Deque<Stream*> streams;
GUniquePtr<gchar> location;
int numberOfAudioStreams;
int numberOfVideoStreams;
int numberOfTextStreams;
bool asyncStart;
bool allTracksConfigured;
unsigned numberOfPads;
MediaTime seekTime;
// On seek, we wait for all the seekDatas, then for all the needDatas, and then run the nextAction.
OnSeekDataAction appsrcSeekDataNextAction;
int appsrcSeekDataCount;
int appsrcNeedDataCount;
GRefPtr<GstBus> bus;
WebCore::MediaPlayerPrivateGStreamerMSE* mediaPlayerPrivate;
};
extern guint webKitMediaSrcSignals[LAST_SIGNAL];
extern GstAppSrcCallbacks enabledAppsrcCallbacks;
extern GstAppSrcCallbacks disabledAppsrcCallbacks;
void webKitMediaSrcUriHandlerInit(gpointer gIface, gpointer ifaceData);
void webKitMediaSrcFinalize(GObject*);
void webKitMediaSrcSetProperty(GObject*, guint propertyId, const GValue*, GParamSpec*);
void webKitMediaSrcGetProperty(GObject*, guint propertyId, GValue*, GParamSpec*);
void webKitMediaSrcDoAsyncStart(WebKitMediaSrc*);
void webKitMediaSrcDoAsyncDone(WebKitMediaSrc*);
GstStateChangeReturn webKitMediaSrcChangeState(GstElement*, GstStateChange);
gint64 webKitMediaSrcGetSize(WebKitMediaSrc*);
gboolean webKitMediaSrcQueryWithParent(GstPad*, GstObject*, GstQuery*);
void webKitMediaSrcUpdatePresentationSize(GstCaps*, Stream*);
void webKitMediaSrcLinkStreamToSrcPad(GstPad*, Stream*);
void webKitMediaSrcLinkParser(GstPad*, GstCaps*, Stream*);
void webKitMediaSrcFreeStream(WebKitMediaSrc*, Stream*);
void webKitMediaSrcCheckAllTracksConfigured(WebKitMediaSrc*);
GstURIType webKitMediaSrcUriGetType(GType);
const gchar* const* webKitMediaSrcGetProtocols(GType);
gchar* webKitMediaSrcGetUri(GstURIHandler*);
gboolean webKitMediaSrcSetUri(GstURIHandler*, const gchar*, GError**);
#endif // USE(GSTREAMER)
|