Commit cd19e8c8 authored by Rémi Duraffort's avatar Rémi Duraffort

video_filter_marq: fix strncmp length.

The comment seems to be irrelevant (the variable is called marq-color and not marq-col).
(cherry picked from commit 1b447443c9db0ec1d6b1952fd30cba8edc2b47df)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 87429637
...@@ -346,7 +346,7 @@ static int MarqueeCallback( vlc_object_t *p_this, char const *psz_var, ...@@ -346,7 +346,7 @@ static int MarqueeCallback( vlc_object_t *p_this, char const *psz_var,
VLC_UNUSED(p_this); VLC_UNUSED(p_this);
vlc_mutex_lock( &p_sys->lock ); vlc_mutex_lock( &p_sys->lock );
if( !strncmp( psz_var, "marq-marquee", 7 ) ) if( !strncmp( psz_var, "marq-marquee", 12 ) )
{ {
free( p_sys->psz_marquee ); free( p_sys->psz_marquee );
p_sys->psz_marquee = strdup( newval.psz_string ); p_sys->psz_marquee = strdup( newval.psz_string );
...@@ -359,15 +359,15 @@ static int MarqueeCallback( vlc_object_t *p_this, char const *psz_var, ...@@ -359,15 +359,15 @@ static int MarqueeCallback( vlc_object_t *p_this, char const *psz_var,
{ {
p_sys->i_yoff = newval.i_int; p_sys->i_yoff = newval.i_int;
} }
else if ( !strncmp( psz_var, "marq-color", 8 ) ) /* "marq-col" */ else if ( !strncmp( psz_var, "marq-color", 10 ) )
{ {
p_sys->p_style->i_font_color = newval.i_int; p_sys->p_style->i_font_color = newval.i_int;
} }
else if ( !strncmp( psz_var, "marq-opacity", 8 ) ) /* "marq-opa" */ else if ( !strncmp( psz_var, "marq-opacity", 12 ) )
{ {
p_sys->p_style->i_font_alpha = 255 - newval.i_int; p_sys->p_style->i_font_alpha = 255 - newval.i_int;
} }
else if ( !strncmp( psz_var, "marq-size", 6 ) ) else if ( !strncmp( psz_var, "marq-size", 9 ) )
{ {
p_sys->p_style->i_font_size = newval.i_int; p_sys->p_style->i_font_size = newval.i_int;
} }
...@@ -379,7 +379,7 @@ static int MarqueeCallback( vlc_object_t *p_this, char const *psz_var, ...@@ -379,7 +379,7 @@ static int MarqueeCallback( vlc_object_t *p_this, char const *psz_var,
{ {
p_sys->i_refresh = newval.i_int * 1000; p_sys->i_refresh = newval.i_int * 1000;
} }
else if ( !strncmp( psz_var, "marq-position", 8 ) ) else if ( !strncmp( psz_var, "marq-position", 13 ) )
/* willing to accept a match against marq-pos */ /* willing to accept a match against marq-pos */
{ {
p_sys->i_pos = newval.i_int; p_sys->i_pos = newval.i_int;
......
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