[FFmpeg-devel] [PATCH 1/2] fftools/ffmpeg: Remove redundant loop

Soft Works softworkz at hotmail.com
Sun Oct 10 19:36:41 EEST 2021


Signed-off-by: softworkz <softworkz at hotmail.com>
---
 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) {
-- 
2.30.2.windows.1



More information about the ffmpeg-devel mailing list