[FFmpeg-cvslog] fftools/ffmpeg: Remove redundant loop

Soft Works git at videolan.org
Sat Nov 13 21:11:59 EET 2021


ffmpeg | branch: master | Soft Works <softworkz at hotmail.com> | Sun Oct 10 17:01:43 2021 +0000| [0a99c8322a469ad54cce3c49bd9d1681f3ef6388] | committer: Marton Balint

fftools/ffmpeg: Remove redundant loop

Signed-off-by: softworkz <softworkz at hotmail.com>
Signed-off-by: Marton Balint <cus at passwd.hu>

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

 fftools/ffmpeg.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 9d4f9d7a2b..e205945e63 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -2178,7 +2178,7 @@ static int ifilter_send_frame(InputFilter *ifilter, AVFrame *frame)
 {
     FilterGraph *fg = ifilter->graph;
     AVFrameSideData *sd;
-    int need_reinit, ret, i;
+    int need_reinit, ret;
 
     /* determine if the parameters for this input changed */
     need_reinit = ifilter->format != frame->format;
@@ -2216,7 +2216,6 @@ static int ifilter_send_frame(InputFilter *ifilter, AVFrame *frame)
 
     /* (re)init the graph if possible, otherwise buffer the frame and return */
     if (need_reinit || !fg->graph) {
-        for (i = 0; i < fg->nb_inputs; i++) {
             if (!ifilter_has_all_input_formats(fg)) {
                 AVFrame *tmp = av_frame_clone(frame);
                 if (!tmp)
@@ -2233,7 +2232,6 @@ static int ifilter_send_frame(InputFilter *ifilter, AVFrame *frame)
                 av_fifo_generic_write(ifilter->frame_queue, &tmp, sizeof(tmp), NULL);
                 return 0;
             }
-        }
 
         ret = reap_filters(1);
         if (ret < 0 && ret != AVERROR_EOF) {



More information about the ffmpeg-cvslog mailing list