summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2006-08-31 19:14:00 +0000
committerLuca Barbato <lu_zero@gentoo.org>2006-08-31 19:14:00 +0000
commit9814587500d819e88b92e80ed43a2cc1e1a869b7 (patch)
tree97171fdd22a0cda2242d0d2d0f41a340c7c7396b /libavcodec/dsputil.h
parent12ccec0f15f1062c807a0f233561ded6f24d7879 (diff)
Align the input buffer in ffplay, introduce a public macro for aligned declarations
Update the avcodec_decode_audio and the float_to_int16 descriptions accordingly Originally committed as revision 6147 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index 1fc292be0f..3e47901dc0 100644
--- a/libavcodec/dsputil.h
+++ b/libavcodec/dsputil.h
@@ -323,7 +323,7 @@ typedef struct DSPContext {
void (*vector_fmul_add_add)(float *dst, const float *src0, const float *src1, const float *src2, int src3, int len, int step);
/* C version: convert floats from the range [384.0,386.0] to ints in [-32768,32767]
- * asm versions: convert floats from [-32768.0,32767.0] without rescaling */
+ * simd versions: convert floats from [-32768.0,32767.0] without rescaling and arrays are 16byte aligned */
void (*float_to_int16)(int16_t *dst, const float *src, int len);
/* (I)DCT */