| 369 | } |
| 370 | |
| 371 | OutputStream *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 | |
| 387 | InputStream *ist_iter(InputStream *prev) |
| 388 | { |
no outgoing calls
no test coverage detected