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.c | |
parent | c9311f3e46649786556b6c8ba742129cdfa16f2e (diff) | |
download | ffmpeg-8a4f26206d7914eaf2903954ce97cb7686933382.tar.gz |
dsputil: remove butterflies_float_interleave.
The function is unused.
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index d1bc2c9c04..d0544a4c7a 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2377,18 +2377,6 @@ static void butterflies_float_c(float *restrict v1, float *restrict v2, } } -static void butterflies_float_interleave_c(float *dst, const float *src0, - const float *src1, int len) -{ - int i; - for (i = 0; i < len; i++) { - float f1 = src0[i]; - float f2 = src1[i]; - dst[2*i ] = f1 + f2; - dst[2*i + 1] = f1 - f2; - } -} - float ff_scalarproduct_float_c(const float *v1, const float *v2, int len) { float p = 0.0; @@ -2823,7 +2811,6 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx) c->vector_clip_int32 = vector_clip_int32_c; c->scalarproduct_float = ff_scalarproduct_float_c; c->butterflies_float = butterflies_float_c; - c->butterflies_float_interleave = butterflies_float_interleave_c; c->shrink[0]= av_image_copy_plane; c->shrink[1]= ff_shrink22; |