Page 1 of 1
Manually setting video output module
Posted: 12 Aug 2008 09:50
by coldfire
How to set in the code that I want to use only glx or x11 or any other module?
i think the command line option is
vlc --module <module-name>
module-name can be x11,glx, xvideo
But I need to set it manually in the code ?
Re: Manually setting video output module
Posted: 13 Aug 2008 06:35
by Jean-Baptiste Kempf
vlc -Vglx ?
Re: Manually setting video output module
Posted: 19 Aug 2008 14:56
by xtophe
the bruteforce (and easy) solution is to remove all the .so of the video output module you don't want
the eleguant solution is to go where module_Need("video output", "any") is called and replace any with your module (note: fonction prototype from the top of my head i'm not sure of the numer and order of the arguments)
Re: Manually setting video output module
Posted: 19 Aug 2008 14:58
by xtophe
another solution is to increase a lot the score of the vout module you want to use