| 
									
										
										
										
											2013-04-21 02:17:03 -04:00
										 |  |  | // Copyright 2013 Dolphin Emulator Project
 | 
					
						
							|  |  |  | // Licensed under GPLv2
 | 
					
						
							|  |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef _COREAUDIO_SOUND_STREAM_H
 | 
					
						
							|  |  |  | #define _COREAUDIO_SOUND_STREAM_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-02 02:49:30 +00:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							| 
									
										
										
										
											2009-10-23 17:10:27 +00:00
										 |  |  | #include <AudioUnit/AudioUnit.h>
 | 
					
						
							| 
									
										
										
										
											2011-01-02 02:49:30 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-01 20:45:30 +00:00
										 |  |  | #include "SoundStream.h"
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class CoreAudioSound : public SoundStream | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-02 02:49:30 +00:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | public: | 
					
						
							|  |  |  | 	CoreAudioSound(CMixer *mixer); | 
					
						
							|  |  |  | 	virtual ~CoreAudioSound(); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 	virtual bool Start(); | 
					
						
							| 
									
										
										
										
											2011-01-02 02:49:30 +00:00
										 |  |  | 	virtual void SetVolume(int volume); | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 	virtual void SoundLoop(); | 
					
						
							| 
									
										
										
										
											2010-05-31 05:05:53 +00:00
										 |  |  | 	virtual void Stop(); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 	static bool isValid() { | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-05-31 05:05:53 +00:00
										 |  |  | 	virtual bool usesMixer() const { | 
					
						
							|  |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | 	virtual void Update(); | 
					
						
							| 
									
										
										
										
											2010-05-31 05:05:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-04 02:09:29 +00:00
										 |  |  | private: | 
					
						
							|  |  |  | 	AudioUnit audioUnit; | 
					
						
							| 
									
										
										
										
											2012-12-14 12:15:01 -06:00
										 |  |  |     int m_volume; | 
					
						
							| 
									
										
										
										
											2011-02-02 18:21:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	static OSStatus callback(void *inRefCon, | 
					
						
							|  |  |  | 		AudioUnitRenderActionFlags *ioActionFlags, | 
					
						
							|  |  |  | 		const AudioTimeStamp *inTimeStamp, | 
					
						
							|  |  |  | 		UInt32 inBusNumber, UInt32 inNumberFrames, | 
					
						
							|  |  |  | 		AudioBufferList *ioData); | 
					
						
							| 
									
										
										
										
											2011-01-02 02:49:30 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	CoreAudioSound(CMixer *mixer) : SoundStream(mixer) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-09-24 21:35:06 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |