summaryrefslogtreecommitdiff
path: root/src/audio_core/renderer/splitter
diff options
context:
space:
mode:
authorGravatar Liam2023-03-11 22:10:38 -0500
committerGravatar Liam2023-03-12 11:33:01 -0400
commit600f325d87e42f856da58c42a5280f098ebb6e8c (patch)
tree75c4fe48af55186a4e420e94a1d7e1bfd92e4ec0 /src/audio_core/renderer/splitter
parentgeneral: use codespell to identify spelling mistakes (diff)
downloadyuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.gz
yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.xz
yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.zip
general: fix spelling mistakes
Diffstat (limited to 'src/audio_core/renderer/splitter')
-rw-r--r--src/audio_core/renderer/splitter/splitter_context.h2
-rw-r--r--src/audio_core/renderer/splitter/splitter_destinations_data.h6
-rw-r--r--src/audio_core/renderer/splitter/splitter_info.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/audio_core/renderer/splitter/splitter_context.h b/src/audio_core/renderer/splitter/splitter_context.h
index cfd092b4f..1a63db1d3 100644
--- a/src/audio_core/renderer/splitter/splitter_context.h
+++ b/src/audio_core/renderer/splitter/splitter_context.h
@@ -55,7 +55,7 @@ public:
55 /** 55 /**
56 * Get the total number of splitter destinations. 56 * Get the total number of splitter destinations.
57 * 57 *
58 * @return Number of destiantions. 58 * @return Number of destinations.
59 */ 59 */
60 u32 GetDataCount() const; 60 u32 GetDataCount() const;
61 61
diff --git a/src/audio_core/renderer/splitter/splitter_destinations_data.h b/src/audio_core/renderer/splitter/splitter_destinations_data.h
index bd3d55748..d55ce0ad3 100644
--- a/src/audio_core/renderer/splitter/splitter_destinations_data.h
+++ b/src/audio_core/renderer/splitter/splitter_destinations_data.h
@@ -87,7 +87,7 @@ public:
87 /** 87 /**
88 * Update this destination. 88 * Update this destination.
89 * 89 *
90 * @param params - Inpout parameters to update the destination. 90 * @param params - Input parameters to update the destination.
91 */ 91 */
92 void Update(const InParameter& params); 92 void Update(const InParameter& params);
93 93
@@ -126,9 +126,9 @@ private:
126 std::array<f32, MaxMixBuffers> prev_mix_volumes{0.0f}; 126 std::array<f32, MaxMixBuffers> prev_mix_volumes{0.0f};
127 /// Next destination in the mix chain 127 /// Next destination in the mix chain
128 SplitterDestinationData* next{}; 128 SplitterDestinationData* next{};
129 /// Is this destiantion in use? 129 /// Is this destination in use?
130 bool in_use{}; 130 bool in_use{};
131 /// Does this destiantion need its volumes updated? 131 /// Does this destination need its volumes updated?
132 bool need_update{}; 132 bool need_update{};
133}; 133};
134 134
diff --git a/src/audio_core/renderer/splitter/splitter_info.h b/src/audio_core/renderer/splitter/splitter_info.h
index d1d75064c..b0ad01fe0 100644
--- a/src/audio_core/renderer/splitter/splitter_info.h
+++ b/src/audio_core/renderer/splitter/splitter_info.h
@@ -49,14 +49,14 @@ public:
49 /** 49 /**
50 * Get the number of destinations in this splitter. 50 * Get the number of destinations in this splitter.
51 * 51 *
52 * @return The number of destiantions. 52 * @return The number of destinations.
53 */ 53 */
54 u32 GetDestinationCount() const; 54 u32 GetDestinationCount() const;
55 55
56 /** 56 /**
57 * Set the number of destinations in this splitter. 57 * Set the number of destinations in this splitter.
58 * 58 *
59 * @param count - The new number of destiantions. 59 * @param count - The new number of destinations.
60 */ 60 */
61 void SetDestinationCount(u32 count); 61 void SetDestinationCount(u32 count);
62 62