summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index 49005e46e1..9b0aab372a 100644
--- a/libavcodec/dsputil.h
+++ b/libavcodec/dsputil.h
@@ -382,23 +382,6 @@ typedef struct DSPContext {
*/
void (*butterflies_float)(float *av_restrict v1, float *av_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*/);