Commit 3503ab25 authored by Rafaël Carré's avatar Rafaël Carré

video_output: avoids unused parameter warnings

parent 689dd889
......@@ -411,6 +411,7 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
*****************************************************************************/
static void Display( vout_thread_t *p_vout, picture_t *p_pic )
{
VLC_UNUSED(p_pic);
caca_refresh_display( p_vout->p_sys->p_dp );
}
......@@ -339,4 +339,5 @@ static void Display( vout_thread_t *p_vout, picture_t *p_pic )
static void End( vout_thread_t *p_vout )
{
VLC_UNUSED(p_vout);
}
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