Commit 195f9041 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx vout: reenabled. will break compilation until fixed

parent 9982d496
......@@ -51,5 +51,8 @@ SOURCES_macosx = \
fspanel.h \
eyetv.h \
eyetv.m \
vout.h \
vout.m \
voutgl.m \
$(NULL)
......@@ -417,7 +417,7 @@ static VLCExtended *_o_sharedInstance = nil;
if( p_vout != NULL )
{
p_real_vout = NULL; // [VLCVoutView realVout: p_vout];
p_real_vout = [VLCVoutView realVout: p_vout];
var_Set( p_real_vout, "macosx-opaqueness", val );
while ((o_window = [o_enumerator nextObject]))
......
......@@ -353,7 +353,7 @@ static VLCMain *_o_sharedMainInstance = nil;
o_wizard = [[VLCWizard alloc] init];
o_extended = nil;
o_bookmarks = [[VLCBookmarks alloc] init];
o_embedded_list = NULL; // [[VLCEmbeddedList alloc] init];
o_embedded_list = [[VLCEmbeddedList alloc] init];
o_coredialogs = [[VLCCoreDialogProvider alloc] init];
o_info = [[VLCInfo alloc] init];
......
......@@ -44,10 +44,8 @@
int OpenIntf ( vlc_object_t * );
void CloseIntf ( vlc_object_t * );
#if 0
int OpenVideoGL ( vlc_object_t * );
void CloseVideoGL ( vlc_object_t * );
#endif
/*****************************************************************************
* Module descriptor
......@@ -123,7 +121,6 @@ vlc_module_begin ()
add_bool( "macosx-mediakeys-background", true, USE_MEDIAKEYS_BACKGROUND_TEXT, USE_MEDIAKEYS_BACKGROUND_LONGTEXT,
false )
#if 0
add_submodule ()
set_description( "Mac OS X OpenGL" )
set_capability( "opengl provider", 100 )
......@@ -141,6 +138,5 @@ vlc_module_begin ()
false )
add_bool( "macosx-background", false, BACKGROUND_TEXT, BACKGROUND_LONGTEXT,
false )
#endif
vlc_module_end ()
/*****************************************************************************
* vout.m: MacOS X video output module
*****************************************************************************
* Copyright (C) 2001-2009 the VideoLAN team
* Copyright (C) 2001-2011 the VideoLAN team
* $Id$
*
* Authors: Colin Delacroix <colin@zoy.org>
......@@ -51,6 +51,8 @@
#import "embeddedwindow.h"
#include <vlc_common.h>
#include <vlc_vout_window.h>
#include <vlc_vout_display.h>
#include <vlc_keys.h>
/*****************************************************************************
......
......@@ -953,6 +953,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
var_Create( p_libvlc, "drawable-nsobject", VLC_VAR_ADDRESS );
#endif
#ifdef WIN32
var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_ADDRESS );
......
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