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
|
/*
* Copyright (C) 2023 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.
*/
#include "config.h"
#include "VideoDecoderGStreamer.h"
#if ENABLE(VIDEO) && USE(GSTREAMER)
#include "GStreamerCommon.h"
#include "GStreamerElementHarness.h"
#include "GStreamerRegistryScanner.h"
#include "VideoFrameGStreamer.h"
#include <wtf/TZoneMallocInlines.h>
#include <wtf/WorkQueue.h>
#include <wtf/text/MakeString.h>
namespace WebCore {
WTF_MAKE_TZONE_ALLOCATED_IMPL(GStreamerVideoDecoder);
GST_DEBUG_CATEGORY(webkit_video_decoder_debug);
#define GST_CAT_DEFAULT webkit_video_decoder_debug
static WorkQueue& gstDecoderWorkQueue()
{
static std::once_flag onceKey;
static LazyNeverDestroyed<Ref<WorkQueue>> queue;
std::call_once(onceKey, [] {
queue.construct(WorkQueue::create("GStreamer VideoDecoder queue"_s));
});
return queue.get();
}
class GStreamerInternalVideoDecoder : public ThreadSafeRefCountedAndCanMakeThreadSafeWeakPtr<GStreamerInternalVideoDecoder> {
WTF_MAKE_TZONE_ALLOCATED_INLINE(GStreamerInternalVideoDecoder);
public:
static Ref<GStreamerInternalVideoDecoder> create(const String& codecName, const VideoDecoder::Config& config, VideoDecoder::OutputCallback&& outputCallback, GRefPtr<GstElement>&& element)
{
return adoptRef(*new GStreamerInternalVideoDecoder(codecName, config, WTFMove(outputCallback), WTFMove(element)));
}
~GStreamerInternalVideoDecoder()
{
if (isConfigured()) {
GST_DEBUG_OBJECT(harnessedElement(), "Disposing video decoder");
return;
}
GST_DEBUG("Disposing un-configured video decoder");
}
Ref<VideoDecoder::DecodePromise> decode(std::span<const uint8_t>, bool isKeyFrame, int64_t timestamp, std::optional<uint64_t> duration);
void flush();
void close() { m_isClosed = true; }
bool isConfigured() const { return !!m_inputCaps; }
GstElement* harnessedElement() const { return m_harness->element(); }
private:
GStreamerInternalVideoDecoder(const String& codecName, const VideoDecoder::Config&, VideoDecoder::OutputCallback&&, GRefPtr<GstElement>&&);
VideoDecoder::OutputCallback m_outputCallback;
RefPtr<GStreamerElementHarness> m_harness;
FloatSize m_presentationSize;
int64_t m_timestamp;
std::optional<uint64_t> m_duration;
bool m_isClosed { false };
GRefPtr<GstCaps> m_inputCaps;
};
void GStreamerVideoDecoder::create(const String& codecName, const Config& config, CreateCallback&& callback, OutputCallback&& outputCallback)
{
static std::once_flag debugRegisteredFlag;
std::call_once(debugRegisteredFlag, [] {
GST_DEBUG_CATEGORY_INIT(webkit_video_decoder_debug, "webkitvideodecoder", 0, "WebKit WebCodecs Video Decoder");
});
bool usingHardware = config.decoding == VideoDecoder::HardwareAcceleration::Yes;
auto& scanner = GStreamerRegistryScanner::singleton();
auto lookupResult = scanner.isCodecSupported(GStreamerRegistryScanner::Configuration::Decoding, codecName, usingHardware);
if (usingHardware && !lookupResult) {
GST_DEBUG("No hardware decoder found for codec %s, falling back to software", codecName.utf8().data());
lookupResult = scanner.isCodecSupported(GStreamerRegistryScanner::Configuration::Decoding, codecName, false);
}
if (!lookupResult) {
GST_WARNING("No decoder found for codec %s", codecName.utf8().data());
callback(makeUnexpected(makeString("No decoder found for codec "_s, codecName)));
return;
}
GRefPtr<GstElement> element = gst_element_factory_create(lookupResult.factory.get(), nullptr);
Ref decoder = adoptRef(*new GStreamerVideoDecoder(codecName, config, WTFMove(outputCallback), WTFMove(element)));
Ref internalDecoder = decoder->m_internalDecoder;
if (!internalDecoder->isConfigured()) {
GST_WARNING("Internal video decoder failed to configure for codec %s", codecName.utf8().data());
callback(makeUnexpected(makeString("Internal video decoder failed to configure for codec "_s, codecName)));
return;
}
gstDecoderWorkQueue().dispatch([callback = WTFMove(callback), decoder = WTFMove(decoder)]() mutable {
auto internalDecoder = decoder->m_internalDecoder;
GST_DEBUG_OBJECT(decoder->m_internalDecoder->harnessedElement(), "Video decoder created");
callback(Ref<VideoDecoder> { WTFMove(decoder) });
});
}
GStreamerVideoDecoder::GStreamerVideoDecoder(const String& codecName, const Config& config, OutputCallback&& outputCallback, GRefPtr<GstElement>&& element)
: m_internalDecoder(GStreamerInternalVideoDecoder::create(codecName, config, WTFMove(outputCallback), WTFMove(element)))
{
}
GStreamerVideoDecoder::~GStreamerVideoDecoder()
{
close();
}
Ref<VideoDecoder::DecodePromise> GStreamerVideoDecoder::decode(EncodedFrame&& frame)
{
return invokeAsync(gstDecoderWorkQueue(), [value = Vector<uint8_t> { frame.data }, isKeyFrame = frame.isKeyFrame, timestamp = frame.timestamp, duration = frame.duration, decoder = m_internalDecoder] {
return decoder->decode(value.span(), isKeyFrame, timestamp, duration);
});
}
Ref<GenericPromise> GStreamerVideoDecoder::flush()
{
return invokeAsync(gstDecoderWorkQueue(), [decoder = m_internalDecoder] {
decoder->flush();
return GenericPromise::createAndResolve();
});
}
void GStreamerVideoDecoder::reset()
{
m_internalDecoder->close();
}
void GStreamerVideoDecoder::close()
{
m_internalDecoder->close();
}
GStreamerInternalVideoDecoder::GStreamerInternalVideoDecoder(const String& codecName, const VideoDecoder::Config& config, VideoDecoder::OutputCallback&& outputCallback, GRefPtr<GstElement>&& element)
: m_outputCallback(WTFMove(outputCallback))
{
GST_DEBUG_OBJECT(element.get(), "Configuring decoder for codec %s", codecName.ascii().data());
configureVideoDecoderForHarnessing(element);
auto* factory = gst_element_get_factory(element.get());
const char* parser = nullptr;
if (codecName.startsWith("avc1"_s)) {
m_inputCaps = adoptGRef(gst_caps_new_simple("video/x-h264", "stream-format", G_TYPE_STRING, "avc", "alignment", G_TYPE_STRING, "au", nullptr));
if (auto codecData = wrapSpanData(config.description))
gst_caps_set_simple(m_inputCaps.get(), "codec_data", GST_TYPE_BUFFER, codecData.get(), nullptr);
if (!gst_element_factory_can_sink_all_caps(factory, m_inputCaps.get()))
parser = "h264parse";
} else if (codecName.startsWith("av01"_s))
m_inputCaps = adoptGRef(gst_caps_new_simple("video/x-av1", "stream-format", G_TYPE_STRING, "obu-stream", "alignment", G_TYPE_STRING, "frame", nullptr));
else if (codecName.startsWith("vp8"_s))
m_inputCaps = adoptGRef(gst_caps_new_empty_simple("video/x-vp8"));
else if (codecName.startsWith("vp09"_s)) {
m_inputCaps = adoptGRef(gst_caps_new_empty_simple("video/x-vp9"));
parser = "vp9parse";
} else if (codecName.startsWith("hvc1"_s)) {
m_inputCaps = adoptGRef(gst_caps_new_simple("video/x-h265", "stream-format", G_TYPE_STRING, "hvc1", "alignment", G_TYPE_STRING, "au", nullptr));
if (auto codecData = wrapSpanData(config.description))
gst_caps_set_simple(m_inputCaps.get(), "codec_data", GST_TYPE_BUFFER, codecData.get(), nullptr);
if (!gst_element_factory_can_sink_all_caps(factory, m_inputCaps.get()))
parser = "h265parse";
} else if (codecName.startsWith("hev1"_s)) {
m_inputCaps = adoptGRef(gst_caps_new_simple("video/x-h265", "stream-format", G_TYPE_STRING, "hev1", "alignment", G_TYPE_STRING, "au", nullptr));
if (auto codecData = wrapSpanData(config.description))
gst_caps_set_simple(m_inputCaps.get(), "codec_data", GST_TYPE_BUFFER, codecData.get(), nullptr);
if (!gst_element_factory_can_sink_all_caps(factory, m_inputCaps.get()))
parser = "h265parse";
} else {
WTFLogAlways("Codec %s not wired in yet", codecName.ascii().data());
return;
}
if (config.width && config.height)
gst_caps_set_simple(m_inputCaps.get(), "width", G_TYPE_INT, config.width, "height", G_TYPE_INT, config.height, nullptr);
GRefPtr<GstElement> harnessedElement;
if (parser) {
// The decoder won't accept the input caps, so put a parser in front.
auto* parserElement = makeGStreamerElement(parser, nullptr);
if (!parserElement) {
GST_WARNING_OBJECT(element.get(), "Required parser %s not found, decoding will fail", parser);
m_inputCaps.clear();
return;
}
harnessedElement = gst_bin_new(nullptr);
gst_bin_add_many(GST_BIN_CAST(harnessedElement.get()), parserElement, element.get(), nullptr);
gst_element_link(parserElement, element.get());
auto sinkPad = adoptGRef(gst_element_get_static_pad(parserElement, "sink"));
gst_element_add_pad(harnessedElement.get(), gst_ghost_pad_new("sink", sinkPad.get()));
auto srcPad = adoptGRef(gst_element_get_static_pad(element.get(), "src"));
gst_element_add_pad(harnessedElement.get(), gst_ghost_pad_new("src", srcPad.get()));
} else
harnessedElement = WTFMove(element);
m_harness = GStreamerElementHarness::create(WTFMove(harnessedElement), [weakThis = ThreadSafeWeakPtr { *this }, this](auto& stream, GRefPtr<GstSample>&& outputSample) {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return;
if (m_isClosed)
return;
static std::once_flag onceFlag;
std::call_once(onceFlag, [this] {
m_harness->dumpGraph("video-decoder"_s);
});
if (m_presentationSize.isEmpty())
m_presentationSize = getVideoResolutionFromCaps(stream.outputCaps().get()).value_or(FloatSize { 0, 0 });
auto outputBuffer = gst_sample_get_buffer(outputSample.get());
auto duration = m_duration.value_or(GST_BUFFER_DURATION(outputBuffer));
auto timestamp = static_cast<int64_t>(GST_BUFFER_PTS(outputBuffer));
if (timestamp == -1)
timestamp = m_timestamp;
GST_TRACE_OBJECT(m_harness->element(), "Handling decoded frame with PTS: %" GST_TIME_FORMAT " and duration: %" GST_TIME_FORMAT, GST_TIME_ARGS(timestamp), GST_TIME_ARGS(duration));
auto videoFrame = VideoFrameGStreamer::create(WTFMove(outputSample), IntSize(m_presentationSize), fromGstClockTime(timestamp));
m_outputCallback(VideoDecoder::DecodedFrame { WTFMove(videoFrame), timestamp, duration });
});
}
Ref<VideoDecoder::DecodePromise> GStreamerInternalVideoDecoder::decode(std::span<const uint8_t> frameData, bool isKeyFrame, int64_t timestamp, std::optional<uint64_t> duration)
{
GST_DEBUG_OBJECT(m_harness->element(), "Decoding%s frame", isKeyFrame ? " key" : "");
auto buffer = wrapSpanData(frameData);
if (!buffer)
return VideoDecoder::DecodePromise::createAndReject("Empty frame"_s);
m_timestamp = timestamp;
m_duration = duration;
GST_BUFFER_DTS(buffer.get()) = GST_BUFFER_PTS(buffer.get()) = timestamp;
if (duration)
GST_BUFFER_DURATION(buffer.get()) = *duration;
if (!isKeyFrame)
GST_BUFFER_FLAG_SET(buffer.get(), GST_BUFFER_FLAG_DELTA_UNIT);
// FIXME: Maybe configure segment here, could be useful for reverse playback.
auto result = m_harness->pushSample(adoptGRef(gst_sample_new(buffer.get(), m_inputCaps.get(), nullptr, nullptr)));
if (!result)
return VideoDecoder::DecodePromise::createAndReject("Decode error"_s);
m_harness->processOutputSamples();
return VideoDecoder::DecodePromise::createAndResolve();
}
void GStreamerInternalVideoDecoder::flush()
{
if (m_isClosed) {
GST_DEBUG_OBJECT(m_harness->element(), "Decoder closed, nothing to flush");
return;
}
m_harness->reset();
}
#undef GST_CAT_DEFAULT
} // namespace WebCore
#endif // ENABLE(VIDEO) && USE(GSTREAMER)
|