diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-09-18 17:43:25 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-09-18 17:43:25 +0000 |
| commit | d80498e562ae70cfe5f0d2400046e6e4db6af260 (patch) | |
| tree | f45e3480c94b6cf1c756b4f35a5c42eead8fabc4 /lib/soundcore.h | |
| parent | 41c154d03342aa03cc3932ca032eba387c7a2bff (diff) | |
| download | qmmp-d80498e562ae70cfe5f0d2400046e6e4db6af260.tar.gz qmmp-d80498e562ae70cfe5f0d2400046e6e4db6af260.tar.bz2 qmmp-d80498e562ae70cfe5f0d2400046e6e4db6af260.zip | |
improved stream support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@157 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'lib/soundcore.h')
| -rw-r--r-- | lib/soundcore.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/soundcore.h b/lib/soundcore.h index 7e88942f7..c1c3a3be5 100644 --- a/lib/soundcore.h +++ b/lib/soundcore.h @@ -20,7 +20,9 @@ #ifndef SOUNDCORE_H #define SOUNDCORE_H + #include <QObject> +#include <QString> #include "decoder.h" #include "output.h" @@ -158,6 +160,9 @@ signals: */ void titleChanged(const QString& title); +private slots: + bool decode(); + private: Decoder* m_decoder; Output* m_output; @@ -170,6 +175,7 @@ private: int m_preamp; int m_bands[10]; Visualization *m_vis; + QString m_source; }; #endif |
