Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
993626ef
Commit
993626ef
authored
Feb 21, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: avoid error with missing drawable-hwnd
parent
57c36282
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/video_output/drawable.c
modules/video_output/drawable.c
+0
-2
src/libvlc.c
src/libvlc.c
+3
-1
No files found.
modules/video_output/drawable.c
View file @
993626ef
...
@@ -44,8 +44,6 @@ vlc_module_begin ()
...
@@ -44,8 +44,6 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_VIDEO_VOUT
)
set_subcategory
(
SUBCAT_VIDEO_VOUT
)
set_capability
(
"vout window hwnd"
,
70
)
set_capability
(
"vout window hwnd"
,
70
)
set_callbacks
(
Open
,
Close
)
set_callbacks
(
Open
,
Close
)
//add_integer ("drawable-hwnd", 0, NULL, HWN_TEXT, HWND_LONGTEXT, true) /* How to ? */
// change_unsaveable ()
vlc_module_end
()
vlc_module_end
()
static
int
Control
(
vout_window_t
*
,
int
,
va_list
);
static
int
Control
(
vout_window_t
*
,
int
,
va_list
);
...
...
src/libvlc.c
View file @
993626ef
...
@@ -955,7 +955,9 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
...
@@ -955,7 +955,9 @@ 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
);
#ifdef WIN32
var_Create
(
p_libvlc
,
"drawable-hwnd"
,
VLC_VAR_ADDRESS
);
#endif
/*
/*
* Get input filenames given as commandline arguments
* Get input filenames given as commandline arguments
...
...
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