From c8550e82449bb22cf78eddd8a656eaafa31cb88c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 23 Jun 2016 13:36:39 +0200 Subject: [PATCH] ffprobe: print stereo3d information Based on 8e757716c61e0563a63829e30b02d5ba2a422ad6 See https://github.com/mpv-player/mpv/issues/1045 for mk3d elektranox.org samples. --- ffprobe.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ffprobe.c b/ffprobe.c index 0c4dd9c6e55..b9c37603848 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -37,6 +37,7 @@ #include "libavutil/hash.h" #include "libavutil/opt.h" #include "libavutil/pixdesc.h" +#include "libavutil/stereo3d.h" #include "libavutil/dict.h" #include "libavutil/intreadwrite.h" #include "libavutil/libm.h" @@ -1778,6 +1779,10 @@ static void print_pkt_side_data(WriterContext *w, if (sd->type == AV_PKT_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_PKT_DATA_STEREO3D) { + const AVStereo3D *stereo = (AVStereo3D *)sd->data; + print_str("type", av_stereo3d_type_name(stereo->type)); + print_int("inverted", !!(stereo->flags & AV_STEREO3D_FLAG_INVERT)); } writer_print_section_footer(w); } -- 2.39.5