disable a filter
Posted: 18 Mar 2011 00:59
Somewhere in VLC's code there is a function called vout_EnableFilter, which is indirectly used in functions like libvlc_video_set_adjust_int, in order to enable a certain video-filter.
At this time, someone using LibVLC is limited to changing effects parameters for which functions have been written (like the adjust, marquee, etc. video-filters).
I was wondering if it's possible to disable a filter on a playing stream, when a user doesn't want it anymore?
It is possible to enable an effect when a stream is already playing, and also to change the parameters. I am trying to implement a more generic way to add or remove and alter video-filters (or other options), that should work for any existing filter. But I also want to include a way to disable a filter again.
At this time, someone using LibVLC is limited to changing effects parameters for which functions have been written (like the adjust, marquee, etc. video-filters).
I was wondering if it's possible to disable a filter on a playing stream, when a user doesn't want it anymore?
It is possible to enable an effect when a stream is already playing, and also to change the parameters. I am trying to implement a more generic way to add or remove and alter video-filters (or other options), that should work for any existing filter. But I also want to include a way to disable a filter again.