kdelibs/kcompactdisc/wmlib/audio/audio_phonon.h
Ivailo Monev a0dbbaabdf generic: rename merged libraries directories for consistency
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-10-29 13:57:28 +02:00

66 lines
1.8 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2006 Alexander Kern <alex.kern@gmx.de>
based on example for Phonon Architecture, Matthias Kretz <kretz@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef __AUDIO_PHONON_H__
#define __AUDIO_PHONON_H__
#include <QByteArray>
#include <QTimer>
#include <QWaitCondition>
#include <QMutex>
#include <Phonon/AbstractMediaStream>
namespace Phonon { class MediaObject; }
class LibWMPcmPlayer : public Phonon::AbstractMediaStream {
Q_OBJECT
public:
LibWMPcmPlayer();
~LibWMPcmPlayer();
QByteArray wavHeader() const;
void setNextBuffer(struct cdda_block *blk);
public slots:
void playBuffer(struct cdda_block *blk);
void pause(void);
void stop(void);
void executeCmd(int cmd);
void stateChanged( Phonon::State newstate, Phonon::State oldstate );
protected:
void reset();
void needData();
signals:
void cmdChanged(int cmd);
void nextBuffer(struct cdda_block *blk);
private:
Phonon::MediaObject* m_media;
unsigned char m_cmd;
struct cdda_block *m_blk;
QWaitCondition m_readyToPlay;
QMutex m_mutex;
};
#endif /* __AUDIO_PHONON_H__ */