diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-02 22:40:32 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-09 20:21:31 +0200 |
commit | c6134ce65f893cbbc2a334ec5753c2b83585048d (patch) | |
tree | 2500e0c9dc935f430717c7d54b95510df81d899f | |
parent | aba0cc44656be6ee283349713ac888501ca597ba (diff) | |
download | ffmpeg-c6134ce65f893cbbc2a334ec5753c2b83585048d.tar.gz |
fftools/ffprobe: Improve description of AFD side data
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | fftools/ffprobe.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 2f110efcb7..f156663019 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2361,6 +2361,8 @@ static void print_pkt_side_data(WriterContext *w, if (do_show_data) writer_print_data(w, "data", sd->data, sd->size); writer_print_data_hash(w, "data_hash", sd->data, sd->size); + } else if (sd->type == AV_PKT_DATA_AFD && sd->size > 0) { + print_int("active_format", *sd->data); } writer_print_section_footer(w); } @@ -2633,6 +2635,8 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream, if (sd->type == AV_FRAME_DATA_DISPLAYMATRIX && sd->size >= 9*4) { writer_print_integers(w, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1); print_int("rotation", av_display_rotation_get((int32_t *)sd->data)); + } else if (sd->type == AV_FRAME_DATA_AFD && sd->size > 0) { + print_int("active_format", *sd->data); } else if (sd->type == AV_FRAME_DATA_GOP_TIMECODE && sd->size >= 8) { char tcbuf[AV_TIMECODE_STR_SIZE]; av_timecode_make_mpeg_tc_string(tcbuf, *(int64_t *)(sd->data)); |