[vlc-commits] jpeg: 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:39:28 2016 -0400| [866e01d5f27bdcdd45b37d358b7849e07bedc8c6] | committer: Tristan Matthews
jpeg: fix inverted chroma
Due to fix in 5133b722d47ebe1a87918f9bb5f33e00cf2fa2de
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=866e01d5f27bdcdd45b37d358b7849e07bedc8c6
---
modules/codec/jpeg.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/modules/codec/jpeg.c b/modules/codec/jpeg.c
index 35cd6a1..32e6581 100644
--- a/modules/codec/jpeg.c
+++ b/modules/codec/jpeg.c
@@ -445,9 +445,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 = p_sys->p_jpeg.output_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;
int i_otag; /* Orientation tag has valid range of 1-8. 1 is normal orientation, 0 = unspecified = normal */
i_otag = jpeg_GetOrientation( &p_sys->p_jpeg );
More information about the vlc-commits
mailing list