FFmpeg
|
#include <fmtconvert.h>
Data Fields | |
void(* | int32_to_float_fmul_scalar )(float *dst, const int32_t *src, float mul, int len) |
Convert an array of int32_t to float and multiply by a float value. More... | |
void(* | int32_to_float )(float *dst, const int32_t *src, intptr_t len) |
Convert an array of int32_t to float. More... | |
void(* | int32_to_float_fmul_array8 )(struct FmtConvertContext *c, float *dst, const int32_t *src, const float *mul, int len) |
Convert an array of int32_t to float and multiply by a float value from another array, stepping along the float array once for each 8 integers. More... | |
Definition at line 28 of file fmtconvert.h.
void(* FmtConvertContext::int32_to_float_fmul_scalar) (float *dst, const int32_t *src, float mul, int len) |
Convert an array of int32_t to float and multiply by a float value.
dst | destination array of float. constraints: 16-byte aligned |
src | source array of int32_t. constraints: 16-byte aligned |
len | number of elements to convert. constraints: multiple of 8 |
Definition at line 38 of file fmtconvert.h.
Convert an array of int32_t to float.
dst | destination array of float. constraints: 32-byte aligned |
src | source array of int32_t. constraints: 32-byte aligned |
len | number of elements to convert. constraints: multiple of 8 |
Definition at line 49 of file fmtconvert.h.
void(* FmtConvertContext::int32_to_float_fmul_array8) (struct FmtConvertContext *c, float *dst, const int32_t *src, const float *mul, int len) |
Convert an array of int32_t to float and multiply by a float value from another array, stepping along the float array once for each 8 integers.
c | pointer to FmtConvertContext. |
dst | destination array of float. constraints: 16-byte aligned |
src | source array of int32_t. constraints: 16-byte aligned |
mul | source array of float multipliers. |
len | number of elements to convert. constraints: multiple of 8 |
Definition at line 63 of file fmtconvert.h.