Clementine-audio-player-Mac.../src/moodbar/moodbarpipeline.cpp

193 lines
5.3 KiB
C++
Raw Normal View History

2012-05-25 18:18:07 +02:00
/* This file is part of Clementine.
Copyright 2012, David Sansome <me@davidsansome.com>
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "moodbarpipeline.h"
#include <QCoreApplication>
#include <QThread>
2012-05-29 00:18:36 +02:00
#include <QUrl>
#include "core/logging.h"
#include "core/signalchecker.h"
2012-05-25 18:18:07 +02:00
bool MoodbarPipeline::sIsAvailable = false;
2012-05-29 00:33:37 +02:00
MoodbarPipeline::MoodbarPipeline(const QUrl& local_filename)
2012-05-25 18:18:07 +02:00
: QObject(NULL),
local_filename_(local_filename),
pipeline_(NULL),
convert_element_(NULL),
success_(false)
{
}
MoodbarPipeline::~MoodbarPipeline() {
Cleanup();
}
bool MoodbarPipeline::IsAvailable() {
if (!sIsAvailable) {
GstElementFactory* factory = gst_element_factory_find("fftwspectrum");
if (!factory) {
return false;
}
gst_object_unref(factory);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
factory = gst_element_factory_find("moodbar");
if (!factory) {
return false;
}
gst_object_unref(factory);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
sIsAvailable = true;
}
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
return sIsAvailable;
}
GstElement* MoodbarPipeline::CreateElement(const QString& factory_name) {
GstElement* ret = gst_element_factory_make(factory_name.toAscii().constData(), NULL);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
if (ret) {
gst_bin_add(GST_BIN(pipeline_), ret);
} else {
qLog(Warning) << "Unable to create gstreamer element" << factory_name;
}
return ret;
}
void MoodbarPipeline::Start() {
Q_ASSERT(QThread::currentThread() != qApp->thread());
2012-05-25 18:18:07 +02:00
if (pipeline_) {
return;
2012-05-25 18:18:07 +02:00
}
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
pipeline_ = gst_pipeline_new("moodbar-pipeline");
2012-05-29 00:18:36 +02:00
GstElement* decodebin = CreateElement("uridecodebin");
2012-05-25 18:18:07 +02:00
convert_element_ = CreateElement("audioconvert");
GstElement* fftwspectrum = CreateElement("fftwspectrum");
GstElement* moodbar = CreateElement("moodbar");
GstElement* appsink = CreateElement("appsink");
2012-05-29 00:18:36 +02:00
if (!decodebin || !convert_element_ || !fftwspectrum || !moodbar || !appsink) {
2012-05-25 18:18:07 +02:00
pipeline_ = NULL;
emit Finished(false);
return;
2012-05-25 18:18:07 +02:00
}
2012-05-27 17:46:16 +02:00
2012-05-25 18:18:07 +02:00
// Join them together
gst_element_link_many(convert_element_, fftwspectrum, moodbar, appsink, NULL);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
// Set properties
2012-05-29 00:33:37 +02:00
g_object_set(decodebin, "uri", local_filename_.toEncoded().constData(), NULL);
2012-05-25 18:18:07 +02:00
g_object_set(fftwspectrum, "def-size", 2048,
"def-step", 1024,
"hiquality", true, NULL);
g_object_set(moodbar, "height", 1,
"max-width", 1000, NULL);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
// Connect signals
CHECKED_GCONNECT(decodebin, "pad-added", &NewPadCallback, this);
2012-05-25 18:18:07 +02:00
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(pipeline_)), BusCallbackSync, this);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
// Set appsink callbacks
GstAppSinkCallbacks callbacks;
memset(&callbacks, 0, sizeof(callbacks));
callbacks.new_buffer = NewBufferCallback;
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
gst_app_sink_set_callbacks(reinterpret_cast<GstAppSink*>(appsink), &callbacks, this, NULL);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
// Start playing
gst_element_set_state(pipeline_, GST_STATE_PLAYING);
}
void MoodbarPipeline::ReportError(GstMessage* msg) {
GError* error;
gchar* debugs;
gst_message_parse_error(msg, &error, &debugs);
QString message = QString::fromLocal8Bit(error->message);
g_error_free(error);
free(debugs);
qLog(Error) << "Error processing" << local_filename_ << ":" << message;
}
2012-05-29 00:18:36 +02:00
void MoodbarPipeline::NewPadCallback(GstElement*, GstPad* pad, gpointer data) {
2012-05-25 18:18:07 +02:00
MoodbarPipeline* self = reinterpret_cast<MoodbarPipeline*>(data);
GstPad* const audiopad = gst_element_get_static_pad(
self->convert_element_, "sink");
2012-05-25 18:18:07 +02:00
if (GST_PAD_IS_LINKED(audiopad)) {
qLog(Warning) << "audiopad is already linked, unlinking old pad";
gst_pad_unlink(audiopad, GST_PAD_PEER(audiopad));
}
gst_pad_link(pad, audiopad);
gst_object_unref(audiopad);
}
GstFlowReturn MoodbarPipeline::NewBufferCallback(GstAppSink* app_sink, gpointer data) {
MoodbarPipeline* self = reinterpret_cast<MoodbarPipeline*>(data);
2012-05-25 18:18:07 +02:00
GstBuffer* buffer = gst_app_sink_pull_buffer(app_sink);
self->data_.append(reinterpret_cast<const char*>(buffer->data), buffer->size);
gst_buffer_unref(buffer);
return GST_FLOW_OK;
}
GstBusSyncReply MoodbarPipeline::BusCallbackSync(GstBus*, GstMessage* msg, gpointer data) {
MoodbarPipeline* self = reinterpret_cast<MoodbarPipeline*>(data);
switch (GST_MESSAGE_TYPE(msg)) {
case GST_MESSAGE_EOS:
self->Stop(true);
break;
2012-05-25 18:18:07 +02:00
case GST_MESSAGE_ERROR:
self->ReportError(msg);
self->Stop(false);
break;
default:
break;
}
return GST_BUS_PASS;
}
void MoodbarPipeline::Stop(bool success) {
success_ = success;
emit Finished(success);
}
void MoodbarPipeline::Cleanup() {
Q_ASSERT(QThread::currentThread() == thread());
Q_ASSERT(QThread::currentThread() != qApp->thread());
2012-05-25 18:18:07 +02:00
if (pipeline_) {
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(pipeline_)), NULL, NULL);
2012-05-27 17:46:16 +02:00
gst_element_set_state(pipeline_, GST_STATE_NULL);
2012-05-25 18:18:07 +02:00
gst_object_unref(pipeline_);
pipeline_ = NULL;
}
}