diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-09 16:30:11 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-21 10:13:05 -0400 |
commit | 45add995de6a1458cd8095abb302f9a7cbd3e3ee (patch) | |
tree | eb03b8c695d945c6dfdc7b7b4151ff27322fa6cf /libavcodec/fmtconvert.h | |
parent | ef74e3979930d99830e01a52b0e09f6997938696 (diff) | |
download | ffmpeg-45add995de6a1458cd8095abb302f9a7cbd3e3ee.tar.gz |
fmtconvert: fix and extend documentation for float_interleave()
Diffstat (limited to 'libavcodec/fmtconvert.h')
-rw-r--r-- | libavcodec/fmtconvert.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libavcodec/fmtconvert.h b/libavcodec/fmtconvert.h index d7741135b7..1b534019f1 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); |