Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
d8ad1230
Commit
d8ad1230
authored
Apr 24, 2008
by
Antoine Lejeune
Committed by
Christophe Mutricy
Apr 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bug introduced by
920692ff
Signed-off-by:
Christophe Mutricy
<
xtophe@videolan.org
>
parent
0f84287f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/input/input.c
src/input/input.c
+3
-1
No files found.
src/input/input.c
View file @
d8ad1230
...
...
@@ -929,6 +929,7 @@ static void StartTitle( input_thread_t * p_input )
int
i
,
i_delay
;
char
*
psz
;
char
*
psz_subtitle
;
int64_t
i_length
;
/* Start title/chapter */
...
...
@@ -952,6 +953,7 @@ static void StartTitle( input_thread_t * p_input )
p_input
->
p
->
i_start
=
I64C
(
1000000
)
*
var_GetInteger
(
p_input
,
"start-time"
);
p_input
->
p
->
i_stop
=
I64C
(
1000000
)
*
var_GetInteger
(
p_input
,
"stop-time"
);
p_input
->
p
->
i_run
=
I64C
(
1000000
)
*
var_GetInteger
(
p_input
,
"run-time"
);
i_length
=
var_GetTime
(
p_input
,
"length"
);
if
(
p_input
->
p
->
i_run
<
0
)
{
msg_Warn
(
p_input
,
"invalid run-time ignored"
);
...
...
@@ -960,7 +962,7 @@ static void StartTitle( input_thread_t * p_input )
if
(
p_input
->
p
->
i_start
>
0
)
{
if
(
p_input
->
p
->
i_start
>=
val
.
i_time
)
if
(
p_input
->
p
->
i_start
>=
i_length
)
{
msg_Warn
(
p_input
,
"invalid start-time ignored"
);
}
...
...
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