From 805d8fb6eba5dfe4a1d4a875769d2f355683e21d Mon Sep 17 00:00:00 2001 From: pkasting Date: Fri, 14 Aug 2015 12:38:02 -0700 Subject: [PATCH] Remove WebRtcIsac_Highpass_float(). This function is unreferenced and not even declared in a header file. Split from https://codereview.webrtc.org/1228793004/ . BUG=none TEST=none Review URL: https://codereview.webrtc.org/1296513002 Cr-Commit-Position: refs/heads/master@{#9716} --- .../codecs/isac/main/source/filter_functions.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/filter_functions.c b/webrtc/modules/audio_coding/codecs/isac/main/source/filter_functions.c index 76a9e7530d..089f26ec03 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/filter_functions.c +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/filter_functions.c @@ -245,8 +245,6 @@ void WebRtcIsac_DecimateAllpass(const double *in, * HP_a = [1, -2*real(p), abs(p)^2]; */ static const double a_coef[2] = { 1.86864659625574, -0.88360000000000}; static const double b_coef[2] = {-1.99524591718270, 0.99600400000000}; -static const float a_coef_float[2] = { 1.86864659625574f, -0.88360000000000f}; -static const float b_coef_float[2] = {-1.99524591718270f, 0.99600400000000f}; /* second order high-pass filter */ void WebRtcIsac_Highpass(const double *in, double *out, double *state, int N) @@ -259,14 +257,3 @@ void WebRtcIsac_Highpass(const double *in, double *out, double *state, int N) state[0] = b_coef[1] * *in++ + a_coef[1] * *out++; } } - -void WebRtcIsac_Highpass_float(const float *in, double *out, double *state, int N) -{ - int k; - - for (k=0; k