summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-07-11 00:43:53 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-07-14 13:02:51 +0200
commit6c3b3cfd90abec916871c8241bd11f242e13190d (patch)
treee9e4f47180bb8b3c650d338b60d779fd446837e4 /ffprobe.c
parent75abfab6c6ecd284092bee5e81d35ad7934e2425 (diff)
ffprobe: add frame metadata printing
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 14cb054076..1f6e048245 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -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");