Clementine-audio-player-Mac.../src/engines/gstengine.h

199 lines
6.1 KiB
C
Raw Normal View History

2010-04-06 18:57:02 +02:00
/***************************************************************************
* Copyright (C) 2003-2005 by Mark Kretschmann <markey@web.de> *
* Copyright (C) 2005 by Jakub Stachowski <qbast@go2.pl> *
* Portions Copyright (C) 2006 Paul Cifarelli <paul@cifarelli.net> *
* *
* This program 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 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Steet, Fifth Floor, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef AMAROK_GSTENGINE_H
#define AMAROK_GSTENGINE_H
#include "bufferconsumer.h"
#include "enginebase.h"
#include "core/boundfuturewatcher.h"
#include "core/timeconstants.h"
2010-04-06 18:57:02 +02:00
#include <QFuture>
2010-06-14 21:15:10 +02:00
#include <QHash>
2010-04-06 18:57:02 +02:00
#include <QList>
2010-06-14 21:15:10 +02:00
#include <QString>
2010-04-06 18:57:02 +02:00
#include <QStringList>
2010-06-14 21:15:10 +02:00
#include <QTimerEvent>
2010-04-06 18:57:02 +02:00
#include <gst/gst.h>
#include <boost/shared_ptr.hpp>
2010-04-06 18:57:02 +02:00
class QTimer;
2010-04-06 18:57:02 +02:00
class QTimerEvent;
class GstEnginePipeline;
2010-04-06 18:57:02 +02:00
/**
* @class GstEngine
* @short GStreamer engine plugin
* @author Mark Kretschmann <markey@web.de>
*/
class GstEngine : public Engine::Base, public BufferConsumer {
Q_OBJECT
public:
GstEngine();
~GstEngine();
struct PluginDetails {
QString name;
QString long_name;
QString author;
QString description;
};
typedef QList<PluginDetails> PluginDetailsList;
static const char* kSettingsGroup;
static const char* kAutoSink;
2010-04-12 01:24:03 +02:00
bool Init();
void EnsureInitialised() { initialising_.waitForFinished(); }
2010-04-12 01:24:03 +02:00
2010-06-14 21:15:10 +02:00
int AddBackgroundStream(const QUrl& url);
void StopBackgroundStream(int id);
void SetBackgroundStreamVolume(int id, int volume);
2010-06-14 21:15:10 +02:00
qint64 position_nanosec() const;
qint64 length_nanosec() const;
Engine::State state() const;
const Engine::Scope& scope();
PluginDetailsList GetOutputsList() const { return GetPluginList( "Sink/Audio" ); }
static bool DoesThisSinkSupportChangingTheOutputDeviceToAUserEditableString(const QString& name);
GstElement* CreateElement(const QString& factoryName, GstElement* bin = 0);
// BufferConsumer
void ConsumeBuffer(GstBuffer *buffer, GstEnginePipeline* pipeline);
public slots:
void StartPreloading(const QUrl& url, qint64 beginning_nanosec,
qint64 end_nanosec);
bool Load(const QUrl&, Engine::TrackChangeFlags change,
quint64 beginning_nanosec, qint64 end_nanosec);
bool Play(quint64 offset_nanosec);
2010-04-12 01:24:03 +02:00
void Stop();
void Pause();
void Unpause();
void Seek(quint64 offset_nanosec);
/** Set whether equalizer is enabled */
2010-04-12 01:24:03 +02:00
void SetEqualizerEnabled(bool);
/** Set equalizer preamp and gains, range -100..100. Gains are 10 values. */
2010-04-12 01:24:03 +02:00
void SetEqualizerParameters(int preamp, const QList<int>& bandGains);
void ReloadSettings();
void AddBufferConsumer(BufferConsumer* consumer);
void RemoveBufferConsumer(BufferConsumer* consumer);
protected:
2010-04-12 01:24:03 +02:00
void SetVolumeSW(uint percent);
void timerEvent(QTimerEvent*);
private slots:
void EndOfStreamReached(bool has_next_track);
void HandlePipelineError(const QString& message, int domain, int error_code);
void NewMetaData(const Engine::SimpleMetaBundle& bundle);
2010-04-12 02:20:52 +02:00
void ClearScopeBuffers();
void AddBufferToScope(GstBuffer* buf, GstEnginePipeline* pipeline);
2010-04-11 23:40:26 +02:00
void FadeoutFinished();
void SeekNow();
2010-06-14 21:15:10 +02:00
void BackgroundStreamFinished();
void BackgroundStreamPlayDone();
void PlayDone();
private:
typedef QPair<quint64, GstEnginePipeline*> PlayFutureWatcherArg;
typedef BoundFutureWatcher<GstStateChangeReturn, PlayFutureWatcherArg> PlayFutureWatcher;
2010-04-22 15:49:16 +02:00
static void SetEnv(const char* key, const QString& value);
PluginDetailsList GetPluginList(const QString& classname) const;
void InitialiseGstreamer();
2010-04-12 01:24:03 +02:00
void StartFadeout();
void StartTimers();
void StopTimers();
boost::shared_ptr<GstEnginePipeline> CreatePipeline();
boost::shared_ptr<GstEnginePipeline> CreatePipeline(const QUrl& url, qint64 end_nanosec);
2010-04-12 01:24:03 +02:00
void UpdateScope();
qint64 PruneScope();
2010-04-12 01:03:39 +02:00
2010-07-14 13:43:23 +02:00
int AddBackgroundStream(boost::shared_ptr<GstEnginePipeline> pipeline);
static QUrl FixupUrl(const QUrl& url);
2010-04-12 01:24:03 +02:00
private:
static const int kTimerIntervalNanosec = 1000 * kNsecPerMsec; // 1s
static const int kPreloadGapNanosec = 1000 * kNsecPerMsec; // 1s
static const int kSeekDelayNanosec = 100 * kNsecPerMsec; // 100msec
static const char* kHypnotoadPipeline;
QFuture<void> initialising_;
QString sink_;
QString device_;
boost::shared_ptr<GstEnginePipeline> current_pipeline_;
2010-04-11 23:40:26 +02:00
boost::shared_ptr<GstEnginePipeline> fadeout_pipeline_;
2010-04-21 15:55:30 +02:00
QUrl preloaded_url_;
QList<BufferConsumer*> buffer_consumers_;
GQueue* delayq_;
2010-04-12 01:24:03 +02:00
float current_scope_[kScopeSize];
int current_sample_;
2010-04-12 01:24:03 +02:00
bool equalizer_enabled_;
int equalizer_preamp_;
QList<int> equalizer_gains_;
2010-05-23 15:07:15 +02:00
bool rg_enabled_;
int rg_mode_;
float rg_preamp_;
bool rg_compression_;
qint64 buffer_duration_nanosec_;
mutable bool can_decode_success_;
mutable bool can_decode_last_;
// Hack to stop seeks happening too often
QTimer* seek_timer_;
bool waiting_to_seek_;
quint64 seek_pos_;
int timer_id_;
int next_element_id_;
2010-06-14 21:15:10 +02:00
QHash<int, boost::shared_ptr<GstEnginePipeline> > background_streams_;
2010-04-06 18:57:02 +02:00
};
#endif /*AMAROK_GSTENGINE_H*/