Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
b9fa7026
Commit
b9fa7026
authored
Oct 20, 2015
by
Rémi Denis-Courmont
Browse files
demux: de-inline demux_Control()
parent
987fc6e9
Changes
3
Show whitespace changes
Inline
Side-by-side
include/vlc_demux.h
View file @
b9fa7026
...
...
@@ -292,10 +292,7 @@ VLC_USED static inline int demux_Demux( demux_t *p_demux )
return
p_demux
->
pf_demux
(
p_demux
);
}
static
inline
int
demux_vaControl
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
{
return
p_demux
->
pf_control
(
p_demux
,
i_query
,
args
);
}
VLC_API
int
demux_vaControl
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
);
static
inline
int
demux_Control
(
demux_t
*
p_demux
,
int
i_query
,
...
)
{
...
...
src/input/demux.c
View file @
b9fa7026
...
...
@@ -262,6 +262,11 @@ void demux_Delete( demux_t *p_demux )
#define static_control_match(foo) \
static_assert((unsigned) DEMUX_##foo == STREAM_##foo, "Mismatch")
int
demux_vaControl
(
demux_t
*
demux
,
int
query
,
va_list
args
)
{
return
demux
->
pf_control
(
demux
,
query
,
args
);
}
/*****************************************************************************
* demux_vaControlHelper:
*****************************************************************************/
...
...
src/libvlccore.sym
View file @
b9fa7026
...
...
@@ -92,6 +92,7 @@ demux_Delete
demux_PacketizerDestroy
demux_PacketizerNew
demux_New
demux_vaControl
demux_vaControlHelper
dialog_ExtensionUpdate
dialog_Login
...
...
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