Commit a26821d0 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Readibility.

parent 93a719b8
...@@ -270,8 +270,8 @@ static int Init( vout_thread_t *p_vout ) ...@@ -270,8 +270,8 @@ static int Init( vout_thread_t *p_vout )
p_vout->output.i_height = p_vout->p_sys->i_height; p_vout->output.i_height = p_vout->p_sys->i_height;
/* Assume we have square pixels */ /* Assume we have square pixels */
p_vout->output.i_aspect = p_vout->p_sys->i_width p_vout->output.i_aspect = (p_vout->p_sys->i_width
* VOUT_ASPECT_FACTOR / p_vout->p_sys->i_height; * VOUT_ASPECT_FACTOR) / p_vout->p_sys->i_height;
/* Clear the screen */ /* Clear the screen */
memset( p_vout->p_sys->p_video, 0, p_vout->p_sys->i_page_size ); memset( p_vout->p_sys->p_video, 0, p_vout->p_sys->i_page_size );
......
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