Im trying to reproduce the settings in the vlc app under tools->preferences.
Under Display
- Accelerated video output (overlay) - checked
- Use hardware YUV->RGB conversions - checked
- Window Decorations - checked
- Output : DIrectX (DirectDraw) Video output - Selected
this is the command options I have set:
Code: Select all
const char * const vlc_args[] = {
"--no-one-instance",
"--reset-plugins-cache",
"--no-media-library",
"--no-stats",
"--no-osd",
"--directx-hw-yuv",
"--no-video-title-show",
"--intf=dummy"};
Is there any way to dump the params that VLC Application is using? I thought the Debug window use to do that.
Any help is much appreciated.