Commit 94e7a794 authored by Rémi Duraffort's avatar Rémi Duraffort

Marquee: remove a double var_AddCallback and add a missing var_DelCallback.

(cherry picked from commit 511fccb7)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 22dc069a
......@@ -224,9 +224,8 @@ static int CreateFilter( vlc_object_t *p_this )
var_AddCallback( p_filter, "marq-refresh", MarqueeCallback, p_sys );
CREATE_VAR( i_pos, Integer, "marq-position" );
CREATE_VAR( psz_marquee, String, "marq-marquee" );
CREATE_VAR( p_style->i_font_alpha, Integer, "marq-opacity" );
p_sys->p_style->i_font_alpha =
255 - var_CreateGetIntegerCommand( p_filter, "marq-opacity" );
p_sys->p_style->i_font_alpha = 255 - var_CreateGetIntegerCommand( p_filter,
"marq-opacity" );
var_AddCallback( p_filter, "marq-opacity", MarqueeCallback, p_sys );
CREATE_VAR( p_style->i_font_color, Integer, "marq-color" );
CREATE_VAR( p_style->i_font_size, Integer, "marq-size" );
......@@ -251,11 +250,12 @@ static void DestroyFilter( vlc_object_t *p_this )
var_Destroy( p_filter, var );
DEL_VAR( "marq-x" );
DEL_VAR( "marq-y" );
DEL_VAR( "marq-marquee" );
DEL_VAR( "marq-timeout" );
DEL_VAR( "marq-refresh" );
DEL_VAR( "marq-position" );
DEL_VAR( "marq-color" );
DEL_VAR( "marq-marquee" );
DEL_VAR( "marq-opacity" );
DEL_VAR( "marq-color" );
DEL_VAR( "marq-size" );
vlc_mutex_destroy( &p_sys->lock );
......
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