Commit 97bc1ee3 authored by Sam Hocevar's avatar Sam Hocevar

* ./modules/video_chroma/i420_rgb16.c: fixed a segfault in the 24/32bpp

    chroma conversion.
parent 5019f45d
......@@ -2,7 +2,7 @@
* i420_rgb16.c : YUV to bitmap RGB conversion module for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: i420_rgb16.c,v 1.6.2.1 2002/06/01 10:43:54 sam Exp $
* $Id: i420_rgb16.c,v 1.6.2.2 2002/11/22 12:13:12 sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
......@@ -337,7 +337,7 @@ void _M( I420_RGB32 )( vout_thread_t *p_vout, picture_t *p_src,
int i_right_margin;
int i_rewind;
int i_scale_count; /* scale modulo counter */
int i_chroma_width = p_vout->render.i_width / 4; /* chroma width */
int i_chroma_width = p_vout->render.i_width / 2; /* chroma width */
u32 * p_pic_start; /* beginning of the current line for copy */
#if defined (MODULE_NAME_IS_chroma_i420_rgb)
int i_uval, i_vval; /* U and V samples */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment