X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Ffmtconvert.h;h=c0584753cd12ffcfd07612b689f28bd9203a1955;hb=82a1d575757d5bc9b0b218fe89c77f8de06a7d39;hp=825422bed6bf78f3a8992ac1b7f9882053844080;hpb=3c54e7ed4f42d8ed5aece9484190b5294e272c36;p=ffmpeg diff --git a/libavcodec/fmtconvert.h b/libavcodec/fmtconvert.h index 825422bed6b..c0584753cd1 100644 --- a/libavcodec/fmtconvert.h +++ b/libavcodec/fmtconvert.h @@ -70,7 +70,15 @@ typedef struct FmtConvertContext { long len, int channels); /** - * Convert an array of interleaved float to multiple arrays of float. + * Convert multiple arrays of float to an array of interleaved float. + * + * @param dst destination array of interleaved float. + * constraints: 16-byte aligned + * @param src source array of float arrays, one for each channel. + * constraints: 16-byte aligned + * @param len number of elements to convert. + * constraints: multiple of 8 + * @param channels number of channels */ void (*float_interleave)(float *dst, const float **src, unsigned int len, int channels);