[FFmpeg-cvslog] r14148 - trunk/libavcodec/dsputil.h

kostya subversion
Thu Jul 10 08:15:13 CEST 2008


Author: kostya
Date: Thu Jul 10 08:15:13 2008
New Revision: 14148

Log:
Those functions input length is a multiple of 16.


Modified:
   trunk/libavcodec/dsputil.h

Modified: trunk/libavcodec/dsputil.h
==============================================================================
--- trunk/libavcodec/dsputil.h	(original)
+++ trunk/libavcodec/dsputil.h	Thu Jul 10 08:15:13 2008
@@ -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);




More information about the ffmpeg-cvslog mailing list