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 485 486 487 488 489 490 491 492
|
/*
* Copyright (C) 2011, 2012 Igalia S.L
* Copyright (C) 2011 Zan Dobersek <zandobersek@gmail.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"
#if ENABLE(WEB_AUDIO)
#include "AudioFileReader.h"
#include "AudioBus.h"
#include "GStreamerVersioning.h"
#if PLATFORM(QT)
// Clear out offending Qt macro so the following header, gio.h, can be included.
// https://bugs.webkit.org/show_bug.cgi?id=95081
#undef signals
#endif
#include <gio/gio.h>
#include <gst/app/gstappsink.h>
#include <gst/gst.h>
#include <gst/pbutils/pbutils.h>
#include <wtf/Noncopyable.h>
#include <wtf/PassOwnPtr.h>
#include <wtf/gobject/GOwnPtr.h>
#include <wtf/gobject/GRefPtr.h>
#ifdef GST_API_VERSION_1
#include <gst/audio/audio.h>
#else
#include <gst/audio/multichannel.h>
#endif
#ifdef GST_API_VERSION_1
static const char* gDecodebinName = "decodebin";
#else
static const char* gDecodebinName = "decodebin2";
#endif
namespace WebCore {
class AudioFileReader {
WTF_MAKE_NONCOPYABLE(AudioFileReader);
public:
AudioFileReader(const char* filePath);
AudioFileReader(const void* data, size_t dataSize);
~AudioFileReader();
PassRefPtr<AudioBus> createBus(float sampleRate, bool mixToMono);
#ifdef GST_API_VERSION_1
GstFlowReturn handleSample(GstAppSink*);
#else
GstFlowReturn handleBuffer(GstAppSink*);
#endif
gboolean handleMessage(GstMessage*);
void handleNewDeinterleavePad(GstPad*);
void deinterleavePadsConfigured();
void plugDeinterleave(GstPad*);
void decodeAudioForBusCreation();
private:
const void* m_data;
size_t m_dataSize;
const char* m_filePath;
float m_sampleRate;
GstBufferList* m_frontLeftBuffers;
GstBufferList* m_frontRightBuffers;
#ifndef GST_API_VERSION_1
GstBufferListIterator* m_frontLeftBuffersIterator;
GstBufferListIterator* m_frontRightBuffersIterator;
#endif
GstElement* m_pipeline;
unsigned m_channelSize;
GRefPtr<GstElement> m_decodebin;
GRefPtr<GstElement> m_deInterleave;
GRefPtr<GMainLoop> m_loop;
bool m_errorOccurred;
};
static void copyGstreamerBuffersToAudioChannel(GstBufferList* buffers, AudioChannel* audioChannel)
{
#ifdef GST_API_VERSION_1
float* destination = audioChannel->mutableData();
unsigned bufferCount = gst_buffer_list_length(buffers);
for (unsigned i = 0; i < bufferCount; ++i) {
GstBuffer* buffer = gst_buffer_list_get(buffers, i);
ASSERT(buffer);
gsize bufferSize = gst_buffer_get_size(buffer);
gst_buffer_extract(buffer, 0, destination, bufferSize);
destination += bufferSize / sizeof(float);
}
#else
GstBufferListIterator* iter = gst_buffer_list_iterate(buffers);
gst_buffer_list_iterator_next_group(iter);
GstBuffer* buffer = gst_buffer_list_iterator_merge_group(iter);
if (buffer) {
memcpy(audioChannel->mutableData(), reinterpret_cast<float*>(GST_BUFFER_DATA(buffer)), GST_BUFFER_SIZE(buffer));
gst_buffer_unref(buffer);
}
gst_buffer_list_iterator_free(iter);
#endif
}
static GstFlowReturn onAppsinkPullRequiredCallback(GstAppSink* sink, gpointer userData)
{
#ifdef GST_API_VERSION_1
return static_cast<AudioFileReader*>(userData)->handleSample(sink);
#else
return static_cast<AudioFileReader*>(userData)->handleBuffer(sink);
#endif
}
gboolean messageCallback(GstBus*, GstMessage* message, AudioFileReader* reader)
{
return reader->handleMessage(message);
}
static void onGStreamerDeinterleavePadAddedCallback(GstElement*, GstPad* pad, AudioFileReader* reader)
{
reader->handleNewDeinterleavePad(pad);
}
static void onGStreamerDeinterleaveReadyCallback(GstElement*, AudioFileReader* reader)
{
reader->deinterleavePadsConfigured();
}
static void onGStreamerDecodebinPadAddedCallback(GstElement*, GstPad* pad, AudioFileReader* reader)
{
reader->plugDeinterleave(pad);
}
gboolean enteredMainLoopCallback(gpointer userData)
{
AudioFileReader* reader = reinterpret_cast<AudioFileReader*>(userData);
reader->decodeAudioForBusCreation();
return FALSE;
}
AudioFileReader::AudioFileReader(const char* filePath)
: m_data(0)
, m_dataSize(0)
, m_filePath(filePath)
, m_channelSize(0)
, m_errorOccurred(false)
{
}
AudioFileReader::AudioFileReader(const void* data, size_t dataSize)
: m_data(data)
, m_dataSize(dataSize)
, m_filePath(0)
, m_channelSize(0)
, m_errorOccurred(false)
{
}
AudioFileReader::~AudioFileReader()
{
if (m_pipeline) {
GRefPtr<GstBus> bus = webkitGstPipelineGetBus(GST_PIPELINE(m_pipeline));
ASSERT(bus);
g_signal_handlers_disconnect_by_func(bus.get(), reinterpret_cast<gpointer>(messageCallback), this);
gst_bus_remove_signal_watch(bus.get());
gst_element_set_state(m_pipeline, GST_STATE_NULL);
gst_object_unref(GST_OBJECT(m_pipeline));
}
if (m_decodebin) {
g_signal_handlers_disconnect_by_func(m_decodebin.get(), reinterpret_cast<gpointer>(onGStreamerDecodebinPadAddedCallback), this);
m_decodebin.clear();
}
if (m_deInterleave) {
g_signal_handlers_disconnect_by_func(m_deInterleave.get(), reinterpret_cast<gpointer>(onGStreamerDeinterleavePadAddedCallback), this);
g_signal_handlers_disconnect_by_func(m_deInterleave.get(), reinterpret_cast<gpointer>(onGStreamerDeinterleaveReadyCallback), this);
m_deInterleave.clear();
}
#ifndef GST_API_VERSION_1
gst_buffer_list_iterator_free(m_frontLeftBuffersIterator);
gst_buffer_list_iterator_free(m_frontRightBuffersIterator);
#endif
gst_buffer_list_unref(m_frontLeftBuffers);
gst_buffer_list_unref(m_frontRightBuffers);
}
#ifdef GST_API_VERSION_1
GstFlowReturn AudioFileReader::handleSample(GstAppSink* sink)
{
GstSample* sample = gst_app_sink_pull_sample(sink);
if (!sample)
return GST_FLOW_ERROR;
GstBuffer* buffer = gst_sample_get_buffer(sample);
if (!buffer) {
gst_sample_unref(sample);
return GST_FLOW_ERROR;
}
GstCaps* caps = gst_sample_get_caps(sample);
if (!caps) {
gst_sample_unref(sample);
return GST_FLOW_ERROR;
}
GstAudioInfo info;
gst_audio_info_from_caps(&info, caps);
int frames = GST_CLOCK_TIME_TO_FRAMES(GST_BUFFER_DURATION(buffer), GST_AUDIO_INFO_RATE(&info));
// Check the first audio channel. The buffer is supposed to store
// data of a single channel anyway.
switch (GST_AUDIO_INFO_POSITION(&info, 0)) {
case GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT:
gst_buffer_list_add(m_frontLeftBuffers, gst_buffer_ref(buffer));
m_channelSize += frames;
break;
case GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT:
gst_buffer_list_add(m_frontRightBuffers, gst_buffer_ref(buffer));
break;
default:
break;
}
gst_sample_unref(sample);
return GST_FLOW_OK;
}
#endif
#ifndef GST_API_VERSION_1
GstFlowReturn AudioFileReader::handleBuffer(GstAppSink* sink)
{
GstBuffer* buffer = gst_app_sink_pull_buffer(sink);
if (!buffer)
return GST_FLOW_ERROR;
GstCaps* caps = gst_buffer_get_caps(buffer);
GstStructure* structure = gst_caps_get_structure(caps, 0);
gint channels = 0;
if (!gst_structure_get_int(structure, "channels", &channels) || !channels) {
gst_caps_unref(caps);
gst_buffer_unref(buffer);
return GST_FLOW_ERROR;
}
gint sampleRate = 0;
if (!gst_structure_get_int(structure, "rate", &sampleRate) || !sampleRate) {
gst_caps_unref(caps);
gst_buffer_unref(buffer);
return GST_FLOW_ERROR;
}
gint width = 0;
if (!gst_structure_get_int(structure, "width", &width) || !width) {
gst_caps_unref(caps);
gst_buffer_unref(buffer);
return GST_FLOW_ERROR;
}
GstClockTime duration = (static_cast<guint64>(GST_BUFFER_SIZE(buffer)) * 8 * GST_SECOND) / (sampleRate * channels * width);
int frames = GST_CLOCK_TIME_TO_FRAMES(duration, sampleRate);
// Check the first audio channel. The buffer is supposed to store
// data of a single channel anyway.
GstAudioChannelPosition* positions = gst_audio_get_channel_positions(structure);
switch (positions[0]) {
case GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT:
gst_buffer_list_iterator_add(m_frontLeftBuffersIterator, buffer);
m_channelSize += frames;
break;
case GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT:
gst_buffer_list_iterator_add(m_frontRightBuffersIterator, buffer);
break;
default:
gst_buffer_unref(buffer);
break;
}
g_free(positions);
gst_caps_unref(caps);
return GST_FLOW_OK;
}
#endif
gboolean AudioFileReader::handleMessage(GstMessage* message)
{
GOwnPtr<GError> error;
GOwnPtr<gchar> debug;
switch (GST_MESSAGE_TYPE(message)) {
case GST_MESSAGE_EOS:
g_main_loop_quit(m_loop.get());
break;
case GST_MESSAGE_WARNING:
gst_message_parse_warning(message, &error.outPtr(), &debug.outPtr());
g_warning("Warning: %d, %s. Debug output: %s", error->code, error->message, debug.get());
break;
case GST_MESSAGE_ERROR:
gst_message_parse_error(message, &error.outPtr(), &debug.outPtr());
g_warning("Error: %d, %s. Debug output: %s", error->code, error->message, debug.get());
m_errorOccurred = true;
g_main_loop_quit(m_loop.get());
break;
default:
break;
}
return TRUE;
}
void AudioFileReader::handleNewDeinterleavePad(GstPad* pad)
{
// A new pad for a planar channel was added in deinterleave. Plug
// in an appsink so we can pull the data from each
// channel. Pipeline looks like:
// ... deinterleave ! queue ! appsink.
GstElement* queue = gst_element_factory_make("queue", 0);
GstElement* sink = gst_element_factory_make("appsink", 0);
GstAppSinkCallbacks callbacks;
callbacks.eos = 0;
callbacks.new_preroll = 0;
#ifdef GST_API_VERSION_1
callbacks.new_sample = onAppsinkPullRequiredCallback;
#else
callbacks.new_buffer_list = 0;
callbacks.new_buffer = onAppsinkPullRequiredCallback;
#endif
gst_app_sink_set_callbacks(GST_APP_SINK(sink), &callbacks, this, 0);
g_object_set(sink, "sync", FALSE, NULL);
gst_bin_add_many(GST_BIN(m_pipeline), queue, sink, NULL);
GstPad* sinkPad = gst_element_get_static_pad(queue, "sink");
gst_pad_link_full(pad, sinkPad, GST_PAD_LINK_CHECK_NOTHING);
gst_object_unref(GST_OBJECT(sinkPad));
gst_element_link_pads_full(queue, "src", sink, "sink", GST_PAD_LINK_CHECK_NOTHING);
gst_element_set_state(queue, GST_STATE_READY);
gst_element_set_state(sink, GST_STATE_READY);
}
void AudioFileReader::deinterleavePadsConfigured()
{
// All deinterleave src pads are now available, let's roll to
// PLAYING so data flows towards the sinks and it can be retrieved.
gst_element_set_state(m_pipeline, GST_STATE_PLAYING);
}
void AudioFileReader::plugDeinterleave(GstPad* pad)
{
// A decodebin pad was added, plug in a deinterleave element to
// separate each planar channel. Sub pipeline looks like
// ... decodebin2 ! audioconvert ! audioresample ! capsfilter ! deinterleave.
GstElement* audioConvert = gst_element_factory_make("audioconvert", 0);
GstElement* audioResample = gst_element_factory_make("audioresample", 0);
GstElement* capsFilter = gst_element_factory_make("capsfilter", 0);
m_deInterleave = gst_element_factory_make("deinterleave", "deinterleave");
g_object_set(m_deInterleave.get(), "keep-positions", TRUE, NULL);
g_signal_connect(m_deInterleave.get(), "pad-added", G_CALLBACK(onGStreamerDeinterleavePadAddedCallback), this);
g_signal_connect(m_deInterleave.get(), "no-more-pads", G_CALLBACK(onGStreamerDeinterleaveReadyCallback), this);
GstCaps* caps = getGstAudioCaps(2, m_sampleRate);
g_object_set(capsFilter, "caps", caps, NULL);
gst_caps_unref(caps);
gst_bin_add_many(GST_BIN(m_pipeline), audioConvert, audioResample, capsFilter, m_deInterleave.get(), NULL);
GstPad* sinkPad = gst_element_get_static_pad(audioConvert, "sink");
gst_pad_link_full(pad, sinkPad, GST_PAD_LINK_CHECK_NOTHING);
gst_object_unref(GST_OBJECT(sinkPad));
gst_element_link_pads_full(audioConvert, "src", audioResample, "sink", GST_PAD_LINK_CHECK_NOTHING);
gst_element_link_pads_full(audioResample, "src", capsFilter, "sink", GST_PAD_LINK_CHECK_NOTHING);
gst_element_link_pads_full(capsFilter, "src", m_deInterleave.get(), "sink", GST_PAD_LINK_CHECK_NOTHING);
gst_element_sync_state_with_parent(audioConvert);
gst_element_sync_state_with_parent(audioResample);
gst_element_sync_state_with_parent(capsFilter);
gst_element_sync_state_with_parent(m_deInterleave.get());
}
void AudioFileReader::decodeAudioForBusCreation()
{
// Build the pipeline (giostreamsrc | filesrc) ! decodebin2
// A deinterleave element is added once a src pad becomes available in decodebin.
m_pipeline = gst_pipeline_new(0);
GRefPtr<GstBus> bus = webkitGstPipelineGetBus(GST_PIPELINE(m_pipeline));
ASSERT(bus);
gst_bus_add_signal_watch(bus.get());
g_signal_connect(bus.get(), "message", G_CALLBACK(messageCallback), this);
GstElement* source;
if (m_data) {
ASSERT(m_dataSize);
source = gst_element_factory_make("giostreamsrc", 0);
GRefPtr<GInputStream> memoryStream = adoptGRef(g_memory_input_stream_new_from_data(m_data, m_dataSize, 0));
g_object_set(source, "stream", memoryStream.get(), NULL);
} else {
source = gst_element_factory_make("filesrc", 0);
g_object_set(source, "location", m_filePath, NULL);
}
m_decodebin = gst_element_factory_make(gDecodebinName, "decodebin");
g_signal_connect(m_decodebin.get(), "pad-added", G_CALLBACK(onGStreamerDecodebinPadAddedCallback), this);
gst_bin_add_many(GST_BIN(m_pipeline), source, m_decodebin.get(), NULL);
gst_element_link_pads_full(source, "src", m_decodebin.get(), "sink", GST_PAD_LINK_CHECK_NOTHING);
gst_element_set_state(m_pipeline, GST_STATE_PAUSED);
}
PassRefPtr<AudioBus> AudioFileReader::createBus(float sampleRate, bool mixToMono)
{
m_sampleRate = sampleRate;
m_frontLeftBuffers = gst_buffer_list_new();
m_frontRightBuffers = gst_buffer_list_new();
#ifndef GST_API_VERSION_1
m_frontLeftBuffersIterator = gst_buffer_list_iterate(m_frontLeftBuffers);
gst_buffer_list_iterator_add_group(m_frontLeftBuffersIterator);
m_frontRightBuffersIterator = gst_buffer_list_iterate(m_frontRightBuffers);
gst_buffer_list_iterator_add_group(m_frontRightBuffersIterator);
#endif
GRefPtr<GMainContext> context = adoptGRef(g_main_context_new());
g_main_context_push_thread_default(context.get());
m_loop = adoptGRef(g_main_loop_new(context.get(), FALSE));
// Start the pipeline processing just after the loop is started.
GRefPtr<GSource> timeoutSource = adoptGRef(g_timeout_source_new(0));
g_source_attach(timeoutSource.get(), context.get());
g_source_set_callback(timeoutSource.get(), reinterpret_cast<GSourceFunc>(enteredMainLoopCallback), this, 0);
g_main_loop_run(m_loop.get());
g_main_context_pop_thread_default(context.get());
if (m_errorOccurred)
return 0;
unsigned channels = mixToMono ? 1 : 2;
RefPtr<AudioBus> audioBus = AudioBus::create(channels, m_channelSize, true);
audioBus->setSampleRate(m_sampleRate);
copyGstreamerBuffersToAudioChannel(m_frontLeftBuffers, audioBus->channel(0));
if (!mixToMono)
copyGstreamerBuffersToAudioChannel(m_frontRightBuffers, audioBus->channel(1));
return audioBus;
}
PassRefPtr<AudioBus> createBusFromAudioFile(const char* filePath, bool mixToMono, float sampleRate)
{
return AudioFileReader(filePath).createBus(sampleRate, mixToMono);
}
PassRefPtr<AudioBus> createBusFromInMemoryAudioFile(const void* data, size_t dataSize, bool mixToMono, float sampleRate)
{
return AudioFileReader(data, dataSize).createBus(sampleRate, mixToMono);
}
} // WebCore
#endif // ENABLE(WEB_AUDIO)
|