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
|
/*
* Copyright (C) 2011, 2012 Igalia S.L
* Copyright (C) 2014 Sebastian Dröge <sebastian@centricular.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include "WebKitWebAudioSourceGStreamer.h"
#if ENABLE(WEB_AUDIO) && USE(GSTREAMER)
#include "AudioBus.h"
#include "AudioDestinationGStreamer.h"
#include "AudioIOCallback.h"
#include "AudioUtilities.h"
#include "GStreamerCommon.h"
#include "GStreamerQuirks.h"
#include <gst/app/gstappsrc.h>
#include <gst/audio/audio-info.h>
#include <gst/pbutils/missing-plugins.h>
#include <wtf/Condition.h>
#include <wtf/Lock.h>
#include <wtf/Scope.h>
#include <wtf/StdLibExtras.h>
#include <wtf/glib/GUniquePtr.h>
#include <wtf/glib/WTFGType.h>
using namespace WebCore;
typedef struct _WebKitWebAudioSrcClass WebKitWebAudioSrcClass;
typedef struct _WebKitWebAudioSrcPrivate WebKitWebAudioSrcPrivate;
struct _WebKitWebAudioSrc {
GstBin parent;
WebKitWebAudioSrcPrivate* priv;
};
struct _WebKitWebAudioSrcClass {
GstBinClass parentClass;
};
static GstStaticPadTemplate webAudioSrcTemplate = GST_STATIC_PAD_TEMPLATE("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
GST_STATIC_CAPS(GST_AUDIO_CAPS_MAKE(GST_AUDIO_NE(F32))));
struct _WebKitWebAudioSrcPrivate {
gfloat sampleRate;
RefPtr<AudioBus> bus;
AudioDestinationGStreamer* destination;
guint framesToPull;
guint bufferSize;
GRefPtr<GstTask> task;
GRecMutex mutex;
GRefPtr<GstElement> source;
GRefPtr<GstCaps> caps;
GstAudioInfo info;
// src pad of the element, interleaved wav data is pushed to it.
GstPad* sourcePad;
guint64 numberOfSamples;
GRefPtr<GstBufferPool> pool;
bool hasRenderedAudibleFrame { false };
Lock dispatchToRenderThreadLock;
Function<void(Function<void()>&&)> dispatchToRenderThreadFunction WTF_GUARDED_BY_LOCK(dispatchToRenderThreadLock);
bool dispatchDone WTF_GUARDED_BY_LOCK(dispatchLock);
Lock dispatchLock;
Condition dispatchCondition;
_WebKitWebAudioSrcPrivate()
{
sourcePad = webkitGstGhostPadFromStaticTemplate(&webAudioSrcTemplate, "src", nullptr);
g_rec_mutex_init(&mutex);
}
~_WebKitWebAudioSrcPrivate()
{
g_rec_mutex_clear(&mutex);
}
};
enum {
PROP_RATE = 1,
PROP_DESTINATION,
PROP_FRAMES
};
GST_DEBUG_CATEGORY_STATIC(webkit_web_audio_src_debug);
#define GST_CAT_DEFAULT webkit_web_audio_src_debug
static void webKitWebAudioSrcConstructed(GObject*);
static void webKitWebAudioSrcSetProperty(GObject*, guint propertyId, const GValue*, GParamSpec*);
static void webKitWebAudioSrcGetProperty(GObject*, guint propertyId, GValue*, GParamSpec*);
static GstStateChangeReturn webKitWebAudioSrcChangeState(GstElement*, GstStateChange);
static void webKitWebAudioSrcRenderIteration(WebKitWebAudioSrc*);
static GstAudioChannelPosition webKitWebAudioGStreamerChannelPosition(int channelIndex)
{
GstAudioChannelPosition position = GST_AUDIO_CHANNEL_POSITION_NONE;
switch (channelIndex) {
case AudioBus::ChannelLeft:
position = GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT;
break;
case AudioBus::ChannelRight:
position = GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT;
break;
case AudioBus::ChannelCenter:
position = GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER;
break;
case AudioBus::ChannelLFE:
position = GST_AUDIO_CHANNEL_POSITION_LFE1;
break;
case AudioBus::ChannelSurroundLeft:
position = GST_AUDIO_CHANNEL_POSITION_REAR_LEFT;
break;
case AudioBus::ChannelSurroundRight:
position = GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT;
break;
default:
break;
};
return position;
}
static GstCaps* getGStreamerAudioCaps(float sampleRate, unsigned numberOfChannels)
{
guint64 channelMask = 0;
Vector<GstAudioChannelPosition> positions(numberOfChannels, [&](size_t channelIndex) -> GstAudioChannelPosition {
return webKitWebAudioGStreamerChannelPosition(channelIndex);
});
gst_audio_channel_positions_to_mask(reinterpret_cast<GstAudioChannelPosition*>(positions.data()),
numberOfChannels, FALSE, &channelMask);
return gst_caps_new_simple("audio/x-raw", "rate", G_TYPE_INT, static_cast<int>(sampleRate),
"channels", G_TYPE_INT, static_cast<int>(numberOfChannels),
"channel-mask", GST_TYPE_BITMASK, channelMask,
"format", G_TYPE_STRING, GST_AUDIO_NE(F32),
"layout", G_TYPE_STRING, "non-interleaved", nullptr);
}
WEBKIT_DEFINE_TYPE_WITH_CODE(WebKitWebAudioSrc, webkit_web_audio_src, GST_TYPE_BIN, GST_DEBUG_CATEGORY_INIT(webkit_web_audio_src_debug, "webkitwebaudiosrc", 0, "webaudiosrc element"))
static void webkit_web_audio_src_class_init(WebKitWebAudioSrcClass* webKitWebAudioSrcClass)
{
GObjectClass* objectClass = G_OBJECT_CLASS(webKitWebAudioSrcClass);
GstElementClass* elementClass = GST_ELEMENT_CLASS(webKitWebAudioSrcClass);
gst_element_class_add_pad_template(elementClass, gst_static_pad_template_get(&webAudioSrcTemplate));
gst_element_class_set_metadata(elementClass, "WebKit WebAudio source element", "Source", "Handles WebAudio data from WebCore", "Philippe Normand <pnormand@igalia.com>");
objectClass->constructed = webKitWebAudioSrcConstructed;
elementClass->change_state = webKitWebAudioSrcChangeState;
objectClass->set_property = webKitWebAudioSrcSetProperty;
objectClass->get_property = webKitWebAudioSrcGetProperty;
GParamFlags flags = static_cast<GParamFlags>(G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
g_object_class_install_property(objectClass,
PROP_RATE,
g_param_spec_float("rate",
nullptr, nullptr,
G_MINDOUBLE, G_MAXDOUBLE,
44100.0, flags));
g_object_class_install_property(objectClass, PROP_DESTINATION, g_param_spec_pointer("destination", "destination", "Destination", G_PARAM_READWRITE));
g_object_class_install_property(objectClass,
PROP_FRAMES,
g_param_spec_uint("frames",
nullptr, nullptr,
0, G_MAXUINT8, AudioUtilities::renderQuantumSize, flags));
}
static void webKitWebAudioSrcConstructed(GObject* object)
{
G_OBJECT_CLASS(webkit_web_audio_src_parent_class)->constructed(object);
WebKitWebAudioSrc* src = WEBKIT_WEB_AUDIO_SRC(object);
WebKitWebAudioSrcPrivate* priv = src->priv;
ASSERT(priv->sampleRate);
GST_OBJECT_FLAG_SET(GST_OBJECT_CAST(src), GST_ELEMENT_FLAG_SOURCE);
gst_bin_set_suppressed_flags(GST_BIN_CAST(src), static_cast<GstElementFlags>(GST_ELEMENT_FLAG_SOURCE | GST_ELEMENT_FLAG_SINK));
gst_element_add_pad(GST_ELEMENT(src), priv->sourcePad);
priv->task = adoptGRef(gst_task_new(reinterpret_cast<GstTaskFunction>(webKitWebAudioSrcRenderIteration), src, nullptr));
gst_task_set_lock(priv->task.get(), &priv->mutex);
static Atomic<uint32_t> taskId;
auto taskName = makeString("webaudioSrcTask"_s, taskId.exchangeAdd(1));
gst_object_set_name(GST_OBJECT_CAST(priv->task.get()), taskName.ascii().data());
priv->source = makeGStreamerElement("appsrc", "webaudioSrc");
// Configure the appsrc for minimal latency.
g_object_set(priv->source.get(), "block", TRUE, "blocksize", priv->bufferSize, "format", GST_FORMAT_TIME, "is-live", TRUE, nullptr);
gst_bin_add(GST_BIN(src), priv->source.get());
// appsrc's src pad is the only visible pad of our element.
GRefPtr<GstPad> targetPad = adoptGRef(gst_element_get_static_pad(priv->source.get(), "src"));
gst_ghost_pad_set_target(GST_GHOST_PAD(priv->sourcePad), targetPad.get());
}
static void webKitWebAudioSrcSetProperty(GObject* object, guint propertyId, const GValue* value, GParamSpec* pspec)
{
WebKitWebAudioSrc* src = WEBKIT_WEB_AUDIO_SRC(object);
WebKitWebAudioSrcPrivate* priv = src->priv;
switch (propertyId) {
case PROP_RATE:
priv->sampleRate = g_value_get_float(value);
break;
case PROP_DESTINATION:
priv->destination = static_cast<AudioDestinationGStreamer*>(g_value_get_pointer(value));
break;
case PROP_FRAMES:
priv->framesToPull = g_value_get_uint(value);
priv->bufferSize = sizeof(float) * priv->framesToPull;
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec);
break;
}
}
static void webKitWebAudioSrcGetProperty(GObject* object, guint propertyId, GValue* value, GParamSpec* pspec)
{
WebKitWebAudioSrc* src = WEBKIT_WEB_AUDIO_SRC(object);
WebKitWebAudioSrcPrivate* priv = src->priv;
switch (propertyId) {
case PROP_RATE:
g_value_set_float(value, priv->sampleRate);
break;
case PROP_DESTINATION:
g_value_set_pointer(value, priv->destination);
break;
case PROP_FRAMES:
g_value_set_uint(value, priv->framesToPull);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec);
break;
}
}
static GRefPtr<GstBuffer> webKitWebAudioSrcAllocateBuffer(WebKitWebAudioSrc* src)
{
WebKitWebAudioSrcPrivate* priv = src->priv;
ASSERT(priv->bus);
ASSERT(priv->destination);
if (!priv->destination || !priv->bus) {
GST_ELEMENT_ERROR(src, CORE, FAILED, ("Internal WebAudioSrc error"), ("Can't start without destination or bus"));
gst_task_stop(src->priv->task.get());
return nullptr;
}
ASSERT(priv->pool);
GRefPtr<GstBuffer> buffer;
GstFlowReturn ret = gst_buffer_pool_acquire_buffer(priv->pool.get(), &buffer.outPtr(), nullptr);
if (ret != GST_FLOW_OK) {
// FLUSHING and EOS are not errors.
if (ret < GST_FLOW_EOS || ret == GST_FLOW_NOT_LINKED)
GST_ELEMENT_ERROR(src, CORE, PAD, ("Internal WebAudioSrc error"), ("Failed to allocate buffer for flow: %s", gst_flow_get_name(ret)));
return nullptr;
}
ASSERT(buffer);
gst_buffer_add_audio_meta(buffer.get(), &priv->info, priv->framesToPull, nullptr);
{
GstMappedBuffer mappedBuffer(buffer.get(), GST_MAP_READ);
ASSERT(mappedBuffer);
for (unsigned channelIndex = 0; channelIndex < priv->bus->numberOfChannels(); channelIndex++)
priv->bus->setChannelMemory(channelIndex, spanReinterpretCast<float>(mappedBuffer.mutableSpan<uint8_t>().subspan(channelIndex * priv->bufferSize)).first(priv->framesToPull));
}
return buffer;
}
static void webKitWebAudioSrcRenderAndPushFrames(const GRefPtr<GstElement>& element, GRefPtr<GstBuffer>&& buffer)
{
auto* src = WEBKIT_WEB_AUDIO_SRC(element.get());
auto* priv = src->priv;
auto notifyDispatchOnExit = makeScopeExit([priv] {
Locker locker { priv->dispatchLock };
priv->dispatchDone = true;
priv->dispatchCondition.notifyOne();
});
if (GST_STATE(element.get()) < GST_STATE_PAUSED)
return;
if (!priv->destination)
return;
GST_TRACE_OBJECT(element.get(), "Playing: %d", priv->destination->isPlaying());
if (priv->hasRenderedAudibleFrame && !priv->destination->isPlaying())
return;
GstClockTime timestamp = gst_util_uint64_scale(priv->numberOfSamples, GST_SECOND, priv->sampleRate);
priv->numberOfSamples += priv->framesToPull;
GstClockTime duration = gst_util_uint64_scale(priv->framesToPull, GST_SECOND, priv->sampleRate);
AudioIOPosition outputTimestamp;
outputTimestamp.position = Seconds::fromNanoseconds(timestamp);
auto now = static_cast<double>((g_get_monotonic_time() + GST_TIME_AS_USECONDS(timestamp)) / 1000000.0);
outputTimestamp.timestamp = MonotonicTime::fromRawSeconds(now);
// FIXME: Add support for local/live audio input.
if (priv->bus)
priv->destination->callRenderCallback(nullptr, priv->bus.get(), priv->framesToPull, outputTimestamp);
if (!priv->hasRenderedAudibleFrame && !priv->bus->isSilent()) {
priv->destination->notifyIsPlaying(true);
priv->hasRenderedAudibleFrame = true;
}
GST_BUFFER_TIMESTAMP(buffer.get()) = timestamp;
GST_BUFFER_DURATION(buffer.get()) = duration;
if (priv->bus->isSilent()) {
auto& quirksManager = GStreamerQuirksManager::singleton();
if (quirksManager.isEnabled())
quirksManager.processWebAudioSilentBuffer(buffer.get());
else {
GST_BUFFER_FLAG_SET(buffer.get(), GST_BUFFER_FLAG_GAP);
GST_BUFFER_FLAG_SET(buffer.get(), GST_BUFFER_FLAG_DROPPABLE);
}
}
// Leak the buffer ref, because gst_app_src_push_buffer steals it.
GstFlowReturn ret = gst_app_src_push_buffer(GST_APP_SRC(priv->source.get()), buffer.leakRef());
if (ret != GST_FLOW_OK) {
// FLUSHING and EOS are not errors.
if (ret < GST_FLOW_EOS || ret == GST_FLOW_NOT_LINKED)
GST_ELEMENT_ERROR(src, CORE, PAD, ("Internal WebAudioSrc error"), ("Failed to push buffer on %s flow: %s", GST_OBJECT_NAME(priv->source.get()), gst_flow_get_name(ret)));
gst_task_stop(priv->task.get());
}
}
static void webKitWebAudioSrcRenderIteration(WebKitWebAudioSrc* src)
{
auto* priv = src->priv;
auto buffer = webKitWebAudioSrcAllocateBuffer(src);
if (!buffer) {
gst_task_stop(priv->task.get());
return;
}
{
Locker locker { priv->dispatchLock };
priv->dispatchDone = false;
}
if (!priv->dispatchToRenderThreadLock.tryLock())
return;
Locker locker { AdoptLock, priv->dispatchToRenderThreadLock };
if (!priv->dispatchToRenderThreadFunction)
webKitWebAudioSrcRenderAndPushFrames(GRefPtr<GstElement>(GST_ELEMENT_CAST(src)), WTFMove(buffer));
else {
priv->dispatchToRenderThreadFunction([buffer = WTFMove(buffer), protectedThis = GRefPtr<GstElement>(GST_ELEMENT_CAST(src))]() mutable {
if (!protectedThis)
return;
webKitWebAudioSrcRenderAndPushFrames(protectedThis, WTFMove(buffer));
});
}
{
Locker locker { priv->dispatchLock };
if (!priv->dispatchDone)
priv->dispatchCondition.wait(priv->dispatchLock);
}
}
static GstStateChangeReturn webKitWebAudioSrcChangeState(GstElement* element, GstStateChange transition)
{
GstStateChangeReturn returnValue = GST_STATE_CHANGE_SUCCESS;
auto* src = WEBKIT_WEB_AUDIO_SRC(element);
auto* priv = src->priv;
GST_DEBUG_OBJECT(element, "%s", gst_state_change_get_name(transition));
switch (transition) {
case GST_STATE_CHANGE_NULL_TO_READY:
priv->numberOfSamples = 0;
break;
case GST_STATE_CHANGE_READY_TO_PAUSED: {
priv->pool = adoptGRef(gst_buffer_pool_new());
GstStructure* config = gst_buffer_pool_get_config(priv->pool.get());
gst_buffer_pool_config_set_params(config, nullptr, priv->bufferSize * priv->bus->numberOfChannels(), 0, 0);
gst_buffer_pool_set_config(priv->pool.get(), config);
if (!gst_buffer_pool_set_active(priv->pool.get(), TRUE))
return GST_STATE_CHANGE_FAILURE;
webKitWebAudioSrcRenderIteration(src);
break;
}
case GST_STATE_CHANGE_PAUSED_TO_PLAYING: {
if (!gst_task_start(priv->task.get()))
return GST_STATE_CHANGE_FAILURE;
break;
}
default:
break;
}
returnValue = GST_ELEMENT_CLASS(webkit_web_audio_src_parent_class)->change_state(element, transition);
if (UNLIKELY(returnValue == GST_STATE_CHANGE_FAILURE)) {
GST_DEBUG_OBJECT(src, "State change failed");
return returnValue;
}
switch (transition) {
case GST_STATE_CHANGE_PAUSED_TO_READY:
{
Locker locker { priv->dispatchLock };
priv->dispatchCondition.notifyAll();
}
gst_buffer_pool_set_flushing(priv->pool.get(), TRUE);
if (!gst_task_join(priv->task.get()))
returnValue = GST_STATE_CHANGE_FAILURE;
gst_buffer_pool_set_active(priv->pool.get(), FALSE);
priv->pool = nullptr;
priv->hasRenderedAudibleFrame = false;
break;
default:
break;
}
return returnValue;
}
void webkitWebAudioSourceSetBus(WebKitWebAudioSrc* src, RefPtr<AudioBus> bus)
{
auto priv = src->priv;
priv->bus = bus;
priv->caps = adoptGRef(getGStreamerAudioCaps(priv->sampleRate, priv->bus->numberOfChannels()));
gst_audio_info_from_caps(&priv->info, priv->caps.get());
g_object_set(priv->source.get(), "max-bytes", static_cast<guint64>(2 * priv->bufferSize * priv->bus->numberOfChannels()), "caps", priv->caps.get(), nullptr);
}
void webkitWebAudioSourceSetDispatchToRenderThreadFunction(WebKitWebAudioSrc* src, Function<void(Function<void()>&&)>&& function)
{
Locker locker { src->priv->dispatchToRenderThreadLock };
src->priv->dispatchToRenderThreadFunction = WTFMove(function);
}
#undef GST_CAT_DEFAULT
#endif // ENABLE(WEB_AUDIO) && USE(GSTREAMER)
|