diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-27 15:20:43 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-28 00:07:35 +0000 |
commit | 9d06d7bce3babb82ed650c13ed13a57f6f626a71 (patch) | |
tree | 022760430dcd336114b22b841e8a0dcb51dbd62c /libavcodec/dsputil.h | |
parent | 97b04f5ed3ab3a62e57f0c16841fb8f10d0a174c (diff) | |
download | ffmpeg-9d06d7bce3babb82ed650c13ed13a57f6f626a71.tar.gz |
Remove the add bias hack for the C version of DSPContext.float_to_int16_*().
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index baa68bebe7..eabecf0d48 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -435,8 +435,7 @@ typedef struct DSPContext { */ void (*butterflies_float)(float *restrict v1, float *restrict v2, int len); - /* C version: convert floats from the range [384.0,386.0] to ints in [-32768,32767] - * simd versions: convert floats from [-32768.0,32767.0] without rescaling and arrays are 16byte aligned */ + /* convert floats from [-32768.0,32767.0] without rescaling and arrays are 16byte aligned */ void (*float_to_int16)(int16_t *dst, const float *src, long len); void (*float_to_int16_interleave)(int16_t *dst, const float **src, long len, int channels); |