Page 1 of 1

NativeLibVlc.cs

Posted: 15 Apr 2007 03:14
by eiden
I couldn't get the fullscreen to work.

Look at line 1132 (public bool Fullscreen).

I changed from:

Code: Select all

SetVlcObjectInt(ObjectType.VLC_OBJECT_VLC, "fullscreen", value ? 1 : 0);
to:

Code: Select all

SetVlcObjectInt(ObjectType.VLC_OBJECT_VOUT, "fullscreen", value ? 1 : 0);
After that the vlcObject.Fullscreen = true worked.