Commit 58609589 authored by Antoine Cellerier's avatar Antoine Cellerier

Real fix for time/length issues in VLM ([17130] didn't fix anything)

Needs to be backported
parent 1105c8b0
......@@ -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 ) ); \
free( psz_tmp );
APPEND_INPUT_INFO( "position", "%f", Float );
APPEND_INPUT_INFO( "time", "%d", Integer );
APPEND_INPUT_INFO( "length", "%d", Integer );
APPEND_INPUT_INFO( "time", I64Fi, Time );
APPEND_INPUT_INFO( "length", I64Fi, Time );
APPEND_INPUT_INFO( "rate", "%d", Integer );
APPEND_INPUT_INFO( "title", "%d", Integer );
APPEND_INPUT_INFO( "chapter", "%d", Integer );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment