ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Mon Feb 22 05:57:14 2021 +0100| [c7c7aa85b7401fb9e3b7039878260e7120c9db06] | committer: Andreas Rheinhardt
avutil/tx: Fix declaration after statement Reviewed-by: Paul B Mahol <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c7c7aa85b7401fb9e3b7039878260e7120c9db06 --- libavutil/tx.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavutil/tx.c b/libavutil/tx.c index 49d5e125ae..4a5ec6975f 100644 --- a/libavutil/tx.c +++ b/libavutil/tx.c @@ -115,14 +115,13 @@ int ff_tx_gen_ptwo_inplace_revtab_idx(AVTXContext *s) return AVERROR(ENOMEM); for (int d = 1; d < s->m; d++) { - int src = d; + int src = d, start_src = src; int dst = s->revtab[src]; + int found = 0; if (dst <= src) continue; - int found = 0; - int start_src = src; do { src = dst; for (int j = 0; j < nb_inplace_idx; j++) { _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
