[FFmpeg-cvslog] avutil/float_dsp: Fix ambiguous wording about vector products

Michael Niedermayer git at videolan.org
Mon Jun 1 16:32:30 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Jun  1 16:22:27 2015 +0200| [030c20ffcf042366213eb25b71adf5a2dfd04403] | committer: Michael Niedermayer

avutil/float_dsp: Fix ambiguous wording about vector products

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=030c20ffcf042366213eb25b71adf5a2dfd04403
---

 libavutil/float_dsp.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavutil/float_dsp.h b/libavutil/float_dsp.h
index 543f701..ad8e3eb 100644
--- a/libavutil/float_dsp.h
+++ b/libavutil/float_dsp.h
@@ -23,7 +23,7 @@
 
 typedef struct AVFloatDSPContext {
     /**
-     * Calculate the product of two vectors of floats and store the result in
+     * Calculate the entry wise product of two vectors of floats and store the result in
      * a vector of floats.
      *
      * @param dst  output vector
@@ -104,7 +104,7 @@ typedef struct AVFloatDSPContext {
                                const float *src1, const float *win, int len);
 
     /**
-     * Calculate the product of two vectors of floats, add a third vector of
+     * Calculate the entry wise product of two vectors of floats, add a third vector of
      * floats and store the result in a vector of floats.
      *
      * @param dst  output vector
@@ -122,7 +122,7 @@ typedef struct AVFloatDSPContext {
                             const float *src2, int len);
 
     /**
-     * Calculate the product of two vectors of floats, and store the result
+     * Calculate the entry wise product of two vectors of floats, and store the result
      * in a vector of floats. The second vector of floats is iterated over
      * in reverse order.
      *



More information about the ffmpeg-cvslog mailing list