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

Julian Scheel julian at jusst.de
Fri Apr 4 14:54:41 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>
---
 include/vlc_fourcc.h | 3 +++
 src/misc/fourcc.c    | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index 46903ea..62a268d 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -276,6 +276,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 5c6bc28..82a0839 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -2068,8 +2068,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.1




More information about the vlc-devel mailing list