X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fdump.c;h=1c44656071032298eea84cfbe9c96534c50b8167;hb=5f64f6058e0c23641a68ce7dfe47b1f55efd401c;hp=bc0f401550a70f79b160262ffa714cee1462864a;hpb=ef71ef5f30ddf1cd61e46628a04608892caf76d2;p=ffmpeg diff --git a/libavformat/dump.c b/libavformat/dump.c index bc0f401550a..1c446560710 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -293,7 +293,7 @@ static void dump_audioservicetype(void *ctx, AVPacketSideData *sd) av_log(ctx, AV_LOG_INFO, "dialogue"); break; case AV_AUDIO_SERVICE_TYPE_COMMENTARY: - av_log(ctx, AV_LOG_INFO, "comentary"); + av_log(ctx, AV_LOG_INFO, "commentary"); break; case AV_AUDIO_SERVICE_TYPE_EMERGENCY: av_log(ctx, AV_LOG_INFO, "emergency"); @@ -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)