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

Thomas Guillem git at videolan.org
Mon Mar 19 12:15:34 CET 2018


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

chroma: chain: add BGRA fallback

Mainly used by CVPX.

(cherry picked from commit de90f7c04fd4d5854daf23b00426e84ef4f29f3c)
Signed-off-by: Thomas Guillem <thomas at gllm.fr>

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

 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 e9b43a49bc..ace70439b8 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