[FFmpeg-cvslog] ffprobe: print stereo3d information

Clément Bœsch git at videolan.org
Thu Jun 23 13:48:32 CEST 2016


ffmpeg | branch: master | Clément Bœsch <clement at stupeflix.com> | Thu Jun 23 13:36:39 2016 +0200| [c8550e82449bb22cf78eddd8a656eaafa31cb88c] | committer: Clément Bœsch

ffprobe: print stereo3d information

Based on 8e757716c61e0563a63829e30b02d5ba2a422ad6

See https://github.com/mpv-player/mpv/issues/1045 for mk3d
elektranox.org samples.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c8550e82449bb22cf78eddd8a656eaafa31cb88c
---

 ffprobe.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/ffprobe.c b/ffprobe.c
index 0c4dd9c..b9c3760 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);
     }



More information about the ffmpeg-cvslog mailing list