summaryrefslogtreecommitdiff
path: root/libavcodec/acelp_filters.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-08-21 23:22:11 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-08-21 23:22:11 +0000
commitcd523888f304d297bb7dec5d358d0ee92576cc44 (patch)
treec25080840a22b7591e68705b5e0283db2479cc8c /libavcodec/acelp_filters.h
parent5038ecb1f17099ad9dc1d1e79516d9f6550e1ebd (diff)
Remove ff_acelp_weighted_filter() which is just a function wrapping a 1
line loop. Originally committed as revision 14895 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/acelp_filters.h')
-rw-r--r--libavcodec/acelp_filters.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/libavcodec/acelp_filters.h b/libavcodec/acelp_filters.h
index 324be3b63d..9c46afa358 100644
--- a/libavcodec/acelp_filters.h
+++ b/libavcodec/acelp_filters.h
@@ -104,21 +104,6 @@ int ff_acelp_lp_synthesis_filter(
int stop_on_overflow,
int rounder);
-/**
- * Calculates coefficients of weighted A(z/weight) filter.
- * @param out [out] weighted A(z/weight) result
- * filter (-0x8000 <= (3.12) < 0x8000)
- * @param in source filter (-0x8000 <= (3.12) < 0x8000)
- * @param weight_pow array containing weight^i (-0x8000 <= (0.15) < 0x8000)
- * @param filter_length filter length (11 for 10th order LP filter)
- *
- * out[i]=weight_pow[i]*in[i] , i=0..9
- */
-void ff_acelp_weighted_filter(
- int16_t *out,
- const int16_t* in,
- const int16_t *weight_pow,
- int filter_length);
/**
* high-pass filtering and upscaling (4.2.5 of G.729).