diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/egl/gsteglimage.c b/subprojects/gst-plugins-base/gst-libs/gst/gl/egl/gsteglimage.c index ca75cbb22e..cee66acf4b 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/egl/gsteglimage.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/egl/gsteglimage.c @@ -99,6 +99,10 @@ #define DRM_FORMAT_RGBA1010102 fourcc_code('R', 'A', '3', '0') #endif +#ifndef DRM_FORMAT_ABGR16161616 +#define DRM_FORMAT_ABGR16161616 fourcc_code('A', 'B', '4', '8') +#endif + #ifndef EGL_LINUX_DMA_BUF_EXT #define EGL_LINUX_DMA_BUF_EXT 0x3270 #endif @@ -577,6 +581,10 @@ _drm_rgba_fourcc_from_info (const GstVideoInfo * info, int plane, *out_format = GST_GL_RGB10_A2; return rgb10a2_fourcc; + case GST_VIDEO_FORMAT_Y412_LE: + *out_format = GST_GL_RGBA16; + return DRM_FORMAT_ABGR16161616; + default: GST_ERROR ("Unsupported format for DMABuf."); return -1;