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
d9b1afb3
Commit
d9b1afb3
authored
Jan 14, 2013
by
Ludovic Fauvet
Committed by
Jean-Baptiste Kempf
Jan 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ogg: implement SET_SEEKPOINT
Close #6895 Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
bcb37b8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
modules/demux/ogg.c
modules/demux/ogg.c
+21
-1
No files found.
modules/demux/ogg.c
View file @
d9b1afb3
...
...
@@ -533,7 +533,27 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
const
int
i_seekpoint
=
(
int
)
va_arg
(
args
,
int
);
if
(
i_seekpoint
>
p_sys
->
i_seekpoints
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
// Seek( p_demux, p_sys->pp_seekpoints[i_seekpoint]->i_time_offset );
if
(
p_sys
->
i_bos
>
0
)
{
return
VLC_EGENERIC
;
}
for
(
i
=
0
;
i
<
p_sys
->
i_streams
;
i
++
)
{
logical_stream_t
*
p_stream
=
p_sys
->
pp_stream
[
i
];
/* we'll trash all the data until we find the next pcr */
p_stream
->
b_reinit
=
true
;
p_stream
->
i_pcr
=
-
1
;
p_stream
->
i_interpolated_pcr
=
-
1
;
p_stream
->
i_previous_granulepos
=
-
1
;
ogg_stream_reset
(
&
p_stream
->
os
);
}
ogg_sync_reset
(
&
p_sys
->
oy
);
int64_t
i_block
=
p_sys
->
pp_seekpoints
[
i_seekpoint
]
->
i_time_offset
*
p_sys
->
i_bitrate
/
INT64_C
(
8000000
);
if
(
stream_Seek
(
p_demux
->
s
,
i_block
)
)
return
VLC_EGENERIC
;
return
VLC_SUCCESS
;
}
default:
...
...
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