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

Function show_stream_groups

fftools/ffprobe.c:2285–2300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2283}
2284
2285static 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
2302static int show_chapters(AVTextFormatContext *tfc, InputFile *ifile)
2303{

Callers 1

probe_fileFunction · 0.85

Calls 3

show_stream_groupFunction · 0.85

Tested by

no test coverage detected