[vlc-devel] [PATCH v4 1/3] mmal: Register opaque fourcc in core as fake_fmt

Julian Scheel julian at jusst.de
Wed May 21 13:46:39 CEST 2014


Add a new fourcc, which will be used by the mmal decoder and vout plugins for
passing around opaque picture pointers to realize a zerocopy pipeline on mmal
enabled platforms.

Signed-off-by: Julian Scheel <julian at jusst.de>
Signed-off-by: Dennis Hamester <dennis.hamester at gmail.com>
---
Changes in v2:
 - Do not delete empty line after ammended fourcc block

 include/vlc_fourcc.h | 3 +++
 src/misc/fourcc.c    | 3 ++-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index a239592..5821f42 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -279,6 +279,9 @@
 /* MediaCodec/IOMX opaque buffer type */
 #define VLC_CODEC_ANDROID_OPAQUE  VLC_FOURCC('A','N','O','P')
 
+/* Broadcom MMAL opaque buffer type */
+#define VLC_CODEC_MMAL_OPAQUE     VLC_FOURCC('M','M','A','L')
+
 /* Image codec (video) */
 #define VLC_CODEC_PNG             VLC_FOURCC('p','n','g',' ')
 #define VLC_CODEC_PPM             VLC_FOURCC('p','p','m',' ')
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 53a3ddd..536b958 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -2097,7 +2097,8 @@ static const struct
     { { VLC_CODEC_VDPAU_VIDEO_420, VLC_CODEC_VDPAU_VIDEO_422,
         VLC_CODEC_VDPAU_VIDEO_444,
         VLC_CODEC_VDPAU_OUTPUT,
-        VLC_CODEC_ANDROID_OPAQUE, 0 },         FAKE_FMT() },
+        VLC_CODEC_ANDROID_OPAQUE,
+        VLC_CODEC_MMAL_OPAQUE, 0 },            FAKE_FMT() },
 
     { { 0 },                                   FAKE_FMT() }
 };
-- 
1.9.3




More information about the vlc-devel mailing list