1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-28 12:16:12 +02:00

lavf/dump: More disposition flag dump

More disposition flag dump

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
Jun Zhao 2019-06-19 21:13:42 +08:00
parent 11d3b03fcb
commit be1643be31

View File

@ -547,8 +547,16 @@ 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_ATTACHED_PIC)
av_log(NULL, AV_LOG_INFO, " (attached pic)");
if (st->disposition & AV_DISPOSITION_TIMED_THUMBNAILS)
av_log(NULL, AV_LOG_INFO, " (timed thumbnails)");
if (st->disposition & AV_DISPOSITION_CAPTIONS)
av_log(NULL, AV_LOG_INFO, " (captions)");
if (st->disposition & AV_DISPOSITION_DESCRIPTIONS)
av_log(NULL, AV_LOG_INFO, " (descriptions)");
if (st->disposition & AV_DISPOSITION_METADATA)
av_log(NULL, AV_LOG_INFO, " (metadata)");
if (st->disposition & AV_DISPOSITION_DEPENDENT)
av_log(NULL, AV_LOG_INFO, " (dependent)");
if (st->disposition & AV_DISPOSITION_STILL_IMAGE)