diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2011-12-14 19:43:56 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-01-23 11:40:46 -0800 |
commit | 9b8e2a870957293898998209c6e9bed290cc9bef (patch) | |
tree | 64df91d37b8580b9b1d0b45fe91d2adf5a3846ee /libavcodec/psymodel.h | |
parent | 04af2efaae661fd48334bab52f6561450a403f20 (diff) | |
download | ffmpeg-9b8e2a870957293898998209c6e9bed290cc9bef.tar.gz |
aacenc: Deinterleave input samples before processing.
Signed-off-by: Alex Converse <alex.converse@gmail.com>
Diffstat (limited to 'libavcodec/psymodel.h')
-rw-r--r-- | libavcodec/psymodel.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libavcodec/psymodel.h b/libavcodec/psymodel.h index 03d078ed58..34b20d7d04 100644 --- a/libavcodec/psymodel.h +++ b/libavcodec/psymodel.h @@ -174,13 +174,10 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av * Preprocess several channel in audio frame in order to compress it better. * * @param ctx preprocessing context - * @param audio samples to preprocess - * @param dest place to put filtered samples - * @param tag channel number - * @param channels number of channel to preprocess (some additional work may be done on stereo pair) + * @param audio samples to be filtered (in place) + * @param channels number of channel to preprocess */ -void ff_psy_preprocess(struct FFPsyPreprocessContext *ctx, const float *audio, - float *dest, int tag, int channels); +void ff_psy_preprocess(struct FFPsyPreprocessContext *ctx, float **audio, int channels); /** * Cleanup audio preprocessing module. |