From cfcee4cfe70536faeb9f2aaa87257d067e902b70 Mon Sep 17 00:00:00 2001 From: Lionel CHAZALLON Date: Mon, 23 Oct 2017 08:51:49 -0700 Subject: Add DRM_PRIME Format Handling and Display for RockChip MPP decoders This commit allows to use the AV_PIX_FMT_DRM_PRIME newly introduced format in ffmpeg that allows decoders to provide an AVDRMFrameDescriptor struct. That struct holds dmabuf fds and information allowing zerocopy rendering using KMS / DRM Atomic. This has been tested on RockChip ROCK64 device. --- wscript | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index b50d278d41..775ec38d8b 100644 --- a/wscript +++ b/wscript @@ -592,6 +592,11 @@ video_output_features = [ 'desc': 'DRM', 'deps': 'vt.h', 'func': check_pkg_config('libdrm'), + }, { + 'name': '--drmprime', + 'desc': 'DRM Prime ffmpeg support', + 'func': check_statement('libavutil/pixfmt.h', + 'int i = AV_PIX_FMT_DRM_PRIME') }, { 'name': '--gbm', 'desc': 'GBM', -- cgit v1.2.3