[vlc-commits] mmal: Register opaque fourcc in core as fake_fmt
Julian Scheel
git at videolan.org
Thu May 22 11:41:33 CEST 2014
vlc | branch: master | Julian Scheel <julian at jusst.de> | Wed May 21 13:46:39 2014 +0200| [d5545aaae244b88c72f691ebf10df67d34208cbd] | committer: Jean-Baptiste Kempf
mmal: Register opaque fourcc in core as fake_fmt
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>
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d5545aaae244b88c72f691ebf10df67d34208cbd
---
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() }
};
More information about the vlc-commits
mailing list