diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-07-11 21:29:22 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-07-11 21:36:48 +0100 |
commit | aef5f9ab05c3acad2cc5d141686a76c974c8927b (patch) | |
tree | cf2ab26f80878ca5c5076e586d10a54d3741cf67 /libavcodec/mdct15.h | |
parent | 02d248d5828dbbfecfb37597c626900f41448bea (diff) | |
download | ffmpeg-aef5f9ab05c3acad2cc5d141686a76c974c8927b.tar.gz |
mdct15: remove redundant scale argument to imdct_half
The only use of that argument was for Opus downmixing which is very rare
and better done after the mdcts.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/mdct15.h')
-rw-r--r-- | libavcodec/mdct15.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdct15.h b/libavcodec/mdct15.h index 7d83f3ebdf..1c2149d436 100644 --- a/libavcodec/mdct15.h +++ b/libavcodec/mdct15.h @@ -47,7 +47,7 @@ typedef struct MDCT15Context { /* Calculate the middle half of the iMDCT */ void (*imdct_half)(struct MDCT15Context *s, float *dst, const float *src, - ptrdiff_t src_stride, float scale); + ptrdiff_t stride); } MDCT15Context; /* Init an (i)MDCT of the length 2 * 15 * (2^N) */ |