mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 07:42:51 +00:00
fftools/ffprobe: implement dv_md_compression
This commit is contained in:
parent
3d5d60d041
commit
b5aeafc00a
@ -2603,6 +2603,7 @@ static void print_pkt_side_data(WriterContext *w,
|
|||||||
print_dynamic_hdr10_plus(w, metadata);
|
print_dynamic_hdr10_plus(w, metadata);
|
||||||
} else if (sd->type == AV_PKT_DATA_DOVI_CONF) {
|
} else if (sd->type == AV_PKT_DATA_DOVI_CONF) {
|
||||||
AVDOVIDecoderConfigurationRecord *dovi = (AVDOVIDecoderConfigurationRecord *)sd->data;
|
AVDOVIDecoderConfigurationRecord *dovi = (AVDOVIDecoderConfigurationRecord *)sd->data;
|
||||||
|
const char *comp = "unknown";
|
||||||
print_int("dv_version_major", dovi->dv_version_major);
|
print_int("dv_version_major", dovi->dv_version_major);
|
||||||
print_int("dv_version_minor", dovi->dv_version_minor);
|
print_int("dv_version_minor", dovi->dv_version_minor);
|
||||||
print_int("dv_profile", dovi->dv_profile);
|
print_int("dv_profile", dovi->dv_profile);
|
||||||
@ -2611,6 +2612,14 @@ static void print_pkt_side_data(WriterContext *w,
|
|||||||
print_int("el_present_flag", dovi->el_present_flag);
|
print_int("el_present_flag", dovi->el_present_flag);
|
||||||
print_int("bl_present_flag", dovi->bl_present_flag);
|
print_int("bl_present_flag", dovi->bl_present_flag);
|
||||||
print_int("dv_bl_signal_compatibility_id", dovi->dv_bl_signal_compatibility_id);
|
print_int("dv_bl_signal_compatibility_id", dovi->dv_bl_signal_compatibility_id);
|
||||||
|
switch (dovi->dv_md_compression)
|
||||||
|
{
|
||||||
|
case AV_DOVI_COMPRESSION_NONE: comp = "none"; break;
|
||||||
|
case AV_DOVI_COMPRESSION_LIMITED: comp = "limited"; break;
|
||||||
|
case AV_DOVI_COMPRESSION_RESERVED: comp = "reserved"; break;
|
||||||
|
case AV_DOVI_COMPRESSION_EXTENDED: comp = "extended"; break;
|
||||||
|
}
|
||||||
|
print_str("dv_md_compression", comp);
|
||||||
} else if (sd->type == AV_PKT_DATA_AUDIO_SERVICE_TYPE) {
|
} else if (sd->type == AV_PKT_DATA_AUDIO_SERVICE_TYPE) {
|
||||||
enum AVAudioServiceType *t = (enum AVAudioServiceType *)sd->data;
|
enum AVAudioServiceType *t = (enum AVAudioServiceType *)sd->data;
|
||||||
print_int("service_type", *t);
|
print_int("service_type", *t);
|
||||||
|
@ -45,5 +45,6 @@ rpu_present_flag=1
|
|||||||
el_present_flag=1
|
el_present_flag=1
|
||||||
bl_present_flag=0
|
bl_present_flag=0
|
||||||
dv_bl_signal_compatibility_id=6
|
dv_bl_signal_compatibility_id=6
|
||||||
|
dv_md_compression=none
|
||||||
[/SIDE_DATA]
|
[/SIDE_DATA]
|
||||||
[/STREAM]
|
[/STREAM]
|
||||||
|
@ -64,5 +64,6 @@ rpu_present_flag=1
|
|||||||
el_present_flag=0
|
el_present_flag=0
|
||||||
bl_present_flag=1
|
bl_present_flag=1
|
||||||
dv_bl_signal_compatibility_id=4
|
dv_bl_signal_compatibility_id=4
|
||||||
|
dv_md_compression=none
|
||||||
[/SIDE_DATA]
|
[/SIDE_DATA]
|
||||||
[/STREAM]
|
[/STREAM]
|
||||||
|
Loading…
Reference in New Issue
Block a user