[FFmpeg-cvslog] lavu/tx: simplify in-place permute search function

Lynne git at videolan.org
Sat Feb 27 05:21:48 EET 2021


ffmpeg | branch: master | Lynne <dev at lynne.ee> | Sat Feb 27 04:19:55 2021 +0100| [9ddaf0c9f06fab9194161425a32615c4cfc2ec20] | committer: Lynne

lavu/tx: simplify in-place permute search function

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9ddaf0c9f06fab9194161425a32615c4cfc2ec20
---

 libavutil/tx.c | 8 +++-----
 1 file 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;



More information about the ffmpeg-cvslog mailing list