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
fb3b3f25
Commit
fb3b3f25
authored
Jul 12, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input "time" is a time variable, fix assertion failure
parent
73dc6d35
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/text/strings.c
src/text/strings.c
+2
-2
No files found.
src/text/strings.c
View file @
fb3b3f25
...
...
@@ -825,7 +825,7 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
if
(
p_item
&&
p_input
)
{
mtime_t
i_duration
=
input_item_GetDuration
(
p_item
);
int64_t
i_time
=
var_Get
Integer
(
p_input
,
"time"
);
int64_t
i_time
=
var_Get
Time
(
p_input
,
"time"
);
snprintf
(
buf
,
10
,
"%02d:%02d:%02d"
,
(
int
)(
(
i_duration
-
i_time
)
/
3600000000
),
(
int
)(
(
(
i_duration
-
i_time
)
/
60000000
)
%
60
),
...
...
@@ -893,7 +893,7 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
case
'T'
:
if
(
p_input
)
{
int64_t
i_time
=
var_Get
Integer
(
p_input
,
"time"
);
int64_t
i_time
=
var_Get
Time
(
p_input
,
"time"
);
snprintf
(
buf
,
10
,
"%02d:%02d:%02d"
,
(
int
)(
i_time
/
(
3600000000
)
),
(
int
)(
(
i_time
/
(
60000000
)
)
%
60
),
...
...
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