summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink_context.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-07-08 18:09:21 +0200
committerGitHub <noreply@github.com>2021-07-08 18:09:21 +0200
commit91a4a924b13b50f5b86fac732575c22e40d21891 (patch)
tree6511301bcbebc5b9ed6c9a1c64b19b3a8b2179dd /src/audio_core/sink_context.h
parentMerge pull request #6567 from Kelebek1/Audio2 (diff)
parentaudio_core: Preserve front channel volume after 6 to 2 downmix (diff)
downloadyuzu-91a4a924b13b50f5b86fac732575c22e40d21891.tar
yuzu-91a4a924b13b50f5b86fac732575c22e40d21891.tar.gz
yuzu-91a4a924b13b50f5b86fac732575c22e40d21891.tar.bz2
yuzu-91a4a924b13b50f5b86fac732575c22e40d21891.tar.lz
yuzu-91a4a924b13b50f5b86fac732575c22e40d21891.tar.xz
yuzu-91a4a924b13b50f5b86fac732575c22e40d21891.tar.zst
yuzu-91a4a924b13b50f5b86fac732575c22e40d21891.zip
Diffstat (limited to 'src/audio_core/sink_context.h')
-rw-r--r--src/audio_core/sink_context.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/audio_core/sink_context.h b/src/audio_core/sink_context.h
index 9e2b69785..254961fe2 100644
--- a/src/audio_core/sink_context.h
+++ b/src/audio_core/sink_context.h
@@ -84,7 +84,6 @@ public:
[[nodiscard]] bool InUse() const;
[[nodiscard]] std::vector<u8> OutputBuffers() const;
- [[nodiscard]] bool HasDownMixingCoefficients() const;
[[nodiscard]] const DownmixCoefficients& GetDownmixCoefficients() const;
private:
@@ -92,7 +91,6 @@ private:
s32 use_count{};
std::array<u8, AudioCommon::MAX_CHANNEL_COUNT> buffers{};
std::size_t sink_count{};
- bool has_downmix_coefs{false};
DownmixCoefficients downmix_coefficients{};
};
} // namespace AudioCore