diff options
author | Siarhei Siamashka <siarhei.siamashka@gmail.com> | 2009-05-16 14:17:08 +0000 |
---|---|---|
committer | Siarhei Siamashka <siarhei.siamashka@gmail.com> | 2009-05-16 14:17:08 +0000 |
commit | 7d485f165f7f6313002da1fe67c2742f0fbb16c9 (patch) | |
tree | 87e68249904f3c5bc7dcfc05df2eea10fd318ea2 /libavcodec/cook.c | |
parent | 3ac56e28b0a3fc84ccac9ac7e359f0f29567f8a0 (diff) | |
download | ffmpeg-7d485f165f7f6313002da1fe67c2742f0fbb16c9.tar.gz |
Support for getting (i)MDCT output multiplied by a constant scaling factor.
Scaling (i)MDCT output has no runtime overhead and can be used to improve
performance of audio codecs. All the changes are only needed in
'ff_mdct_init' function and slow down initialization a bit.
Originally committed as revision 18855 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cook.c')
-rw-r--r-- | libavcodec/cook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c index fa9dc2b7ce..b90949fb70 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -259,7 +259,7 @@ static av_cold int init_cook_mlt(COOKContext *q) { q->mlt_window[j] *= sqrt(2.0 / q->samples_per_channel); /* Initialize the MDCT. */ - if (ff_mdct_init(&q->mdct_ctx, av_log2(mlt_size)+1, 1)) { + if (ff_mdct_init(&q->mdct_ctx, av_log2(mlt_size)+1, 1, 1.0)) { av_free(q->mlt_window); return -1; } |