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
1e5e694b
Commit
1e5e694b
authored
Jul 31, 2006
by
gbazin
Browse files
* modules/demux/ps.c: fixed breakage
parent
195e4bcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/ps.c
View file @
1e5e694b
...
...
@@ -124,6 +124,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
i_scr
=
-
1
;
p_sys
->
i_length
=
-
1
;
p_sys
->
i_current_pts
=
(
mtime_t
)
0
;
p_sys
->
i_time_track
=
-
1
;
p_sys
->
b_lost_sync
=
VLC_FALSE
;
p_sys
->
b_have_pack
=
VLC_FALSE
;
...
...
@@ -441,7 +442,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
case
DEMUX_GET_TIME
:
pi64
=
(
int64_t
*
)
va_arg
(
args
,
int64_t
*
);
if
(
p_sys
->
i_current_pts
>
0
)
if
(
p_sys
->
i_time_track
>=
0
&&
p_sys
->
i_current_pts
>
0
)
{
*
pi64
=
p_sys
->
i_current_pts
-
p_sys
->
tk
[
p_sys
->
i_time_track
].
i_first_pts
;
return
VLC_SUCCESS
;
...
...
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