From 6223f1203fd37e3c67215b7f11bdb5bd92c17b28 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Felix=20Paul=20K=C3=BChne?= Date: Sun, 28 Jun 2009 00:04:38 +0200 Subject: [PATCH] macosx: fixed video output --- modules/gui/macosx/voutgl.m | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 ) -- 2.20.1