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
22e8f158
Commit
22e8f158
authored
Nov 15, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sout_MuxGetStream: fix prototype, sign warning
parent
50428add
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/vlc_sout.h
include/vlc_sout.h
+1
-1
src/stream_output/stream_output.c
src/stream_output/stream_output.c
+1
-1
No files found.
include/vlc_sout.h
View file @
22e8f158
...
...
@@ -158,7 +158,7 @@ VLC_API sout_input_t * sout_MuxAddStream( sout_mux_t *, es_format_t * ) VLC_USED
VLC_API
void
sout_MuxDeleteStream
(
sout_mux_t
*
,
sout_input_t
*
);
VLC_API
void
sout_MuxDelete
(
sout_mux_t
*
);
VLC_API
int
sout_MuxSendBuffer
(
sout_mux_t
*
,
sout_input_t
*
,
block_t
*
);
VLC_API
int
sout_MuxGetStream
(
sout_mux_t
*
,
int
,
mtime_t
*
);
VLC_API
int
sout_MuxGetStream
(
sout_mux_t
*
,
unsigned
,
mtime_t
*
);
static
inline
int
sout_MuxControl
(
sout_mux_t
*
p_mux
,
int
i_query
,
...
)
{
...
...
src/stream_output/stream_output.c
View file @
22e8f158
...
...
@@ -548,7 +548,7 @@ int sout_MuxSendBuffer( sout_mux_t *p_mux, sout_input_t *p_input,
/*****************************************************************************
* sout_MuxGetStream: find stream to be muxed
*****************************************************************************/
int
sout_MuxGetStream
(
sout_mux_t
*
p_mux
,
int
i_blocks
,
mtime_t
*
pi_dts
)
int
sout_MuxGetStream
(
sout_mux_t
*
p_mux
,
unsigned
i_blocks
,
mtime_t
*
pi_dts
)
{
mtime_t
i_dts
=
0
;
int
i_stream
=
-
1
;
...
...
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