[vlc-commits] bpg: fix inverted chroma

Tristan Matthews git at videolan.org
Wed Aug 10 15:07:51 CEST 2016


vlc | branch: master | Tristan Matthews <tmatth at videolan.org> | Wed Aug 10 08:37:32 2016 -0400| [a0a42d96576a45b87a2c7e3e722f9d5eb225f339] | committer: Tristan Matthews

bpg: fix inverted chroma

Due to fix in 5133b722d47ebe1a87918f9bb5f33e00cf2fa2de

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

 modules/codec/bpg.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/modules/codec/bpg.c b/modules/codec/bpg.c
index a39b0ce..a37869c 100644
--- a/modules/codec/bpg.c
+++ b/modules/codec/bpg.c
@@ -132,9 +132,6 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
     p_dec->fmt_out.video.i_visible_height = p_dec->fmt_out.video.i_height = img_info.height;
     p_dec->fmt_out.video.i_sar_num = 1;
     p_dec->fmt_out.video.i_sar_den = 1;
-    p_dec->fmt_out.video.i_rmask = 0x000000ff;
-    p_dec->fmt_out.video.i_gmask = 0x0000ff00;
-    p_dec->fmt_out.video.i_bmask = 0x00ff0000;
 
     /* Get a new picture */
     p_pic = decoder_NewPicture( p_dec );



More information about the vlc-commits mailing list