Mercurial > libavcodec.hg
changeset 7232:cc55dd004819 libavcodec
Monkey's Audio decoder vector functions work on input with length
a multiple of 16. Reflect that fact in the documentation for them.
author | kostya |
---|---|
date | Thu, 10 Jul 2008 06:15:13 +0000 |
parents | 21f5d934ccbd |
children | 238a3511f183 |
files | dsputil.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/dsputil.h Thu Jul 10 03:01:39 2008 +0000 +++ b/dsputil.h Thu Jul 10 06:15:13 2008 +0000 @@ -454,17 +454,17 @@ /* ape functions */ /** * Add contents of the second vector to the first one. - * @param len length of vectors, should be multiple of 8 + * @param len length of vectors, should be multiple of 16 */ void (*add_int16)(int16_t *v1/*align 16*/, int16_t *v2, int len); /** * Add contents of the second vector to the first one. - * @param len length of vectors, should be multiple of 8 + * @param len length of vectors, should be multiple of 16 */ void (*sub_int16)(int16_t *v1/*align 16*/, int16_t *v2, int len); /** * Calculate scalar product of two vectors. - * @param len length of vectors, should be multiple of 8 + * @param len length of vectors, should be multiple of 16 * @param shift number of bits to discard from product */ int32_t (*scalarproduct_int16)(int16_t *v1, int16_t *v2/*align 16*/, int len, int shift);