Commit 75208d54 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Make sure to get the right unit

parent 59f25960
...@@ -462,49 +462,49 @@ static void Run( intf_thread_t *p_intf ) ...@@ -462,49 +462,49 @@ static void Run( intf_thread_t *p_intf )
} }
else if( i_action == ACTIONID_JUMP_BACKWARD_3SEC && b_seekable ) else if( i_action == ACTIONID_JUMP_BACKWARD_3SEC && b_seekable )
{ {
val.i_time = (-3000000 * ((mtime_t)(1 << i_times))); val.i_time = (-3000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
else if( i_action == ACTIONID_JUMP_FORWARD_3SEC && b_seekable ) else if( i_action == ACTIONID_JUMP_FORWARD_3SEC && b_seekable )
{ {
val.i_time = (3000000 * ((mtime_t)(1 << i_times))); val.i_time = (3000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
else if( i_action == ACTIONID_JUMP_BACKWARD_10SEC && b_seekable ) else if( i_action == ACTIONID_JUMP_BACKWARD_10SEC && b_seekable )
{ {
val.i_time = (-10000000 * ((mtime_t)(1 << i_times))); val.i_time = (-10000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
else if( i_action == ACTIONID_JUMP_FORWARD_10SEC && b_seekable ) else if( i_action == ACTIONID_JUMP_FORWARD_10SEC && b_seekable )
{ {
val.i_time = (10000000 * ((mtime_t)(1 << i_times))); val.i_time = (10000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
else if( i_action == ACTIONID_JUMP_BACKWARD_1MIN && b_seekable ) else if( i_action == ACTIONID_JUMP_BACKWARD_1MIN && b_seekable )
{ {
val.i_time = (-60000000 * ((mtime_t)(1 << i_times))); val.i_time = (-60000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
else if( i_action == ACTIONID_JUMP_FORWARD_1MIN && b_seekable ) else if( i_action == ACTIONID_JUMP_FORWARD_1MIN && b_seekable )
{ {
val.i_time = (60000000 * ((mtime_t)(1 << i_times))); val.i_time = (60000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
else if( i_action == ACTIONID_JUMP_BACKWARD_5MIN && b_seekable ) else if( i_action == ACTIONID_JUMP_BACKWARD_5MIN && b_seekable )
{ {
val.i_time = (-300000000 * ((mtime_t)(1 << i_times))); val.i_time = (-300000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
else if( i_action == ACTIONID_JUMP_FORWARD_5MIN && b_seekable ) else if( i_action == ACTIONID_JUMP_FORWARD_5MIN && b_seekable )
{ {
val.i_time = (300000000 * ((mtime_t)(1 << i_times))); val.i_time = (300000000L * ((mtime_t)(1 << i_times)));
var_Set( p_input, "time-offset", val ); var_Set( p_input, "time-offset", val );
DisplayPosition( p_intf, p_vout, p_input ); DisplayPosition( p_intf, p_vout, p_input );
} }
......
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