2013-04-18 06:09:55 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-08-17 00:58:07 +03:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2008-08-17 00:58:07 +03:00
|
|
|
|
2014-08-14 08:14:35 +03:00
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-04-14 02:15:23 +03:00
|
|
|
#include "Common/Event.h"
|
2014-09-19 07:17:41 +03:00
|
|
|
#include "Common/Thread.h"
|
2009-01-29 02:57:55 +02:00
|
|
|
|
|
|
|
#if defined(HAVE_AO) && HAVE_AO
|
|
|
|
#include <ao/ao.h>
|
|
|
|
#endif
|
|
|
|
|
2014-03-18 16:37:45 +02:00
|
|
|
class AOSound final : public SoundStream
|
2008-08-17 00:58:07 +03:00
|
|
|
{
|
2009-01-29 02:57:55 +02:00
|
|
|
#if defined(HAVE_AO) && HAVE_AO
|
2011-01-27 22:47:58 +02:00
|
|
|
std::thread thread;
|
2011-03-05 08:11:26 +02:00
|
|
|
std::mutex soundCriticalSection;
|
2009-03-26 11:29:14 +02:00
|
|
|
Common::Event soundSyncEvent;
|
2009-02-21 00:04:52 +02:00
|
|
|
|
|
|
|
int buf_size;
|
|
|
|
|
|
|
|
ao_device *device;
|
|
|
|
ao_sample_format format;
|
|
|
|
int default_driver;
|
|
|
|
|
|
|
|
short realtimeBuffer[1024 * 1024];
|
2009-01-29 02:57:55 +02:00
|
|
|
|
|
|
|
public:
|
2009-03-26 11:29:14 +02:00
|
|
|
AOSound(CMixer *mixer) : SoundStream(mixer) {}
|
|
|
|
|
2009-03-27 13:06:52 +02:00
|
|
|
virtual ~AOSound();
|
2013-03-20 03:51:12 +02:00
|
|
|
|
2014-03-08 02:54:44 +02:00
|
|
|
virtual bool Start() override;
|
2013-03-20 03:51:12 +02:00
|
|
|
|
2014-03-08 02:54:44 +02:00
|
|
|
virtual void SoundLoop() override;
|
2013-03-20 03:51:12 +02:00
|
|
|
|
2014-03-08 02:54:44 +02:00
|
|
|
virtual void Stop() override;
|
2013-03-20 03:51:12 +02:00
|
|
|
|
2014-08-30 23:29:15 +03:00
|
|
|
static bool isValid()
|
|
|
|
{
|
2009-02-21 00:04:52 +02:00
|
|
|
return true;
|
|
|
|
}
|
2013-03-20 03:51:12 +02:00
|
|
|
|
2014-03-08 02:54:44 +02:00
|
|
|
virtual void Update() override;
|
2009-02-21 00:04:52 +02:00
|
|
|
|
2009-01-29 02:57:55 +02:00
|
|
|
#else
|
|
|
|
public:
|
2009-09-10 00:26:33 +03:00
|
|
|
AOSound(CMixer *mixer) : SoundStream(mixer) {}
|
2009-01-29 02:57:55 +02:00
|
|
|
#endif
|
|
|
|
};
|