diff options
author | Aman Gupta <aman@tmm1.net> | 2018-02-23 13:38:20 -0800 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2018-02-23 13:47:29 -0800 |
commit | 61ecfbc32aa2a5d02bd90a298496bf1b6ecb0762 (patch) | |
tree | 21aa1136738c5043f26ebc9382c5e8b72261ed2b /libavformat/dump.c | |
parent | 8720d3ffddbb3e03a72123322d67e12083c56c73 (diff) | |
download | ffmpeg-61ecfbc32aa2a5d02bd90a298496bf1b6ecb0762.tar.gz |
avformat/dump: tag AV_DISPOSITION_DESCRIPTIONS streams
Signed-off-by: Aman Gupta <aman@tmm1.net>
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r-- | libavformat/dump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c index ef143fd4e2..e20902ce85 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -547,6 +547,8 @@ static void dump_stream_format(AVFormatContext *ic, int i, av_log(NULL, AV_LOG_INFO, " (visual impaired)"); if (st->disposition & AV_DISPOSITION_CLEAN_EFFECTS) av_log(NULL, AV_LOG_INFO, " (clean effects)"); + if (st->disposition & AV_DISPOSITION_DESCRIPTIONS) + av_log(NULL, AV_LOG_INFO, " (descriptions)"); av_log(NULL, AV_LOG_INFO, "\n"); dump_metadata(NULL, st->metadata, " "); |