Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
1e5e694b
Commit
1e5e694b
authored
Jul 31, 2006
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/ps.c: fixed breakage
parent
195e4bcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/demux/ps.c
modules/demux/ps.c
+2
-1
No files found.
modules/demux/ps.c
View file @
1e5e694b
...
@@ -124,6 +124,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -124,6 +124,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
i_scr
=
-
1
;
p_sys
->
i_scr
=
-
1
;
p_sys
->
i_length
=
-
1
;
p_sys
->
i_length
=
-
1
;
p_sys
->
i_current_pts
=
(
mtime_t
)
0
;
p_sys
->
i_current_pts
=
(
mtime_t
)
0
;
p_sys
->
i_time_track
=
-
1
;
p_sys
->
b_lost_sync
=
VLC_FALSE
;
p_sys
->
b_lost_sync
=
VLC_FALSE
;
p_sys
->
b_have_pack
=
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 )
...
@@ -441,7 +442,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
case
DEMUX_GET_TIME
:
case
DEMUX_GET_TIME
:
pi64
=
(
int64_t
*
)
va_arg
(
args
,
int64_t
*
);
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
;
*
pi64
=
p_sys
->
i_current_pts
-
p_sys
->
tk
[
p_sys
->
i_time_track
].
i_first_pts
;
return
VLC_SUCCESS
;
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