summaryrefslogtreecommitdiff
path: root/fftools/ffprobe.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-03-29 14:18:47 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-03-31 11:51:58 +0200
commit461d04d956965b565e8f63b5e31d00a213721113 (patch)
tree5e61cb71a53303c74cba44c3b9b6461751a6ff82 /fftools/ffprobe.c
parent61ea0e3191de67b981ef5b846592fc2b55d5afc1 (diff)
fftools/ffprobe: Add missing dispositions
Reviewed-by: Marton Balint <cus@passwd.hu> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'fftools/ffprobe.c')
-rw-r--r--fftools/ffprobe.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index 11e3cbd6c2..38462e1ff3 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -2770,6 +2770,11 @@ static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_id
PRINT_DISPOSITION(CLEAN_EFFECTS, "clean_effects");
PRINT_DISPOSITION(ATTACHED_PIC, "attached_pic");
PRINT_DISPOSITION(TIMED_THUMBNAILS, "timed_thumbnails");
+ PRINT_DISPOSITION(CAPTIONS, "captions");
+ PRINT_DISPOSITION(DESCRIPTIONS, "descriptions");
+ PRINT_DISPOSITION(METADATA, "metadata");
+ PRINT_DISPOSITION(DEPENDENT, "dependent");
+ PRINT_DISPOSITION(STILL_IMAGE, "still_image");
writer_print_section_footer(w);
}