summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/AOSoundStream.cpp
AgeCommit message (Collapse)Author
2016-08-10Use Common::Flag and Common::Event when possibleLéo Lam
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-06-24Reformat all the things. Have fun with merge conflicts.Pierre Bourdon
2015-09-26Common: Remove other Common prefixed headers from Common.hLioncash
2015-05-25Set copyright year to when a file was createdTillmann Karras
2015-05-25Update license headers to GPLv2+Tillmann Karras
2015-05-24SoundStream: Internally construct the mixerLioncash
Instead of creating the mixer externally and then passing it in, it can just be made within the class.
2015-05-10AudioCommon: Migrate threadData to OpenALStream and AOSoundStreamLioncash
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.
2014-09-08AudioCommon: Remove unnecessary usages of mem_fnLioncash
2014-04-01Replace use of the deprecated mem_fun function with mem_fn.lioncash
2014-03-09clang-modernize -use-nullptrTillmann Karras
and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine
2014-02-18Convert all includes to relative paths.Lioncash
2013-12-31Remove unnecessary Src/ foldersJasper St. Pierre