Commit 2776c67e authored by Jean-Paul Saman's avatar Jean-Paul Saman

modules/video_filter/deinterlace.c: make unused parameter 'p_old'

parent d659fcdc
......@@ -1643,6 +1643,7 @@ static void Flush( filter_t *p_filter )
static int Mouse( filter_t *p_filter,
vlc_mouse_t *p_mouse, const vlc_mouse_t *p_old, const vlc_mouse_t *p_new )
{
VLC_UNUSED(p_old);
*p_mouse = *p_new;
if( p_filter->p_sys->b_half_height )
p_mouse->i_y *= 2;
......
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