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
eb0ae71f
Commit
eb0ae71f
authored
Nov 14, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* backport [17751]: DEMUX_SET_TIME for mpeg-ps. Fixes relative TIME seeks (seek forward 5secs etc)
parent
53819adf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
modules/demux/ps.c
modules/demux/ps.c
+13
-0
No files found.
modules/demux/ps.c
View file @
eb0ae71f
...
@@ -482,6 +482,19 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
...
@@ -482,6 +482,19 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
case
DEMUX_SET_TIME
:
case
DEMUX_SET_TIME
:
i64
=
(
int64_t
)
va_arg
(
args
,
int64_t
);
if
(
p_sys
->
i_time_track
>=
0
&&
p_sys
->
i_current_pts
>
0
)
{
int64_t
i_now
=
p_sys
->
i_current_pts
-
p_sys
->
tk
[
p_sys
->
i_time_track
].
i_first_pts
;
int64_t
i_pos
=
stream_Tell
(
p_demux
->
s
);
int64_t
i_offset
=
i_pos
/
(
i_now
/
1000000
)
*
((
i64
-
i_now
)
/
1000000
);
stream_Seek
(
p_demux
->
s
,
i_pos
+
i_offset
);
es_out_Control
(
p_demux
->
out
,
ES_OUT_RESET_PCR
);
return
VLC_SUCCESS
;
}
return
VLC_EGENERIC
;
case
DEMUX_GET_FPS
:
case
DEMUX_GET_FPS
:
default:
default:
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
...
...
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