Commit 6767b442 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Store configuration integer as 64-bits values

parent f8d899e7
...@@ -137,16 +137,10 @@ struct config_category_t ...@@ -137,16 +137,10 @@ struct config_category_t
typedef union typedef union
{ {
char *psz; char *psz;
int i; int64_t i;
float f; float f;
} module_value_t; } module_value_t;
typedef union
{
int i;
float f;
} module_nvalue_t;
struct module_config_t struct module_config_t
{ {
char *psz_type; /* Configuration subtype */ char *psz_type; /* Configuration subtype */
...@@ -156,8 +150,8 @@ struct module_config_t ...@@ -156,8 +150,8 @@ struct module_config_t
module_value_t value; /* Option value */ module_value_t value; /* Option value */
module_value_t orig; module_value_t orig;
module_value_t saved; module_value_t saved;
module_nvalue_t min; module_value_t min;
module_nvalue_t max; module_value_t max;
/* Function to call when commiting a change */ /* Function to call when commiting a change */
vlc_callback_t pf_callback; vlc_callback_t pf_callback;
...@@ -199,8 +193,8 @@ struct module_config_t ...@@ -199,8 +193,8 @@ struct module_config_t
* data. * data.
*****************************************************************************/ *****************************************************************************/
VLC_EXPORT( int, config_GetType, (vlc_object_t *, const char *) LIBVLC_USED ); VLC_EXPORT( int, config_GetType, (vlc_object_t *, const char *) LIBVLC_USED );
VLC_EXPORT( int, config_GetInt, (vlc_object_t *, const char *) LIBVLC_USED ); VLC_EXPORT( int64_t, config_GetInt, (vlc_object_t *, const char *) LIBVLC_USED );
VLC_EXPORT( void, config_PutInt, (vlc_object_t *, const char *, int) ); VLC_EXPORT( void, config_PutInt, (vlc_object_t *, const char *, int64_t) );
VLC_EXPORT( float, config_GetFloat, (vlc_object_t *, const char *) LIBVLC_USED ); VLC_EXPORT( float, config_GetFloat, (vlc_object_t *, const char *) LIBVLC_USED );
VLC_EXPORT( void, config_PutFloat, (vlc_object_t *, const char *, float) ); VLC_EXPORT( void, config_PutFloat, (vlc_object_t *, const char *, float) );
VLC_EXPORT( char *, config_GetPsz, (vlc_object_t *, const char *) LIBVLC_USED ); VLC_EXPORT( char *, config_GetPsz, (vlc_object_t *, const char *) LIBVLC_USED );
......
...@@ -499,7 +499,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -499,7 +499,7 @@ static void Run( intf_thread_t *p_intf )
msg_rc( STATUS_CHANGE "( new input: %s )", psz_uri ); msg_rc( STATUS_CHANGE "( new input: %s )", psz_uri );
free( psz_uri ); free( psz_uri );
msg_rc( STATUS_CHANGE "( audio volume: %d )", msg_rc( STATUS_CHANGE "( audio volume: %d )",
config_GetInt( p_intf, "volume" )); (int)config_GetInt( p_intf, "volume" ));
} }
var_AddCallback( p_input, "intf-event", InputEvent, p_intf ); var_AddCallback( p_input, "intf-event", InputEvent, p_intf );
} }
...@@ -900,7 +900,7 @@ static int VolumeChanged( vlc_object_t *p_this, char const *psz_cmd, ...@@ -900,7 +900,7 @@ static int VolumeChanged( vlc_object_t *p_this, char const *psz_cmd,
vlc_mutex_lock( &p_intf->p_sys->status_lock ); vlc_mutex_lock( &p_intf->p_sys->status_lock );
msg_rc( STATUS_CHANGE "( audio volume: %d )", msg_rc( STATUS_CHANGE "( audio volume: %d )",
config_GetInt( p_this, "volume") ); (int)config_GetInt( p_this, "volume") );
vlc_mutex_unlock( &p_intf->p_sys->status_lock ); vlc_mutex_unlock( &p_intf->p_sys->status_lock );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -1414,7 +1414,7 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd, ...@@ -1414,7 +1414,7 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
msg_rc( STATUS_CHANGE "( new input: %s )", psz_uri ); msg_rc( STATUS_CHANGE "( new input: %s )", psz_uri );
free( psz_uri ); free( psz_uri );
msg_rc( STATUS_CHANGE "( audio volume: %d )", msg_rc( STATUS_CHANGE "( audio volume: %d )",
config_GetInt( p_intf, "volume" )); (int)config_GetInt( p_intf, "volume" ));
PL_LOCK; PL_LOCK;
int status = playlist_Status(p_playlist); int status = playlist_Status(p_playlist);
......
...@@ -141,7 +141,7 @@ int config_GetType( vlc_object_t *p_this, const char *psz_name ) ...@@ -141,7 +141,7 @@ int config_GetType( vlc_object_t *p_this, const char *psz_name )
* represented by an integer (CONFIG_ITEM_INTEGER and * represented by an integer (CONFIG_ITEM_INTEGER and
* CONFIG_ITEM_BOOL). * CONFIG_ITEM_BOOL).
*****************************************************************************/ *****************************************************************************/
int config_GetInt( vlc_object_t *p_this, const char *psz_name ) int64_t config_GetInt( vlc_object_t *p_this, const char *psz_name )
{ {
module_config_t *p_config; module_config_t *p_config;
...@@ -160,7 +160,7 @@ int config_GetInt( vlc_object_t *p_this, const char *psz_name ) ...@@ -160,7 +160,7 @@ int config_GetInt( vlc_object_t *p_this, const char *psz_name )
return -1; return -1;
} }
int val; int64_t val;
vlc_rwlock_rdlock (&config_lock); vlc_rwlock_rdlock (&config_lock);
val = p_config->value.i; val = p_config->value.i;
...@@ -306,7 +306,8 @@ void config_PutPsz( vlc_object_t *p_this, ...@@ -306,7 +306,8 @@ void config_PutPsz( vlc_object_t *p_this,
* represented by an integer (CONFIG_ITEM_INTEGER and * represented by an integer (CONFIG_ITEM_INTEGER and
* CONFIG_ITEM_BOOL). * CONFIG_ITEM_BOOL).
*****************************************************************************/ *****************************************************************************/
void config_PutInt( vlc_object_t *p_this, const char *psz_name, int i_value ) void config_PutInt( vlc_object_t *p_this, const char *psz_name,
int64_t i_value )
{ {
module_config_t *p_config; module_config_t *p_config;
vlc_value_t oldval; vlc_value_t oldval;
......
...@@ -1542,8 +1542,8 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search ) ...@@ -1542,8 +1542,8 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
if( p_item->min.i || p_item->max.i ) if( p_item->min.i || p_item->max.i )
{ {
sprintf( psz_buffer, "%s [%i .. %i]", psz_type, sprintf( psz_buffer, "%s [%"PRId64" .. %"PRId64"]",
p_item->min.i, p_item->max.i ); psz_type, p_item->min.i, p_item->max.i );
psz_type = psz_buffer; psz_type = psz_buffer;
} }
......
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