summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2008-07-10 06:15:13 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2008-07-10 06:15:13 +0000
commitbb68f8a2b6d2352c0cf5fd3b6f99ac2391abaa25 (patch)
tree44c6f13b3e9dc16cadd4b0959b703716f08adb75 /libavcodec
parent5b8cc860a1ba0096287d33eb5e015babd6f5dcdd (diff)
Monkey's Audio decoder vector functions work on input with length
a multiple of 16. Reflect that fact in the documentation for them. Originally committed as revision 14148 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dsputil.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index 5ba7d3f43f..b35f97a40f 100644
--- a/libavcodec/dsputil.h
+++ b/libavcodec/dsputil.h
@@ -454,17 +454,17 @@ typedef struct DSPContext {
/* 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);