From 970f472436d2efefab0d5975756e95b79c8d5cf0 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 27 Feb 2025 14:31:44 -0800 Subject: [PATCH] Cleanup: Remove unused code This is no longer needed. Signed-off-by: Christopher Snowhill --- Audio/Chain/BufferChain.h | 2 -- Audio/Chain/BufferChain.m | 10 ---------- 2 files changed, 12 deletions(-) diff --git a/Audio/Chain/BufferChain.h b/Audio/Chain/BufferChain.h index 340e6a3fa..7b61196ae 100644 --- a/Audio/Chain/BufferChain.h +++ b/Audio/Chain/BufferChain.h @@ -107,6 +107,4 @@ - (double)getPostVisLatency; -- (void)setVolume:(double)v; - @end diff --git a/Audio/Chain/BufferChain.m b/Audio/Chain/BufferChain.m index 3b88b4369..257fc9c53 100644 --- a/Audio/Chain/BufferChain.m +++ b/Audio/Chain/BufferChain.m @@ -359,14 +359,4 @@ return latency; } -- (void)setVolume:(double)v { - AudioPlayer * audioPlayer = controller; - if(audioPlayer) { - OutputNode *outputNode = [audioPlayer output]; - if(outputNode) { - [outputNode setVolume:v]; - } - } -} - @end