summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar st4rk2018-01-24 19:17:54 -0800
committerGravatar bunnei2018-01-24 22:17:54 -0500
commit44eb8402322a47a52f0401f9ef7473bea719e2bf (patch)
treef2bd30601610b3a7650bacb176dda0e0a03cd9f0 /src/common
parentMerge pull request #140 from gdkchan/time_fix (diff)
downloadyuzu-44eb8402322a47a52f0401f9ef7473bea719e2bf.tar.gz
yuzu-44eb8402322a47a52f0401f9ef7473bea719e2bf.tar.xz
yuzu-44eb8402322a47a52f0401f9ef7473bea719e2bf.zip
audout:u OpenAudioOut and IAudioOut (#138)
* Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation * Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation * audout:u OpenAudioOut implementation and IAudioOut cmd 1,2,3,4,5 implementation * using an enum for audio_out_state as well as changing its initialize to member initializer list * Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass * Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass * added missing Audio loggin subclass, minor fixes, clang comment breakline * Solving backend logging conflict * minor fix * Fixed duplicated Service NVDRV in backend.cpp, my bad
Diffstat (limited to 'src/common')
-rw-r--r--src/common/logging/backend.cpp1
-rw-r--r--src/common/logging/log.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 2bd0a6be9..be53be407 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -39,6 +39,7 @@ namespace Log {
39 SUB(Service, DSP) \ 39 SUB(Service, DSP) \
40 SUB(Service, HID) \ 40 SUB(Service, HID) \
41 SUB(Service, NVDRV) \ 41 SUB(Service, NVDRV) \
42 SUB(Service, Audio) \
42 CLS(HW) \ 43 CLS(HW) \
43 SUB(HW, Memory) \ 44 SUB(HW, Memory) \
44 SUB(HW, LCD) \ 45 SUB(HW, LCD) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 3144a0349..09ea7a2c7 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -56,6 +56,7 @@ enum class Class : ClassType {
56 Service_DSP, ///< The DSP (DSP control) service 56 Service_DSP, ///< The DSP (DSP control) service
57 Service_HID, ///< The HID (Human interface device) service 57 Service_HID, ///< The HID (Human interface device) service
58 Service_NVDRV, ///< The NVDRV (Nvidia driver) service 58 Service_NVDRV, ///< The NVDRV (Nvidia driver) service
59 Service_Audio, ///< The Audio (Audio control) service
59 HW, ///< Low-level hardware emulation 60 HW, ///< Low-level hardware emulation
60 HW_Memory, ///< Memory-map and address translation 61 HW_Memory, ///< Memory-map and address translation
61 HW_LCD, ///< LCD register emulation 62 HW_LCD, ///< LCD register emulation