Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
58609589
Commit
58609589
authored
Oct 18, 2006
by
dionoea
Browse files
Real fix for time/length issues in VLM ([17130] didn't fix anything)
Needs to be backported
parent
1105c8b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/misc/vlm.c
View file @
58609589
...
@@ -1745,8 +1745,8 @@ static vlm_message_t *vlm_Show( vlm_t *vlm, vlm_media_t *media,
...
@@ -1745,8 +1745,8 @@ static vlm_message_t *vlm_Show( vlm_t *vlm, vlm_media_t *media,
vlm_MessageAdd( msg_instance, vlm_MessageNew( a, psz_tmp ) ); \
vlm_MessageAdd( msg_instance, vlm_MessageNew( a, psz_tmp ) ); \
free( psz_tmp );
free( psz_tmp );
APPEND_INPUT_INFO
(
"position"
,
"%f"
,
Float
);
APPEND_INPUT_INFO
(
"position"
,
"%f"
,
Float
);
APPEND_INPUT_INFO
(
"time"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"time"
,
I64Fi
,
Time
);
APPEND_INPUT_INFO
(
"length"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"length"
,
I64Fi
,
Time
);
APPEND_INPUT_INFO
(
"rate"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"rate"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"title"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"title"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"chapter"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"chapter"
,
"%d"
,
Integer
);
...
...
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