diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2011-12-17 18:45:55 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-01-23 11:40:46 -0800 |
commit | 025ccf1f8bd669f45b628acf51e7febcb1fddd3b (patch) | |
tree | 01729ec4ed66b3c439fe963b3c3e8a512034af31 /libavcodec/aacenc.h | |
parent | 6381f913d19d78513bab06fad7c50548975475a3 (diff) | |
download | ffmpeg-025ccf1f8bd669f45b628acf51e7febcb1fddd3b.tar.gz |
aacenc: Request normalized float samples instead of converting s16 samples to float.
Signed-off-by: Alex Converse <alex.converse@gmail.com>
Diffstat (limited to 'libavcodec/aacenc.h')
-rw-r--r-- | libavcodec/aacenc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index acd185a809..1f5e6503ca 100644 --- a/libavcodec/aacenc.h +++ b/libavcodec/aacenc.h @@ -58,7 +58,7 @@ typedef struct AACEncContext { FFTContext mdct1024; ///< long (1024 samples) frame transform context FFTContext mdct128; ///< short (128 samples) frame transform context DSPContext dsp; - int16_t *samples; ///< saved preprocessed input + float *samples; ///< saved preprocessed input int samplerate_index; ///< MPEG-4 samplerate index const uint8_t *chan_map; ///< channel configuration map |