Commit 088c1ccc authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

input: do not set variables explicitly to zero

This is the default value (for non-inherited variables).
parent d073cd5f
...@@ -143,14 +143,10 @@ void input_ControlVarInit ( input_thread_t *p_input ) ...@@ -143,14 +143,10 @@ void input_ControlVarInit ( input_thread_t *p_input )
/* Position */ /* Position */
var_Create( p_input, "position", VLC_VAR_FLOAT ); var_Create( p_input, "position", VLC_VAR_FLOAT );
var_Create( p_input, "position-offset", VLC_VAR_FLOAT ); var_Create( p_input, "position-offset", VLC_VAR_FLOAT );
val.f_float = 0.0;
var_Change( p_input, "position", VLC_VAR_SETVALUE, &val, NULL );
/* Time */ /* Time */
var_Create( p_input, "time", VLC_VAR_TIME ); var_Create( p_input, "time", VLC_VAR_TIME );
var_Create( p_input, "time-offset", VLC_VAR_TIME ); /* relative */ var_Create( p_input, "time-offset", VLC_VAR_TIME ); /* relative */
val.i_time = 0;
var_Change( p_input, "time", VLC_VAR_SETVALUE, &val, NULL );
/* Bookmark */ /* Bookmark */
var_Create( p_input, "bookmark", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE | var_Create( p_input, "bookmark", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE |
...@@ -192,8 +188,6 @@ void input_ControlVarInit ( input_thread_t *p_input ) ...@@ -192,8 +188,6 @@ void input_ControlVarInit ( input_thread_t *p_input )
val.i_time = INT64_C(1000) * var_GetInteger( p_input, "audio-desync" ); val.i_time = INT64_C(1000) * var_GetInteger( p_input, "audio-desync" );
var_Change( p_input, "audio-delay", VLC_VAR_SETVALUE, &val, NULL ); var_Change( p_input, "audio-delay", VLC_VAR_SETVALUE, &val, NULL );
var_Create( p_input, "spu-delay", VLC_VAR_TIME ); var_Create( p_input, "spu-delay", VLC_VAR_TIME );
val.i_time = 0;
var_Change( p_input, "spu-delay", VLC_VAR_SETVALUE, &val, NULL );
/* Video ES */ /* Video ES */
var_Create( p_input, "video-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE ); var_Create( p_input, "video-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
...@@ -218,8 +212,6 @@ void input_ControlVarInit ( input_thread_t *p_input ) ...@@ -218,8 +212,6 @@ void input_ControlVarInit ( input_thread_t *p_input )
var_Create( p_input, "bookmarks", VLC_VAR_STRING | VLC_VAR_DOINHERIT ); var_Create( p_input, "bookmarks", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
var_Create( p_input, "length", VLC_VAR_TIME ); var_Create( p_input, "length", VLC_VAR_TIME );
val.i_time = 0;
var_Change( p_input, "length", VLC_VAR_SETVALUE, &val, NULL );
var_Create( p_input, "bit-rate", VLC_VAR_INTEGER ); var_Create( p_input, "bit-rate", VLC_VAR_INTEGER );
var_Create( p_input, "sample-rate", VLC_VAR_INTEGER ); var_Create( p_input, "sample-rate", VLC_VAR_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