[vlc-commits] chroma: chain: add BGRA fallback

Thomas Guillem git at videolan.org
Fri Mar 16 16:08:28 CET 2018


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Fri Mar 16 15:16:54 2018 +0100| [de90f7c04fd4d5854daf23b00426e84ef4f29f3c] | committer: Thomas Guillem

chroma: chain: add BGRA fallback

Mainly used by CVPX.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=de90f7c04fd4d5854daf23b00426e84ef4f29f3c
---

 modules/video_chroma/chain.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/video_chroma/chain.c b/modules/video_chroma/chain.c
index 123b3a594b..114021a4e1 100644
--- a/modules/video_chroma/chain.c
+++ b/modules/video_chroma/chain.c
@@ -78,6 +78,7 @@ static const vlc_fourcc_t pi_allowed_chromas_yuv[] = {
     ALLOWED_CHROMAS_YUV10,
     VLC_CODEC_RGB32,
     VLC_CODEC_RGB24,
+    VLC_CODEC_BGRA,
     0
 };
 
@@ -87,6 +88,7 @@ static const vlc_fourcc_t pi_allowed_chromas_yuv10[] = {
     VLC_CODEC_I422,
     VLC_CODEC_RGB32,
     VLC_CODEC_RGB24,
+    VLC_CODEC_BGRA,
     0
 };
 



More information about the vlc-commits mailing list