Michael M 
							
						 
					 
					
						
						
							
						
						0baddbf9a8 
					 
					
						
						
							
							SoundStream: change Start/Stop to Init/SetRunning/destruct  
						
						 
						
						
						
						
					 
					
						2017-11-19 12:09:54 -08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael M 
							
						 
					 
					
						
						
							
						
						b031d3316c 
					 
					
						
						
							
							SoundStream: rename Clear(mute) to SetRunning(running)  
						
						 
						
						
						
						
					 
					
						2017-10-21 16:28:04 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								LAGonauta 
							
						 
					 
					
						
						
							
						
						9eb209c214 
					 
					
						
						
							
							Removed redundant conversion to float when playing back stereo.  
						
						 
						
						
						
						
					 
					
						2017-06-27 07:10:32 -03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								lfsafady 
							
						 
					 
					
						
						
							
						
						d9d51fe0c4 
					 
					
						
						
							
							Renamed some variables to the current coding standard and some to better  
						
						 
						
						... 
						
						
						
						fit what they really are. 
						
						
					 
					
						2017-06-27 07:08:43 -03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								LAGonauta 
							
						 
					 
					
						
						
							
						
						8fd1af6783 
					 
					
						
						
							
							Changed OpenAL latency setting to really reflect how much time it is.  
						
						 
						
						... 
						
						
						
						Before these changes each value of latency were actually 5ms, with a
minimum latency of ~10 ms. If it was set to 4 ms on the UI, the actual
latency was 10 + 5 * 4 = 30 ms.
Now 30 ms on the UI means 30 ms on the backend. 
						
						
					 
					
						2017-06-27 06:54:28 -03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Maltese 
							
						 
					 
					
						
						
							
						
						c882d52f4a 
					 
					
						
						
							
							OpenAL: load DLL dynamically  
						
						 
						
						
						
						
					 
					
						2017-06-27 00:06:14 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Maltese 
							
						 
					 
					
						
						
							
						
						18e70cdf91 
					 
					
						
						
							
							Only build OpenAL on Windows  
						
						 
						
						
						
						
					 
					
						2017-06-27 00:06:14 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Maltese 
							
						 
					 
					
						
						
							
						
						3bfebf396a 
					 
					
						
						
							
							Fix OpenAL backend on macOS  
						
						 
						
						... 
						
						
						
						OpenALStream was querying the backend for AL_EXT_float32 support (which
suceeds), but AL_FORMAT_STEREO_FLOAT32 was defined incorrectly.
Also changes OpenALStream to query for AL_EXT_MCFORMATS (multichannel
support) rather than hard-coding that it doesn't work on macOS. 
						
						
					 
					
						2017-06-06 15:23:55 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								MerryMage 
							
						 
					 
					
						
						
							
						
						6a4945090c 
					 
					
						
						
							
							OpenALStream: Remove audio stretching  
						
						 
						
						
						
						
					 
					
						2017-04-12 13:15:00 +01:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								LAGonauta 
							
						 
					 
					
						
						
							
						
						332e9bd378 
					 
					
						
						
							
							Added 32-bit fixed point support to OpenAL backend.  
						
						 
						
						... 
						
						
						
						Changed method to detect 32-bit floating point and
32-bit fixed point support. 
						
						
					 
					
						2016-10-27 18:47:13 -02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Léo Lam 
							
						 
					 
					
						
						
							
						
						dca22e08eb 
					 
					
						
						
							
							Use Common::Flag and Common::Event when possible  
						
						 
						
						... 
						
						
						
						Replaces old and simple usages of std::atomic<bool> with Common::Flag
(which was introduced after the initial usage), so it's clear that
the variable is a flag and because Common::Flag is well tested.
This also replaces the ready logic in WiimoteReal with Common::Event
since it was basically just unnecessarily reimplementing Common::Event. 
						
						
					 
					
						2016-08-10 16:08:15 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pierre Bourdon 
							
						 
					 
					
						
						
							
						
						3570c7f03a 
					 
					
						
						
							
							Reformat all the things. Have fun with merge conflicts.  
						
						 
						
						
						
						
					 
					
						2016-06-24 10:43:46 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								LAGonauta 
							
						 
					 
					
						
						
							
						
						b98b55c7be 
					 
					
						
						
							
							Added X-Fi check and convert surround FLOAT to SHORT when it is detected  
						
						 
						
						... 
						
						
						
						Fixed braces, first try fixing mac compilation and removed useless NULL
comparison. 
						
						
					 
					
						2015-09-11 13:22:04 -03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tillmann Karras 
							
						 
					 
					
						
						
							
						
						30ebb2459e 
					 
					
						
						
							
							Set copyright year to when a file was created  
						
						 
						
						
						
						
					 
					
						2015-05-25 13:22:31 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tillmann Karras 
							
						 
					 
					
						
						
							
						
						cefcb0ace9 
					 
					
						
						
							
							Update license headers to GPLv2+  
						
						 
						
						
						
						
					 
					
						2015-05-25 13:22:31 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lioncash 
							
						 
					 
					
						
						
							
						
						07d4dbe657 
					 
					
						
						
							
							AudioCommon: Add missing override specifiers  
						
						 
						
						... 
						
						
						
						Also removes unnecessary virtual keywords. 
						
						
					 
					
						2015-05-24 06:10:03 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lioncash 
							
						 
					 
					
						
						
							
						
						35ee8a1362 
					 
					
						
						
							
							SoundStream: Internally construct the mixer  
						
						 
						
						... 
						
						
						
						Instead of creating the mixer externally and then passing it in, it can just be made within the class. 
						
						
					 
					
						2015-05-24 05:49:41 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lioncash 
							
						 
					 
					
						
						
							
						
						4920dbed13 
					 
					
						
						
							
							AudioCommon: Migrate threadData to OpenALStream and AOSoundStream  
						
						 
						
						... 
						
						
						
						This is only ever used in these two sound streams. Seems silly to have it as a class member. Converted it to an atomic as well. 
						
						
					 
					
						2015-05-10 01:02:25 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								comex 
							
						 
					 
					
						
						
							
						
						aae234c5d7 
					 
					
						
						
							
							Fix name conflict between SoundTouch BOOL and ObjC BOOL.  
						
						 
						
						
						
						
					 
					
						2014-11-25 00:27:13 -05:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lioncash 
							
						 
					 
					
						
						
							
						
						d18d3e1f3e 
					 
					
						
						
							
							Common: Get rid of StdConditionVariable, StdMutex, and StdThread.  
						
						 
						
						... 
						
						
						
						All of the compilers we support have support for these now. 
						
						
					 
					
						2014-08-16 23:33:19 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lioncash 
							
						 
					 
					
						
						
							
						
						47847bc8dd 
					 
					
						
						
							
							AudioCommon: Remove an unnecessary parameter from the OpenAL constructor  
						
						 
						
						... 
						
						
						
						This wouldn't even be saved to anything. 
						
						
					 
					
						2014-08-02 23:48:26 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pierre Bourdon 
							
						 
					 
					
						
						
							
						
						6bdcbad3e4 
					 
					
						
						
							
							Common: Move the Event class to a separate file, and add tests for it. Fix includes everywhere to match this.  
						
						 
						
						
						
						
					 
					
						2014-04-14 10:54:07 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								lioncash 
							
						 
					 
					
						
						
							
						
						aecc8ea666 
					 
					
						
						
							
							Remove usesMixer function from the sound streams.  
						
						 
						
						... 
						
						
						
						This isn't used anywhere in the codebase. Not even the base SoundStream has it as part of its interface. 
						
						
					 
					
						2014-03-18 10:42:07 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								lioncash 
							
						 
					 
					
						
						
							
						
						5e5ab61d0c 
					 
					
						
						
							
							Mark the audio streams as final.  
						
						 
						
						... 
						
						
						
						These aren't intended to be continually extended. 
						
						
					 
					
						2014-03-18 10:37:45 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tillmann Karras 
							
						 
					 
					
						
						
							
						
						d802d39281 
					 
					
						
						
							
							clang-modernize -use-nullptr  
						
						 
						
						... 
						
						
						
						and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine 
						
						
					 
					
						2014-03-09 21:14:26 +01:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tillmann Karras 
							
						 
					 
					
						
						
							
						
						f28116b7da 
					 
					
						
						
							
							clang-modernize -add-override  
						
						 
						
						
						
						
					 
					
						2014-03-09 21:12:01 +01:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lioncash 
							
						 
					 
					
						
						
							
						
						2afe215271 
					 
					
						
						
							
							Convert all includes to relative paths.  
						
						 
						
						
						
						
					 
					
						2014-02-18 02:19:10 -05:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lioncash 
							
						 
					 
					
						
						
							
						
						3fd87a7636 
					 
					
						
						
							
							Second and final pass of clearing out tabs.  
						
						 
						
						
						
						
					 
					
						2014-02-17 02:19:41 -05:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								lioncash 
							
						 
					 
					
						
						
							
						
						d2038049f5 
					 
					
						
						
							
							Replace all include guard ifdefs with "#pragma once"  
						
						 
						
						
						
						
					 
					
						2014-02-10 18:07:16 -05:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jasper St. Pierre 
							
						 
					 
					
						
						
							
						
						34692ab826 
					 
					
						
						
							
							Remove unnecessary Src/ folders  
						
						 
						
						
						
						
					 
					
						2013-12-31 14:03:19 -05:00