diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-07-11 00:43:53 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-14 13:02:51 +0200 |
commit | 6c3b3cfd90abec916871c8241bd11f242e13190d (patch) | |
tree | e9e4f47180bb8b3c650d338b60d779fd446837e4 /ffprobe.c | |
parent | 75abfab6c6ecd284092bee5e81d35ad7934e2425 (diff) | |
download | ffmpeg-6c3b3cfd90abec916871c8241bd11f242e13190d.tar.gz |
ffprobe: add frame metadata printing
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1645,6 +1645,7 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream) print_int("nb_samples", frame->nb_samples); break; } + show_tags(av_frame_get_metadata(frame)); print_section_footer("frame"); |