[FFmpeg-cvslog] lavf: print stream disposition in dump_stream_format
Anssi Hannula
git
Tue Feb 15 00:59:09 CET 2011
ffmpeg | branch: master | Anssi Hannula <anssi.hannula at iki.fi> | Sat Feb 12 20:11:11 2011 +0200| [709946b34ca51518da7dd01c124a0530fa56f8c7] | committer: Michael Niedermayer
lavf: print stream disposition in dump_stream_format
Signed-off-by: Janne Grunau <janne-ffmpeg at jannau.net>
(cherry picked from commit 3c33c0e26325f189dbf7f212f8e9042feb83bfb0)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=709946b34ca51518da7dd01c124a0530fa56f8c7
---
libavformat/utils.c | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 870a287..c0f971e 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3237,6 +3237,24 @@ static void dump_stream_format(AVFormatContext *ic, int i, int index, int is_out
if(st->codec->time_base.den && st->codec->time_base.num)
print_fps(1/av_q2d(st->codec->time_base), "tbc");
}
+ if (st->disposition & AV_DISPOSITION_DEFAULT)
+ av_log(NULL, AV_LOG_INFO, " (default)");
+ if (st->disposition & AV_DISPOSITION_DUB)
+ av_log(NULL, AV_LOG_INFO, " (dub)");
+ if (st->disposition & AV_DISPOSITION_ORIGINAL)
+ av_log(NULL, AV_LOG_INFO, " (original)");
+ if (st->disposition & AV_DISPOSITION_COMMENT)
+ av_log(NULL, AV_LOG_INFO, " (comment)");
+ if (st->disposition & AV_DISPOSITION_LYRICS)
+ av_log(NULL, AV_LOG_INFO, " (lyrics)");
+ if (st->disposition & AV_DISPOSITION_KARAOKE)
+ av_log(NULL, AV_LOG_INFO, " (karaoke)");
+ if (st->disposition & AV_DISPOSITION_FORCED)
+ av_log(NULL, AV_LOG_INFO, " (forced)");
+ if (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED)
+ av_log(NULL, AV_LOG_INFO, " (hearing impaired)");
+ if (st->disposition & AV_DISPOSITION_VISUAL_IMPAIRED)
+ av_log(NULL, AV_LOG_INFO, " (visual impaired)");
av_log(NULL, AV_LOG_INFO, "\n");
dump_metadata(NULL, st->metadata, " ");
}
More information about the ffmpeg-cvslog
mailing list