Commit fa478539 authored by Rafaël Carré's avatar Rafaël Carré

audiobargraph_a: use CFG_PREFIX

parent 8ccdd27c
......@@ -118,12 +118,12 @@ static int Open( vlc_object_t *p_this )
if( !p_sys )
return VLC_ENOMEM;
p_sys->bargraph = var_CreateGetIntegerCommand( p_filter, "audiobargraph_a-bargraph" );
p_sys->bargraph_repetition = var_CreateGetIntegerCommand( p_filter, "audiobargraph_a-bargraph_repetition" );
p_sys->silence = var_CreateGetIntegerCommand( p_filter, "audiobargraph_a-silence" );
p_sys->time_window = var_CreateGetIntegerCommand( p_filter, "audiobargraph_a-time_window" );
p_sys->alarm_threshold = var_CreateGetFloatCommand( p_filter, "audiobargraph_a-alarm_threshold" );
p_sys->repetition_time = var_CreateGetIntegerCommand( p_filter, "audiobargraph_a-repetition_time" );
p_sys->bargraph = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "bargraph" );
p_sys->bargraph_repetition = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "bargraph_repetition" );
p_sys->silence = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "silence" );
p_sys->time_window = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "time_window" );
p_sys->alarm_threshold = var_CreateGetFloatCommand( p_filter, CFG_PREFIX "alarm_threshold" );
p_sys->repetition_time = var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "repetition_time" );
p_sys->counter = 0;
p_sys->nbChannels = 0;
p_sys->first = NULL;
......
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