summaryrefslogtreecommitdiff
path: root/silk/resampler_private.h
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2011-09-28 02:26:45 -0400
committerGregory Maxwell <greg@xiph.org>2011-09-28 02:26:45 -0400
commit96739ad35e57706a69b9198b4862a5814f8e98bd (patch)
tree6959a35a6ccd7c58906968369649449384b99a39 /silk/resampler_private.h
parent5d48dbd3117cda1413b9677f28bc32127b78c7f5 (diff)
downloadopus-96739ad35e57706a69b9198b4862a5814f8e98bd.tar.gz
Eliminate function pointers from the resampler.
Diffstat (limited to 'silk/resampler_private.h')
-rw-r--r--silk/resampler_private.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/silk/resampler_private.h b/silk/resampler_private.h
index de4adcaa..9273637e 100644
--- a/silk/resampler_private.h
+++ b/silk/resampler_private.h
@@ -79,22 +79,6 @@ void silk_resampler_private_up2_HQ(
opus_int32 len /* I: Number of input samples */
);
-/* Upsample 4x, low quality */
-void silk_resampler_private_up4(
- opus_int32 *S, /* I/O: State vector [ 2 ] */
- opus_int16 *out, /* O: Output signal [ 4 * len ] */
- const opus_int16 *in, /* I: Input signal [ len ] */
- opus_int32 len /* I: Number of input samples */
-);
-
-/* Downsample 4x, low quality */
-void silk_resampler_private_down4(
- opus_int32 *S, /* I/O: State vector [ 2 ] */
- opus_int16 *out, /* O: Output signal [ floor(len/2) ] */
- const opus_int16 *in, /* I: Input signal [ len ] */
- opus_int32 inLen /* I: Number of input samples */
-);
-
/* Second order AR filter */
void silk_resampler_private_AR2(
opus_int32 S[], /* I/O: State vector [ 2 ] */