From 028faacff56d7f90f6b119b0b0ac686fd614825f Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 21 Aug 2017 14:56:07 +0200 Subject: video: add metadata handling for spherical video This adds handling of spherical video metadata: retrieving it from demux_lavf and demux_mkv, passing it through filters, and adjusting it with vf_format. This does not include support for rendering this type of video. We don't expect we need/want to support the other projection types like cube maps, so we don't include that for now. They can be added later as needed. Also raise the maximum sizes of stringified image params, since they can get really long. --- wscript | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index 20241b1697..9d885884d7 100644 --- a/wscript +++ b/wscript @@ -481,6 +481,12 @@ FFmpeg/Libav libraries. You need at least {0}. Aborting.".format(libav_versions_ 'func': check_statement('libavutil/frame.h', 'AV_FRAME_DATA_ICC_PROFILE', use='libav'), + }, { + 'name': 'avutil-spherical', + 'desc': 'libavutil spherical side data', + 'func': check_statement('libavutil/spherical.h', + 'AV_SPHERICAL_EQUIRECTANGULAR', + use='libav'), }, ] -- cgit v1.2.3