diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-20 21:57:35 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-20 21:57:35 -0800 |
commit | 8a4f26206d7914eaf2903954ce97cb7686933382 (patch) | |
tree | 5e1880e5e21dcfc2386c3a28054a8e0c009d10d4 /libavcodec/dsputil.h | |
parent | c9311f3e46649786556b6c8ba742129cdfa16f2e (diff) | |
download | ffmpeg-8a4f26206d7914eaf2903954ce97cb7686933382.tar.gz |
dsputil: remove butterflies_float_interleave.
The function is unused.
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 8924e46ffe..6121c9d7f0 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -364,23 +364,6 @@ typedef struct DSPContext { */ void (*butterflies_float)(float *restrict v1, float *restrict v2, int len); - /** - * Calculate the sum and difference of two vectors of floats and interleave - * results into a separate output vector of floats, with each sum - * positioned before the corresponding difference. - * - * @param dst output vector - * constraints: 16-byte aligned - * @param src0 first input vector - * constraints: 32-byte aligned - * @param src1 second input vector - * constraints: 32-byte aligned - * @param len number of elements in the input - * constraints: multiple of 8 - */ - void (*butterflies_float_interleave)(float *dst, const float *src0, - const float *src1, int len); - /* (I)DCT */ void (*fdct)(DCTELEM *block/* align 16*/); void (*fdct248)(DCTELEM *block/* align 16*/); |