From c13cacbb39fbd91c1d266810e9ce8b0bf3f3edf1 Mon Sep 17 00:00:00 2001 From: Henrik Lundin Date: Wed, 27 May 2015 09:23:48 +0200 Subject: [PATCH] Remove an unused method in NetEq::Expand TBR=ivoc@webrtc.org Review URL: https://webrtc-codereview.appspot.com/53549004 Cr-Commit-Position: refs/heads/master@{#9292} --- webrtc/modules/audio_coding/neteq/expand.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/webrtc/modules/audio_coding/neteq/expand.h b/webrtc/modules/audio_coding/neteq/expand.h index 674813fc1c..5679ec1cc6 100644 --- a/webrtc/modules/audio_coding/neteq/expand.h +++ b/webrtc/modules/audio_coding/neteq/expand.h @@ -54,12 +54,6 @@ class Expand { // a period of expands. virtual void SetParametersForMergeAfterExpand(); - // Sets the mute factor for |channel| to |value|. - void SetMuteFactor(int16_t value, size_t channel) { - assert(channel < num_channels_); - channel_parameters_[channel].mute_factor = value; - } - // Returns the mute factor for |channel|. int16_t MuteFactor(size_t channel) { assert(channel < num_channels_);