From: Felix Paul Kühne Date: Sat, 27 Jun 2009 22:04:38 +0000 (+0200) Subject: macosx: fixed video output X-Git-Tag: 1.1.0-ff~5210 X-Git-Url: http://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=commitdiff_plain;h=6223f1203fd37e3c67215b7f11bdb5bd92c17b28;ds=sidebyside macosx: fixed video output --- diff --git a/modules/gui/macosx/voutgl.m b/modules/gui/macosx/voutgl.m index a6e751d8bd..4a542e6bc7 100644 --- a/modules/gui/macosx/voutgl.m +++ b/modules/gui/macosx/voutgl.m @@ -103,7 +103,6 @@ static void aglUnlock ( vout_thread_t * p_vout ); int OpenVideoGL ( vlc_object_t * p_this ) { vout_thread_t * p_vout = (vout_thread_t *) p_this; - vlc_value_t value_drawable; if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) ) { @@ -119,8 +118,9 @@ int OpenVideoGL ( vlc_object_t * p_this ) memset( p_vout->p_sys, 0, sizeof( vout_sys_t ) ); #ifndef __x86_64__ - var_Get( p_vout->p_libvlc, "drawable-agl", &value_drawable ); - if( value_drawable.i_int != 0 ) + int i_drawable_agl; + i_drawable_agl = var_GetInteger( p_vout->p_libvlc, "drawable-agl" ); + if( i_drawable_agl > 0 ) { static const GLint ATTRIBUTES[] = { AGL_WINDOW, @@ -208,7 +208,6 @@ void CloseVideoGL ( vlc_object_t * p_this ) { vout_thread_t * p_vout = (vout_thread_t *) p_this; - msg_Dbg( p_this, "Closing" ); #ifndef __x86_64__ if( p_vout->p_sys->b_embedded )