[vlc-devel] [PATCH] dbus_player: publish the ticks in microseconds

Steve Lhomme robux4 at ycbcr.xyz
Wed Jul 4 17:52:39 CEST 2018


I don't know DBUS so I'm not sure if the microseconds are published as 
such or if we can transmit with any resolution.


On 2018-07-04 17:44, Steve Lhomme wrote:
> ---
>   modules/control/dbus/dbus_player.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/modules/control/dbus/dbus_player.c b/modules/control/dbus/dbus_player.c
> index 133b9c5b54..035e5407d5 100644
> --- a/modules/control/dbus/dbus_player.c
> +++ b/modules/control/dbus/dbus_player.c
> @@ -51,7 +51,7 @@ MarshalPosition( intf_thread_t *p_intf, DBusMessageIter *container )
>           i_pos = 0;
>       else
>       {
> -        i_pos = var_GetInteger( p_input, "time" );
> +        i_pos = US_FROM_VLC_TICK(var_GetInteger( p_input, "time" ));
>           vlc_object_release( p_input );
>       }
>   
> @@ -99,7 +99,7 @@ DBUS_METHOD( SetPosition )
>   
>       if( input != NULL )
>       {
> -        var_SetInteger( input, "time", i_pos );
> +        var_SetInteger( input, "time", VLC_TICK_FROM_US(i_pos) );
>           vlc_object_release( input );
>       }
>   
> @@ -130,7 +130,7 @@ DBUS_METHOD( Seek )
>       if( p_input && var_GetBool( p_input, "can-seek" ) )
>       {
>           vlc_tick_t i_pos = var_GetInteger( p_input, "time" ) + i_step;
> -        var_SetInteger( p_input, "time", (i_pos >= 0) ? i_pos : 0 );
> +        var_SetInteger( p_input, "time", (i_pos >= 0) ? VLC_TICK_FROM_US(i_pos) : 0 );
>       }
>   
>       if( p_input )
> @@ -547,7 +547,7 @@ DBUS_SIGNAL( SeekedSignal )
>   
>       if( p_input )
>       {
> -        i_pos = var_GetInteger( p_input, "time" );
> +        i_pos = US_FROM_VLC_TICK(var_GetInteger( p_input, "time" ));
>           vlc_object_release( p_input );
>       }
>   
> -- 
> 2.17.0
>
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel



More information about the vlc-devel mailing list