Commit 61ecfbc3 authored by Aman Gupta's avatar Aman Gupta

avformat/dump: tag AV_DISPOSITION_DESCRIPTIONS streams

Signed-off-by: 's avatarAman Gupta <aman@tmm1.net>
parent 8720d3ff
......@@ -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, " ");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment