strawberry-audio-player-win.../src/engine/xineengine.h

162 lines
4.0 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/***************************************************************************
* Copyright (C) 2017-2018 Jonas Kvinge <jonas@jkvinge.net> *
* Copyright (C) 2005 Christophe Thommeret <hftom@free.fr> *
* (C) 2005 Ian Monroe <ian@monroe.nu> *
* (C) 2005-2006 Mark Kretschmann <markey@web.de> *
* (C) 2004-2005 Max Howell <max.howell@methylblue.com> *
* (C) 2003-2004 J. Kofler <kaffeine@gmx.net> *
2018-02-27 18:06:05 +01:00
* *
* 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. *
* *
***************************************************************************/
#ifndef XINEENGINE_H
#define XINEENGINE_H
2018-02-27 18:06:05 +01:00
#include "config.h"
2019-05-27 21:56:07 +02:00
#ifndef XINE_ENGINE_INTERNAL
# define XINE_ENGINE_INTERNAL
#endif
#include <memory>
#include <stdint.h>
#include <sys/types.h>
#include <xine.h>
#include <QtGlobal>
#include <QObject>
#include <QMutex>
2018-02-27 18:06:05 +01:00
#include <QThread>
#include <QList>
2020-02-09 02:29:35 +01:00
#include <QVariant>
#include <QString>
#include <QUrl>
2018-02-27 18:06:05 +01:00
#include "engine_fwd.h"
#include "enginebase.h"
2018-02-27 18:06:05 +01:00
class TaskManager;
class PruneScopeThread;
2018-02-27 18:06:05 +01:00
class XineEngine : public Engine::Base {
Q_OBJECT
2018-07-01 01:29:52 +02:00
public:
2020-04-07 16:49:15 +02:00
explicit XineEngine(TaskManager *task_manager);
~XineEngine();
2018-02-27 18:06:05 +01:00
bool Init();
Engine::State state() const;
bool Load(const QUrl &stream_url, const QUrl &original_url, Engine::TrackChangeFlags change, bool force_stop_at_end, quint64 beginning_nanosec, qint64 end_nanosec);
bool Play(quint64 offset_nanosec);
void Stop(bool stop_after = false);
void Pause();
void Unpause();
void Seek(quint64 offset_nanosec);
void SetVolumeSW(uint );
2018-02-27 18:06:05 +01:00
qint64 position_nanosec() const;
qint64 length_nanosec() const;
2018-02-27 18:06:05 +01:00
2019-05-28 18:37:51 +02:00
#ifdef XINE_ANALYZER
const Engine::Scope& scope(int chunk_length);
2019-05-28 18:37:51 +02:00
#endif
2018-02-27 18:06:05 +01:00
OutputDetailsList GetOutputsList() const;
2018-07-01 01:29:52 +02:00
bool ValidOutput(const QString &output);
QString DefaultOutput() { return "auto"; }
bool CustomDeviceSupport(const QString &output);
bool ALSADeviceSupport(const QString &output);
2018-02-27 18:06:05 +01:00
void ReloadSettings();
2018-02-27 18:06:05 +01:00
bool CanDecode(const QUrl &);
2018-02-27 18:06:05 +01:00
void SetEqualizerEnabled(bool enabled);
void SetEqualizerParameters(int preamp, const QList<int>&);
2018-02-27 18:06:05 +01:00
// Simple accessors
2018-02-27 18:06:05 +01:00
xine_stream_t *stream() { return stream_; }
float preamp() { return preamp_; }
2018-02-27 18:06:05 +01:00
2018-07-01 01:29:52 +02:00
private:
static const char *kAutoOutput;
2018-02-27 18:06:05 +01:00
2018-07-01 01:29:52 +02:00
QString current_output_;
QVariant current_device_;
xine_t *xine_;
xine_audio_port_t *audioport_;
2018-10-30 23:40:41 +01:00
xine_stream_t *stream_;
xine_event_queue_t *eventqueue_;
2019-05-28 18:37:51 +02:00
#ifdef XINE_ANALYZER
xine_post_t *post_;
std::unique_ptr<PruneScopeThread> prune_;
2019-05-28 18:37:51 +02:00
#endif
float preamp_;
2018-02-27 18:06:05 +01:00
QUrl stream_url_;
2018-09-22 23:13:56 +02:00
QUrl original_url_;
2018-10-30 23:40:41 +01:00
bool have_metadata_;
2018-02-27 18:06:05 +01:00
uint log_buffer_count_ = 0;
uint log_scope_call_count_ = 1; // Prevent divideByZero
uint log_no_suitable_buffer_ = 0;
2018-02-27 18:06:05 +01:00
int int_preamp_;
QMutex init_mutex_;
int64_t current_vpts_;
QList<int> equalizer_gains_;
2018-02-27 18:06:05 +01:00
mutable Engine::SimpleMetaBundle current_bundle_;
2018-02-27 18:06:05 +01:00
2018-07-01 01:29:52 +02:00
void SetEnvironment();
void Cleanup();
void SetDevice();
2018-10-30 23:40:41 +01:00
bool OpenAudioDriver();
void CloseAudioDriver();
bool CreateStream();
void CloseStream();
bool EnsureStream();
2018-10-02 00:38:52 +02:00
2018-07-01 01:29:52 +02:00
uint length() const;
uint position() const;
2018-10-02 00:38:52 +02:00
2018-07-01 01:29:52 +02:00
static void XineEventListener(void*, const xine_event_t*);
2018-10-30 23:40:41 +01:00
void DetermineAndShowErrorMessage();
Engine::SimpleMetaBundle FetchMetaData() const;
2018-07-01 01:29:52 +02:00
PluginDetailsList GetPluginList() const;
2018-02-27 18:06:05 +01:00
2019-05-28 18:37:51 +02:00
#ifdef XINE_ANALYZER
private slots:
void PruneScope();
2019-05-28 18:37:51 +02:00
#endif
2018-02-27 18:06:05 +01:00
signals:
void InfoMessage(const QString&);
2018-02-27 18:06:05 +01:00
};
2019-05-28 18:37:51 +02:00
#ifdef XINE_ANALYZER
2018-02-27 18:06:05 +01:00
class PruneScopeThread : public QThread {
public:
PruneScopeThread(XineEngine *parent);
protected:
void run();
2018-02-27 18:06:05 +01:00
private:
XineEngine *engine_;
2018-02-27 18:06:05 +01:00
};
2019-05-28 18:37:51 +02:00
#endif
2018-02-27 18:06:05 +01:00
#endif