Commit c69c9aae authored by Jérome Decoodt's avatar Jérome Decoodt

Bug fix and change in parse function

parent 746cabe9
...@@ -472,6 +472,11 @@ static int EqzInit( aout_filter_t *p_filter, int i_rate ) ...@@ -472,6 +472,11 @@ static int EqzInit( aout_filter_t *p_filter, int i_rate )
/* Register preset bands (for intf) if : */ /* Register preset bands (for intf) if : */
/* We have no bands info --> the preset info must be given to the intf */ /* We have no bands info --> the preset info must be given to the intf */
/* or The bands info matches the preset */ /* or The bands info matches the preset */
if (p_sys->psz_newbands == NULL)
{
msg_Err(p_filter, "No preset selected");
return (VLC_EGENERIC);
}
if( ( *(val2.psz_string) && if( ( *(val2.psz_string) &&
strstr( p_sys->psz_newbands, val2.psz_string ) ) || !*val2.psz_string ) strstr( p_sys->psz_newbands, val2.psz_string ) ) || !*val2.psz_string )
{ {
...@@ -668,7 +673,7 @@ static int BandsCallback( vlc_object_t *p_this, char const *psz_cmd, ...@@ -668,7 +673,7 @@ static int BandsCallback( vlc_object_t *p_this, char const *psz_cmd,
p_sys->f_amp[i] = EqzConvertdB( f ); p_sys->f_amp[i] = EqzConvertdB( f );
if( !*p ) break; /* end of line */ if( !*p ) break; /* end of line */
p++; p=p_next+1;
} }
} }
......
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