| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 01:14:35 -04:00
										 |  |  | #include <thread>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "AudioCommon/SoundStream.h"
 | 
					
						
							| 
									
										
										
										
											2014-04-14 01:15:23 +02:00
										 |  |  | #include "Common/Event.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Core/Core.h"
 | 
					
						
							|  |  |  | #include "Core/HW/AudioInterface.h"
 | 
					
						
							|  |  |  | #include "Core/HW/SystemTimers.h"
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined HAVE_OPENAL && HAVE_OPENAL
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-01-10 07:43:59 +11:00
										 |  |  | #include <OpenAL/include/al.h>
 | 
					
						
							|  |  |  | #include <OpenAL/include/alc.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:03:09 +11:00
										 |  |  | #include <OpenAL/include/alext.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-08 12:35:43 +00:00
										 |  |  | #elif defined __APPLE__
 | 
					
						
							|  |  |  | #include <OpenAL/al.h>
 | 
					
						
							|  |  |  | #include <OpenAL/alc.h>
 | 
					
						
							| 
									
										
										
										
											2010-07-22 03:29:35 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-01-31 23:46:50 +00:00
										 |  |  | #include <AL/al.h>
 | 
					
						
							|  |  |  | #include <AL/alc.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:03:09 +11:00
										 |  |  | #include <AL/alext.h>
 | 
					
						
							| 
									
										
										
										
											2010-06-01 22:23:16 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-15 19:35:32 -05:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							|  |  |  | // Avoid conflict with objc.h (on Windows, ST uses the system BOOL type, so this doesn't work)
 | 
					
						
							|  |  |  | #define BOOL SoundTouch_BOOL
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-09 10:26:12 -06:00
										 |  |  | #include <soundtouch/STTypes.h>
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include <soundtouch/SoundTouch.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-09 22:57:32 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-15 19:35:32 -05:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							|  |  |  | #undef BOOL
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #define SFX_MAX_SOURCE 1
 | 
					
						
							|  |  |  | #define OAL_MAX_BUFFERS 32
 | 
					
						
							|  |  |  | #define OAL_MAX_SAMPLES 256
 | 
					
						
							|  |  |  | #define STEREO_CHANNELS 2
 | 
					
						
							|  |  |  | #define SURROUND_CHANNELS 6  // number of channels in surround mode
 | 
					
						
							|  |  |  | #define SIZE_SHORT 2
 | 
					
						
							| 
									
										
										
										
											2016-10-27 18:47:13 -02:00
										 |  |  | #define SIZE_INT32 4
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #define SIZE_FLOAT 4  // size of a float in bytes
 | 
					
						
							|  |  |  | #define FRAME_STEREO_SHORT STEREO_CHANNELS* SIZE_SHORT
 | 
					
						
							|  |  |  | #define FRAME_STEREO_FLOAT STEREO_CHANNELS* SIZE_FLOAT
 | 
					
						
							| 
									
										
										
										
											2016-10-27 18:47:13 -02:00
										 |  |  | #define FRAME_STEREO_INT32 STEREO_CHANNELS* SIZE_INT32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #define FRAME_SURROUND_FLOAT SURROUND_CHANNELS* SIZE_FLOAT
 | 
					
						
							|  |  |  | #define FRAME_SURROUND_SHORT SURROUND_CHANNELS* SIZE_SHORT
 | 
					
						
							| 
									
										
										
										
											2016-10-27 18:47:13 -02:00
										 |  |  | #define FRAME_SURROUND_INT32 SURROUND_CHANNELS* SIZE_INT32
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(__APPLE__)
 | 
					
						
							|  |  |  | // OS X does not have the alext AL_FORMAT_STEREO_FLOAT32, AL_FORMAT_STEREO32,
 | 
					
						
							|  |  |  | // AL_FORMAT_51CHN32 and AL_FORMAT_51CHN16 yet.
 | 
					
						
							|  |  |  | #define AL_FORMAT_STEREO_FLOAT32 0
 | 
					
						
							|  |  |  | #define AL_FORMAT_STEREO32 0
 | 
					
						
							|  |  |  | #define AL_FORMAT_51CHN32 0
 | 
					
						
							|  |  |  | #define AL_FORMAT_51CHN16 0
 | 
					
						
							|  |  |  | #elif defined(_WIN32)
 | 
					
						
							|  |  |  | // Only X-Fi on Windows supports the alext AL_FORMAT_STEREO32 alext for now,
 | 
					
						
							|  |  |  | // but it is not documented or in "OpenAL/include/al.h".
 | 
					
						
							|  |  |  | #define AL_FORMAT_STEREO32 0x1203
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define AL_FORMAT_STEREO32 0
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 10:37:45 -04:00
										 |  |  | class OpenALStream final : public SoundStream | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined HAVE_OPENAL && HAVE_OPENAL
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   OpenALStream() : uiSource(0) {} | 
					
						
							|  |  |  |   bool Start() override; | 
					
						
							|  |  |  |   void SoundLoop() override; | 
					
						
							|  |  |  |   void SetVolume(int volume) override; | 
					
						
							|  |  |  |   void Stop() override; | 
					
						
							|  |  |  |   void Clear(bool mute) override; | 
					
						
							|  |  |  |   void Update() override; | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   static bool isValid() { return true; } | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::thread thread; | 
					
						
							| 
									
										
										
										
											2016-08-05 16:04:39 +02:00
										 |  |  |   Common::Flag m_run_thread; | 
					
						
							| 
									
										
										
										
											2015-05-09 23:48:22 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   Common::Event soundSyncEvent; | 
					
						
							| 
									
										
										
										
											2013-01-09 22:57:32 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   short realtimeBuffer[OAL_MAX_SAMPLES * STEREO_CHANNELS]; | 
					
						
							|  |  |  |   soundtouch::SAMPLETYPE sampleBuffer[OAL_MAX_SAMPLES * SURROUND_CHANNELS * OAL_MAX_BUFFERS]; | 
					
						
							|  |  |  |   ALuint uiBuffers[OAL_MAX_BUFFERS]; | 
					
						
							|  |  |  |   ALuint uiSource; | 
					
						
							|  |  |  |   ALfloat fVolume; | 
					
						
							| 
									
										
										
										
											2013-01-13 00:05:30 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   u8 numBuffers; | 
					
						
							|  |  |  | #endif  // HAVE_OPENAL
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | }; |