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
a20eb781
Commit
a20eb781
authored
Jan 22, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* The vobsub param is Delay, not delay.
parent
869a316d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/vobsub.c
modules/demux/vobsub.c
+2
-2
No files found.
modules/demux/vobsub.c
View file @
a20eb781
...
...
@@ -602,7 +602,7 @@ static int ParseVobSubIDX( demux_t *p_demux )
current_sub
->
i_vobsub_location
=
i_location
;
}
}
else
if
(
!
strncmp
(
line
,
"
d
elay:"
,
6
)
)
else
if
(
!
strncmp
(
line
,
"
D
elay:"
,
6
)
)
{
/*
* delay: [sign]hh:mm:ss:mss
...
...
@@ -613,7 +613,7 @@ static int ParseVobSubIDX( demux_t *p_demux )
vobsub_track_t
*
current_tk
=
&
p_sys
->
track
[
p_sys
->
i_tracks
-
1
];
if
(
sscanf
(
line
,
"
d
elay: %d%n:%d:%d:%d"
,
if
(
sscanf
(
line
,
"
D
elay: %d%n:%d:%d:%d"
,
&
h
,
&
count
,
&
m
,
&
s
,
&
ms
)
>=
4
)
{
if
(
line
[
count
-
3
]
==
'-'
)
...
...
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