Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Denis-Courmont <remi@remlab.net>2022-09-16 23:59:02 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-18 19:28:12 +0300
commit7f27ce68822a4ef3bdcc42df8ee07c0fe0a08f28 (patch)
tree5ef8601b1170792ff8a2acbe29920ddbffe100dc /libavcodec/fmtconvert.h
parentfc5aef59bfbc5e90f0397acf441633238af4e4e9 (diff)
lavc/fmtconvert: remove dead int32_to_float
This is no longer used since 46089967722f74e794865a044f5f682f26628802. It also has no implementations other than the plain C one. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/fmtconvert.h')
-rw-r--r--libavcodec/fmtconvert.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/fmtconvert.h b/libavcodec/fmtconvert.h
index a1b17e4f04..b2df7a9629 100644
--- a/libavcodec/fmtconvert.h
+++ b/libavcodec/fmtconvert.h
@@ -37,16 +37,6 @@ typedef struct FmtConvertContext {
*/
void (*int32_to_float_fmul_scalar)(float *dst, const int32_t *src,
float mul, int len);
- /**
- * Convert an array of int32_t to float.
- * @param dst destination array of float.
- * constraints: 32-byte aligned
- * @param src source array of int32_t.
- * constraints: 32-byte aligned
- * @param len number of elements to convert.
- * constraints: multiple of 8
- */
- void (*int32_to_float)(float *dst, const int32_t *src, intptr_t len);
/**
* Convert an array of int32_t to float and multiply by a float value from another array,