Lines Matching defs:program
259 [SECTION_ID_PROGRAM] = { SECTION_ID_PROGRAM, "program", 0, { SECTION_ID_PROGRAM_TAGS, SECTION_ID_PROGRAM_STREAMS, -1 } },
3160 static int show_program(WriterContext *w, InputFile *ifile, AVProgram *program)
3166 print_int("program_id", program->id);
3167 print_int("program_num", program->program_num);
3168 print_int("nb_streams", program->nb_stream_indexes);
3169 print_int("pmt_pid", program->pmt_pid);
3170 print_int("pcr_pid", program->pcr_pid);
3172 ret = show_tags(w, program->metadata, SECTION_ID_PROGRAM_TAGS);
3177 for (i = 0; i < program->nb_stream_indexes; i++) {
3178 if (selected_streams[program->stream_index[i]]) {
3179 ret = show_stream(w, fmt_ctx, program->stream_index[i], &ifile->streams[program->stream_index[i]], 1);
3198 AVProgram *program = fmt_ctx->programs[i];
3199 if (!program)
3201 ret = show_program(w, ifile, program);
3991 { "show_versions", 0, { .func_arg = &opt_show_versions }, "show program and library versions" },