You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
fftools/ffmpeg: simplify ost_iter()
The inner loop never goes through more than 1 iteration, and so can be replaced by an if(). Found-by: Andreas Rheinhardt
This commit is contained in:
@ -612,7 +612,7 @@ static OutputStream *ost_iter(OutputStream *prev)
|
||||
|
||||
for (; of_idx < nb_output_files; of_idx++) {
|
||||
OutputFile *of = output_files[of_idx];
|
||||
for (; ost_idx < of->nb_streams; ost_idx++)
|
||||
if (ost_idx < of->nb_streams)
|
||||
return of->streams[ost_idx];
|
||||
|
||||
ost_idx = 0;
|
||||
|
Reference in New Issue
Block a user