summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/WASAPIStream.h
AgeCommit message (Collapse)Author
2025-05-01Make overriding explicit and remove redundant virtual specifiers on ↵Dr. Dystopia
overriding destructors - Core & UnitTests
2021-08-08AudioCommon: rename isValid() to IsValid()Tillmann Karras
2021-08-08AudioCommon: make SoundLoop() non-virtual and privateTillmann Karras
2021-07-05treewide: convert GPLv2+ license info to SPDX tagsPierre Bourdon
SPDX standardizes how source code conveys its copyright and licensing information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX tags are adopted in many large projects, including things like the Linux kernel.
2021-01-12AudioCommon/WASAPI: Use std::string_view where applicableSilent
2021-01-12AudioCommon/WASAPI: Simplify thread synchronization model by not detaching ↵Silent
WASAPI handler thread
2021-01-12AudioCommon/WASAPI: Use WRL/WIL whenever possibleSilent
This fixes numerous resource leaks, as not every return path cleaned every created resource Now they are all managed automatically and "commited" to WASAPIStream class fields only after it's certain they initialized properly
2018-05-26AudioCommon: Implement WASAPIspycrab