Chris@19: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@0: Chris@0: /* Chris@21: Sonic Visualiser Chris@21: An audio file viewer and annotation editor. Chris@21: Centre for Digital Music, Queen Mary, University of London. Chris@21: This file copyright 2006 Chris Cannam. Chris@0: Chris@21: This program is free software; you can redistribute it and/or Chris@21: modify it under the terms of the GNU General Public License as Chris@21: published by the Free Software Foundation; either version 2 of the Chris@21: License, or (at your option) any later version. See the file Chris@21: COPYING included with this distribution for more information. Chris@0: */ Chris@0: Chris@0: #ifndef _AUDIO_CALLBACK_PLAY_TARGET_H_ Chris@0: #define _AUDIO_CALLBACK_PLAY_TARGET_H_ Chris@0: Chris@0: #include Chris@0: Chris@0: class AudioCallbackPlaySource; Chris@0: Chris@0: class AudioCallbackPlayTarget : public QObject Chris@0: { Chris@0: Q_OBJECT Chris@0: Chris@0: public: Chris@0: AudioCallbackPlayTarget(AudioCallbackPlaySource *source); Chris@0: virtual ~AudioCallbackPlayTarget(); Chris@0: Chris@0: virtual bool isOK() const = 0; Chris@0: Chris@0: float getOutputGain() const { Chris@0: return m_outputGain; Chris@0: } Chris@0: Chris@0: public slots: Chris@0: /** Chris@0: * Set the playback gain (0.0 = silence, 1.0 = levels unmodified) Chris@0: */ Chris@0: virtual void setOutputGain(float gain); Chris@0: Chris@1: /** Chris@1: * The main source model (providing the playback sample rate) has Chris@1: * been changed. The target should query the source's sample Chris@1: * rate, set its output sample rate accordingly, and call back on Chris@1: * the source's setTargetSampleRate to indicate what sample rate Chris@1: * it succeeded in setting at the output. If this differs from Chris@1: * the model rate, the source will resample. Chris@1: */ Chris@0: virtual void sourceModelReplaced() = 0; Chris@0: Chris@0: protected: Chris@0: AudioCallbackPlaySource *m_source; Chris@0: float m_outputGain; Chris@0: }; Chris@0: Chris@0: #endif Chris@0: