/* Copyright (c) 2013-2014 Jeffrey Pfau * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef QGBA_AUDIO_PROCESSOR_SDL #define QGBA_AUDIO_PROCESSOR_SDL #include "AudioProcessor.h" #ifdef BUILD_SDL extern "C" { #include "platform/sdl/sdl-audio.h" } namespace QGBA { class AudioProcessorSDL : public AudioProcessor { Q_OBJECT public: AudioProcessorSDL(QObject* parent = nullptr); ~AudioProcessorSDL(); virtual unsigned sampleRate() const override; public slots: virtual void setInput(mCoreThread* input) override; virtual bool start() override; virtual void pause() override; virtual void setBufferSamples(int samples) override; virtual void inputParametersChanged() override; virtual void requestSampleRate(unsigned) override; private: mSDLAudio m_audio; }; } #endif #endif