I'm trying to migrate my libvlc-based application from old good 0.8.x to new 1.x
I need to implemet things like deinterlace, cropping, adjust, etc.
So, I'm sending variables through libvlc_playlist_add_extended
This 4 things work out of box, like with 0.8.x
:vout-filter=deinterlace
:deinterlace-mode=bob
:aspect-ratio=4:3
:miface-addr=192.168.7.52
But other things don't
:vout-filter=deinterlace:adjust
:contrast=1.00
:brightness=1.00
:hue=0.00
:saturation=1.00
:gamma=1.00
:vout-filter=deinterlace:crop or deinterlace:adjust:crop
:autocrop=0
:crop-geometry=312x344+16+16
No result for both
I'm sorry, I'm not an experienced developer to understand how this things are implemented in QT GUI
Also I can't understand how to change brightness and etc in real time, in 0.8.6 I used vlc_object_find to find p_vout and then VLC_var_Set.
Maybe there is a compatibility list between variable-names for 0.8.x and 1.x ?