Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
195f9041
Commit
195f9041
authored
Feb 05, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx vout: reenabled. will break compilation until fixed
parent
9982d496
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
7 deletions
+9
-7
modules/gui/macosx/Modules.am
modules/gui/macosx/Modules.am
+3
-0
modules/gui/macosx/extended.m
modules/gui/macosx/extended.m
+1
-1
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-1
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+0
-4
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+3
-1
src/libvlc.c
src/libvlc.c
+1
-0
No files found.
modules/gui/macosx/Modules.am
View file @
195f9041
...
@@ -51,5 +51,8 @@ SOURCES_macosx = \
...
@@ -51,5 +51,8 @@ SOURCES_macosx = \
fspanel.h \
fspanel.h \
eyetv.h \
eyetv.h \
eyetv.m \
eyetv.m \
vout.h \
vout.m \
voutgl.m \
$(NULL)
$(NULL)
modules/gui/macosx/extended.m
View file @
195f9041
...
@@ -417,7 +417,7 @@ static VLCExtended *_o_sharedInstance = nil;
...
@@ -417,7 +417,7 @@ static VLCExtended *_o_sharedInstance = nil;
if
(
p_vout
!=
NULL
)
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
);
var_Set
(
p_real_vout
,
"macosx-opaqueness"
,
val
);
while
((
o_window
=
[
o_enumerator
nextObject
]))
while
((
o_window
=
[
o_enumerator
nextObject
]))
...
...
modules/gui/macosx/intf.m
View file @
195f9041
...
@@ -353,7 +353,7 @@ static VLCMain *_o_sharedMainInstance = nil;
...
@@ -353,7 +353,7 @@ static VLCMain *_o_sharedMainInstance = nil;
o_wizard
=
[[
VLCWizard
alloc
]
init
];
o_wizard
=
[[
VLCWizard
alloc
]
init
];
o_extended
=
nil
;
o_extended
=
nil
;
o_bookmarks
=
[[
VLCBookmarks
alloc
]
init
];
o_bookmarks
=
[[
VLCBookmarks
alloc
]
init
];
o_embedded_list
=
NULL
;
//
[[VLCEmbeddedList alloc] init];
o_embedded_list
=
[[
VLCEmbeddedList
alloc
]
init
];
o_coredialogs
=
[[
VLCCoreDialogProvider
alloc
]
init
];
o_coredialogs
=
[[
VLCCoreDialogProvider
alloc
]
init
];
o_info
=
[[
VLCInfo
alloc
]
init
];
o_info
=
[[
VLCInfo
alloc
]
init
];
...
...
modules/gui/macosx/macosx.m
View file @
195f9041
...
@@ -44,10 +44,8 @@
...
@@ -44,10 +44,8 @@
int OpenIntf ( vlc_object_t * );
int OpenIntf ( vlc_object_t * );
void CloseIntf ( vlc_object_t * );
void CloseIntf ( vlc_object_t * );
#if 0
int OpenVideoGL ( vlc_object_t * );
int OpenVideoGL ( vlc_object_t * );
void CloseVideoGL ( vlc_object_t * );
void CloseVideoGL ( vlc_object_t * );
#endif
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -123,7 +121,6 @@ vlc_module_begin ()
...
@@ -123,7 +121,6 @@ vlc_module_begin ()
add_bool( "macosx-mediakeys-background", true, USE_MEDIAKEYS_BACKGROUND_TEXT, USE_MEDIAKEYS_BACKGROUND_LONGTEXT,
add_bool( "macosx-mediakeys-background", true, USE_MEDIAKEYS_BACKGROUND_TEXT, USE_MEDIAKEYS_BACKGROUND_LONGTEXT,
false )
false )
#if 0
add_submodule ()
add_submodule ()
set_description( "Mac OS X OpenGL" )
set_description( "Mac OS X OpenGL" )
set_capability( "opengl provider", 100 )
set_capability( "opengl provider", 100 )
...
@@ -141,6 +138,5 @@ vlc_module_begin ()
...
@@ -141,6 +138,5 @@ vlc_module_begin ()
false )
false )
add_bool( "macosx-background", false, BACKGROUND_TEXT, BACKGROUND_LONGTEXT,
add_bool( "macosx-background", false, BACKGROUND_TEXT, BACKGROUND_LONGTEXT,
false )
false )
#endif
vlc_module_end ()
vlc_module_end ()
modules/gui/macosx/vout.m
View file @
195f9041
/*****************************************************************************
/*****************************************************************************
* vout.m: MacOS X video output module
* vout.m: MacOS X video output module
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001-20
09
the VideoLAN team
* Copyright (C) 2001-20
11
the VideoLAN team
* $Id$
* $Id$
*
*
* Authors: Colin Delacroix <colin@zoy.org>
* Authors: Colin Delacroix <colin@zoy.org>
...
@@ -51,6 +51,8 @@
...
@@ -51,6 +51,8 @@
#import "embeddedwindow.h"
#import "embeddedwindow.h"
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_vout_window.h>
#include <vlc_vout_display.h>
#include <vlc_keys.h>
#include <vlc_keys.h>
/*****************************************************************************
/*****************************************************************************
...
...
src/libvlc.c
View file @
195f9041
...
@@ -953,6 +953,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
...
@@ -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-left"
,
VLC_VAR_INTEGER
);
var_Create
(
p_libvlc
,
"drawable-clip-bottom"
,
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-clip-right"
,
VLC_VAR_INTEGER
);
var_Create
(
p_libvlc
,
"drawable-nsobject"
,
VLC_VAR_ADDRESS
);
#endif
#endif
#ifdef WIN32
#ifdef WIN32
var_Create
(
p_libvlc
,
"drawable-hwnd"
,
VLC_VAR_ADDRESS
);
var_Create
(
p_libvlc
,
"drawable-hwnd"
,
VLC_VAR_ADDRESS
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment