summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2021-02-27 04:19:55 +0100
committerLynne <dev@lynne.ee>2021-02-27 04:21:03 +0100
commit9ddaf0c9f06fab9194161425a32615c4cfc2ec20 (patch)
treebd65b0670719f0e5045d93e61add88a1166d0a5a
parentf9cb557d66ffb90152db3efa0e51b468ab1e414c (diff)
lavu/tx: simplify in-place permute search function
-rw-r--r--libavutil/tx.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/libavutil/tx.c b/libavutil/tx.c
index 4a5ec6975f..ac67b354be 100644
--- a/libavutil/tx.c
+++ b/libavutil/tx.c
@@ -114,8 +114,7 @@ int ff_tx_gen_ptwo_inplace_revtab_idx(AVTXContext *s)
if (!(s->inplace_idx = av_malloc(s->m*sizeof(*s->inplace_idx))))
return AVERROR(ENOMEM);
- for (int d = 1; d < s->m; d++) {
- int src = d, start_src = src;
+ for (int src = 1; src < s->m; src++) {
int dst = s->revtab[src];
int found = 0;
@@ -123,7 +122,6 @@ int ff_tx_gen_ptwo_inplace_revtab_idx(AVTXContext *s)
continue;
do {
- src = dst;
for (int j = 0; j < nb_inplace_idx; j++) {
if (dst == s->inplace_idx[j]) {
found = 1;
@@ -131,10 +129,10 @@ int ff_tx_gen_ptwo_inplace_revtab_idx(AVTXContext *s)
}
}
dst = s->revtab[dst];
- } while (dst != start_src && !found);
+ } while (dst != src && !found);
if (!found)
- s->inplace_idx[nb_inplace_idx++] = start_src;
+ s->inplace_idx[nb_inplace_idx++] = src;
}
s->inplace_idx[nb_inplace_idx++] = 0;