This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 30be62b711d8d543296700a6548fd41dffdde813 Author: Marton Balint <[email protected]> AuthorDate: Wed Jan 14 00:01:57 2026 +0100 Commit: Marton Balint <[email protected]> CommitDate: Wed Feb 4 21:46:30 2026 +0100 fftools/ffprobe: print AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL id and data Data is only printed if -show_data is used. Signed-off-by: Marton Balint <[email protected]> --- fftools/ffprobe.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 67111bc31f..1d9c7052c1 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -1104,6 +1104,10 @@ static void print_pkt_side_data(AVTextFormatContext *tfc, print_int("active_format", *sd->data); } else if (sd->type == AV_PKT_DATA_EXIF) { print_int("size", sd->size); + } else if (sd->type == AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL && sd->size >= 8) { + print_int("block_additional_id", AV_RB64(sd->data)); + if (do_show_data) + avtext_print_data(tfc, "block_additional_data", sd->data + 8, sd->size - 8); } } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
