From 369d435d7fe8113cf225bacffbaf17082c6e21c1 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Thu, 11 Oct 2018 13:07:40 -0700 Subject: [PATCH] Allow AudioDestinationNodes to set channel count mode --- audio/src/destination_node.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/audio/src/destination_node.rs b/audio/src/destination_node.rs index 150b6420..7a73d8e5 100644 --- a/audio/src/destination_node.rs +++ b/audio/src/destination_node.rs @@ -38,8 +38,4 @@ impl AudioNodeEngine for DestinationNode { fn output_count(&self) -> u32 { 0 } - - fn set_channel_count_mode(&mut self, _: ChannelCountMode) { - panic!("destination nodes cannot have their mode changed"); - } }