]> git.sesse.net Git - vlc/commitdiff
Compilation fix for osdmenu.
authorLaurent Aimar <fenrir@videolan.org>
Sun, 18 Apr 2010 14:19:45 +0000 (16:19 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 18 Apr 2010 14:27:50 +0000 (16:27 +0200)
modules/video_filter/osdmenu.c

index 377f7407b23d657002931dac12b9d1c0af06c98b..b9f9807f60f554beed353cd5a1d7575c066adcc5 100644 (file)
@@ -648,8 +648,8 @@ static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
     vout_thread_t *p_vout = (vout_thread_t*)p_sys->p_vout;
     int i_x = newval.coords.x;
     int i_y = newval.coords.y;
-    int v_h = p_vout->output.i_height;
-    int v_w = p_vout->output.i_width;
+    int v_h = p_vout->fmt_out.i_height;
+    int v_w = p_vout->fmt_out.i_width;
 
     if( i_y < 0 || i_x < 0 || i_y >= v_h || i_x >= v_w )
         return VLC_SUCCESS;