MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ost_iter

Function ost_iter

fftools/ffmpeg.c:371–385  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

369}
370
371OutputStream *ost_iter(OutputStream *prev)
372{
373 int of_idx = prev ? prev->file->index : 0;
374 int ost_idx = prev ? prev->index + 1 : 0;
375
376 for (; of_idx < nb_output_files; of_idx++) {
377 OutputFile *of = output_files[of_idx];
378 if (ost_idx < of->nb_streams)
379 return of->streams[ost_idx];
380
381 ost_idx = 0;
382 }
383
384 return NULL;
385}
386
387InputStream *ist_iter(InputStream *prev)
388{

Callers 3

print_reportFunction · 0.85
print_stream_mapsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected