dump metadata for AVStreams & AVPrograms too.

Originally committed as revision 20846 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-12-13 23:27:43 +00:00
parent 8b5e5ec5d7
commit 2e720e11bc
1 changed files with 2 additions and 0 deletions

View File

@ -2904,6 +2904,7 @@ static void dump_stream_format(AVFormatContext *ic, int i, int index, int is_out
print_fps(1/av_q2d(st->codec->time_base), "tbc"); print_fps(1/av_q2d(st->codec->time_base), "tbc");
} }
av_log(NULL, AV_LOG_INFO, "\n"); av_log(NULL, AV_LOG_INFO, "\n");
dump_metadata(NULL, st->metadata, " ");
} }
void dump_format(AVFormatContext *ic, void dump_format(AVFormatContext *ic,
@ -2959,6 +2960,7 @@ void dump_format(AVFormatContext *ic,
"name", NULL, 0); "name", NULL, 0);
av_log(NULL, AV_LOG_INFO, " Program %d %s\n", ic->programs[j]->id, av_log(NULL, AV_LOG_INFO, " Program %d %s\n", ic->programs[j]->id,
name ? name->value : ""); name ? name->value : "");
dump_metadata(NULL, ic->programs[j]->metadata, " ");
for(k=0; k<ic->programs[j]->nb_stream_indexes; k++) { for(k=0; k<ic->programs[j]->nb_stream_indexes; k++) {
dump_stream_format(ic, ic->programs[j]->stream_index[k], index, is_output); dump_stream_format(ic, ic->programs[j]->stream_index[k], index, is_output);
printed[ic->programs[j]->stream_index[k]] = 1; printed[ic->programs[j]->stream_index[k]] = 1;