Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
0432a0e5
Commit
0432a0e5
authored
Dec 01, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics.
parent
de1eb83f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/input/demux.h
src/input/demux.h
+2
-2
src/input/input.c
src/input/input.c
+3
-3
No files found.
src/input/demux.h
View file @
0432a0e5
...
...
@@ -36,9 +36,9 @@
/* stream_t *s could be null and then it mean a access+demux in one */
#define demux_New( a, b, c, d, e, f,g ) __demux_New(VLC_OBJECT(a),b,c,d,e,f,g)
demux_t
*
__demux_New
(
vlc_object_t
*
p_obj
,
const
char
*
psz_access
,
const
char
*
psz_demux
,
const
char
*
psz_path
,
stream_t
*
s
,
es_out_t
*
out
,
bool
);
demux_t
*
__demux_New
(
vlc_object_t
*
p_obj
,
const
char
*
psz_access
,
const
char
*
psz_demux
,
const
char
*
psz_path
,
stream_t
*
s
,
es_out_t
*
out
,
bool
);
void
demux_Delete
(
demux_t
*
);
void
demux_Delete
(
demux_t
*
);
static
inline
int
demux_Demux
(
demux_t
*
p_demux
)
{
...
...
src/input/input.c
View file @
0432a0e5
...
...
@@ -560,7 +560,7 @@ static void MainLoopDemux( input_thread_t *p_input, bool *pb_changed, mtime_t *p
(
p_input
->
p
->
i_run
>
0
&&
*
pi_start_mdate
+
p_input
->
p
->
i_run
<
mdate
()
)
)
i_ret
=
0
;
/* EOF */
else
i_ret
=
p_input
->
p
->
input
.
p_demux
->
pf_demux
(
p_input
->
p
->
input
.
p_demux
);
i_ret
=
demux_Demux
(
p_input
->
p
->
input
.
p_demux
);
if
(
i_ret
>
0
)
{
...
...
@@ -2650,13 +2650,13 @@ static void SlaveDemux( input_thread_t *p_input )
if
(
i_stime
>=
i_time
)
break
;
if
(
(
i_ret
=
in
->
p_demux
->
pf_d
emux
(
in
->
p_demux
)
)
<=
0
)
if
(
(
i_ret
=
demux_D
emux
(
in
->
p_demux
)
)
<=
0
)
break
;
}
}
else
{
i_ret
=
in
->
p_demux
->
pf_d
emux
(
in
->
p_demux
);
i_ret
=
demux_D
emux
(
in
->
p_demux
);
}
if
(
i_ret
<=
0
)
...
...
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