# HG changeset patch # User kostya # Date 1215670513 0 # Node ID cc55dd004819bedb49652b3e24f1f975e2f03e09 # Parent 21f5d934ccbd9519d62a8f4f63a8d65045556160 Monkey's Audio decoder vector functions work on input with length a multiple of 16. Reflect that fact in the documentation for them. diff -r 21f5d934ccbd -r cc55dd004819 dsputil.h --- 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);