Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2021-02-26 07:40:07 +0300
committerLynne <dev@lynne.ee>2021-02-26 07:42:24 +0300
commit10341743d2a91602321e2ece8c4dd88cd8073f8d (patch)
tree645a01162e118002bd5a0a6955819ec85c5eff9c /libavutil/tx_template.c
parente937457b7b63e3b2647ec60b794d1fafcf1e79b9 (diff)
lavu/tx: require output argument to match input for inplace transforms
This simplifies some assembly code by a lot, by either saving a branch or saving an entire duplicated function.
Diffstat (limited to 'libavutil/tx_template.c')
-rw-r--r--libavutil/tx_template.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavutil/tx_template.c b/libavutil/tx_template.c
index f43173e920..711013c352 100644
--- a/libavutil/tx_template.c
+++ b/libavutil/tx_template.c
@@ -397,7 +397,6 @@ static void monolithic_fft(AVTXContext *s, void *_out, void *_in,
FFTComplex tmp;
int src, dst, *inplace_idx = s->inplace_idx;
- out = in;
src = *inplace_idx++;
do {