2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-08-16 21:58:07 +00: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, version 2.0.
|
|
|
|
|
|
|
|
// This program 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 General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#ifndef _AOSOUNDSTREAM_H_
|
|
|
|
#define _AOSOUNDSTREAM_H_
|
2008-08-16 21:58:07 +00:00
|
|
|
|
2009-01-29 00:57:55 +00:00
|
|
|
#include "SoundStream.h"
|
|
|
|
|
|
|
|
#if defined(HAVE_AO) && HAVE_AO
|
|
|
|
#include <ao/ao.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "Thread.h"
|
|
|
|
|
|
|
|
class AOSound : public SoundStream
|
2008-08-16 21:58:07 +00:00
|
|
|
{
|
2009-01-29 00:57:55 +00:00
|
|
|
#if defined(HAVE_AO) && HAVE_AO
|
2009-02-20 22:04:52 +00:00
|
|
|
Common::Thread *thread;
|
2009-03-26 09:29:14 +00:00
|
|
|
Common::CriticalSection soundCriticalSection;
|
|
|
|
Common::Event soundSyncEvent;
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
int buf_size;
|
|
|
|
|
|
|
|
ao_device *device;
|
|
|
|
ao_sample_format format;
|
|
|
|
int default_driver;
|
|
|
|
|
|
|
|
short realtimeBuffer[1024 * 1024];
|
2009-01-29 00:57:55 +00:00
|
|
|
|
|
|
|
public:
|
2009-03-26 09:29:14 +00:00
|
|
|
AOSound(CMixer *mixer) : SoundStream(mixer) {}
|
|
|
|
|
2009-03-27 11:06:52 +00:00
|
|
|
virtual ~AOSound();
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
virtual bool Start();
|
|
|
|
|
|
|
|
virtual void SoundLoop();
|
|
|
|
|
|
|
|
virtual void Stop();
|
|
|
|
|
|
|
|
static bool isValid() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool usesMixer() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Update();
|
|
|
|
|
2009-01-29 00:57:55 +00:00
|
|
|
#else
|
|
|
|
public:
|
2009-09-09 21:26:33 +00:00
|
|
|
AOSound(CMixer *mixer) : SoundStream(mixer) {}
|
2009-01-29 00:57:55 +00:00
|
|
|
#endif
|
|
|
|
};
|
2008-08-16 21:58:07 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#endif //_AOSOUNDSTREAM_H_
|