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
09b7f634
Commit
09b7f634
authored
Sep 13, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout_window: inline vout_window_Control()
parent
1697d2f3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
13 deletions
+10
-13
include/vlc_vout_window.h
include/vlc_vout_window.h
+10
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/video_output/window.c
src/video_output/window.c
+0
-11
No files found.
include/vlc_vout_window.h
View file @
09b7f634
...
@@ -148,7 +148,16 @@ static inline int vout_window_vaControl(vout_window_t *window, int query,
...
@@ -148,7 +148,16 @@ static inline int vout_window_vaControl(vout_window_t *window, int query,
*
*
* @warning The caller must own the window, as vout_window_t is not thread safe.
* @warning The caller must own the window, as vout_window_t is not thread safe.
*/
*/
VLC_API
int
vout_window_Control
(
vout_window_t
*
,
int
query
,
...);
static
inline
int
vout_window_Control
(
vout_window_t
*
window
,
int
query
,
...)
{
va_list
ap
;
int
ret
;
va_start
(
ap
,
query
);
ret
=
vout_window_vaControl
(
window
,
query
,
ap
);
va_end
(
ap
);
return
ret
;
}
/**
/**
* Configures the window manager state for this window.
* Configures the window manager state for this window.
...
...
src/libvlccore.sym
View file @
09b7f634
...
@@ -623,7 +623,6 @@ vout_OSDSlider
...
@@ -623,7 +623,6 @@ vout_OSDSlider
vout_OSDText
vout_OSDText
vout_Request
vout_Request
vout_window_New
vout_window_New
vout_window_Control
vout_window_Delete
vout_window_Delete
vout_NewDisplay
vout_NewDisplay
vout_DeleteDisplay
vout_DeleteDisplay
...
...
src/video_output/window.c
View file @
09b7f634
...
@@ -138,14 +138,3 @@ void vout_window_Delete(vout_window_t *window)
...
@@ -138,14 +138,3 @@ void vout_window_Delete(vout_window_t *window)
vlc_module_unload
(
w
->
module
,
vout_window_stop
,
window
);
vlc_module_unload
(
w
->
module
,
vout_window_stop
,
window
);
vlc_object_release
(
window
);
vlc_object_release
(
window
);
}
}
int
vout_window_Control
(
vout_window_t
*
window
,
int
query
,
...)
{
va_list
args
;
va_start
(
args
,
query
);
int
ret
=
window
->
control
(
window
,
query
,
args
);
va_end
(
args
);
return
ret
;
}
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