summaryrefslogtreecommitdiff
path: root/libavformat/dump.c
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2018-02-23 13:38:33 -0800
committerAman Gupta <aman@tmm1.net>2018-02-23 13:47:29 -0800
commit4f40d64e009869441ee63dad00b41e0a5bf7634d (patch)
treeb150840fc66707038bd894dfce015dc8dbb745c1 /libavformat/dump.c
parent61ecfbc32aa2a5d02bd90a298496bf1b6ecb0762 (diff)
avformat/mpegts: set AV_DISPOSITION_DEPENDENT for mix_type=0 supplementary audio
Signed-off-by: Aman Gupta <aman@tmm1.net>
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r--libavformat/dump.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c
index e20902ce85..942e62a581 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -549,6 +549,8 @@ static void dump_stream_format(AVFormatContext *ic, int i,
av_log(NULL, AV_LOG_INFO, " (clean effects)");
if (st->disposition & AV_DISPOSITION_DESCRIPTIONS)
av_log(NULL, AV_LOG_INFO, " (descriptions)");
+ if (st->disposition & AV_DISPOSITION_DEPENDENT)
+ av_log(NULL, AV_LOG_INFO, " (dependent)");
av_log(NULL, AV_LOG_INFO, "\n");
dump_metadata(NULL, st->metadata, " ");