| 2283 | } |
| 2284 | |
| 2285 | static int show_stream_groups(AVTextFormatContext *tfc, InputFile *ifile) |
| 2286 | { |
| 2287 | AVFormatContext *fmt_ctx = ifile->fmt_ctx; |
| 2288 | int i, ret = 0; |
| 2289 | |
| 2290 | avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUPS); |
| 2291 | for (i = 0; i < fmt_ctx->nb_stream_groups; i++) { |
| 2292 | AVStreamGroup *stg = fmt_ctx->stream_groups[i]; |
| 2293 | |
| 2294 | ret = show_stream_group(tfc, ifile, stg); |
| 2295 | if (ret < 0) |
| 2296 | break; |
| 2297 | } |
| 2298 | avtext_print_section_footer(tfc); |
| 2299 | return ret; |
| 2300 | } |
| 2301 | |
| 2302 | static int show_chapters(AVTextFormatContext *tfc, InputFile *ifile) |
| 2303 | { |
no test coverage detected