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

78 lines
2.0 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/>.
*/
#ifndef MOODBARPIPELINE_H
#define MOODBARPIPELINE_H
#include <gst/app/gstappsink.h>
2020-09-18 16:15:19 +02:00
#include <gst/gst.h>
2012-05-25 18:18:07 +02:00
2020-09-18 16:15:19 +02:00
#include <QObject>
#include <QUrl>
#include <memory>
class MoodbarBuilder;
2012-05-25 18:18:07 +02:00
// Creates moodbar data for a single local music file.
class MoodbarPipeline : public QObject {
Q_OBJECT
2012-05-29 00:18:36 +02:00
public:
2012-05-29 00:33:37 +02:00
MoodbarPipeline(const QUrl& local_filename);
2012-05-25 18:18:07 +02:00
~MoodbarPipeline();
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
static bool IsAvailable();
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
bool success() const { return success_; }
const QByteArray& data() const { return data_; }
public slots:
void Start();
signals:
2012-05-25 18:18:07 +02:00
void Finished(bool success);
2012-05-29 00:18:36 +02:00
private:
2012-05-25 18:18:07 +02:00
GstElement* CreateElement(const QString& factory_name);
2012-05-29 00:18:36 +02:00
2012-05-25 18:18:07 +02:00
void ReportError(GstMessage* message);
void Stop(bool success);
void Cleanup();
2012-05-29 00:18:36 +02:00
static void NewPadCallback(GstElement*, GstPad* pad, gpointer data);
2012-05-25 18:18:07 +02:00
static GstFlowReturn NewBufferCallback(GstAppSink* app_sink, gpointer self);
static gboolean BusCallback(GstBus*, GstMessage* msg, gpointer data);
static GstBusSyncReply BusCallbackSync(GstBus*, GstMessage* msg,
gpointer data);
2012-05-29 00:18:36 +02:00
private:
2012-05-25 18:18:07 +02:00
static bool sIsAvailable;
static const int kBands;
2012-05-29 00:18:36 +02:00
2012-05-29 00:33:37 +02:00
QUrl local_filename_;
2012-05-25 18:18:07 +02:00
GstElement* pipeline_;
GstElement* convert_element_;
2012-05-29 00:18:36 +02:00
std::unique_ptr<MoodbarBuilder> builder_;
2012-05-25 18:18:07 +02:00
bool success_;
bool running_;
2012-05-25 18:18:07 +02:00
QByteArray data_;
};
#endif // MOODBARPIPELINE_H