Hi all<br>
<br>
I am trying to write a new video filter for VLC, I can add a new filter
checkbox to the extra panel but cannot find how vlc implements that
filter.<br>
all i can see at the moment is that it puts the name into the config file <br>
<br>
ChangeVFiltersString( p_intf, vfilters[i_filter].psz_filter ,<br>
                             
event.IsChecked() ? VLC_TRUE : VLC_FALSE );<br>
<br>
which then does<br>
<br>
config_PutPsz( p_intf, "vout-filter", psz_string );<br>
<br>
so the name of the filter is now in the config structure<br>
<br>
but then i lose it, does the renderer then parse the config structure
and pass control to the functions defined in <videofilter>.c?<br>
<br>
any help would be appreciated<br>
<br>
Thanx <br>