aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2024-07-16 13:20:00 +0200
committerNiklas Haas <git@haasn.dev>2024-07-28 12:20:07 +0200
commit3d5d60d041c4b16542cdbc72e6f0d00b98922456 (patch)
treea403f25db4ba7a0d509fe1251436435428c02046
parentce8166a19c368486c9df665b43adceedf42fb897 (diff)
downloadffmpeg-3d5d60d041c4b16542cdbc72e6f0d00b98922456.tar.gz
avformat/dump: implement dv_md_compression
-rw-r--r--libavformat/dump.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 78b2481d90..5e1f367742 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -416,13 +416,15 @@ static void dump_dovi_conf(void *ctx, const AVPacketSideData *sd,
(const AVDOVIDecoderConfigurationRecord *)sd->data;
av_log(ctx, log_level, "version: %d.%d, profile: %d, level: %d, "
- "rpu flag: %d, el flag: %d, bl flag: %d, compatibility id: %d",
+ "rpu flag: %d, el flag: %d, bl flag: %d, compatibility id: %d, "
+ "compression: %d",
dovi->dv_version_major, dovi->dv_version_minor,
dovi->dv_profile, dovi->dv_level,
dovi->rpu_present_flag,
dovi->el_present_flag,
dovi->bl_present_flag,
- dovi->dv_bl_signal_compatibility_id);
+ dovi->dv_bl_signal_compatibility_id,
+ dovi->dv_md_compression);
}
static void dump_s12m_timecode(void *ctx, const AVStream *st, const AVPacketSideData *sd,