Need to convert all commandline arguments into unicode
While fixing #830 (closed), I've moved the unicode conversion of argv[] into Win32-specific system init. It turned out, that it's better to convert all arguments, since it enables the user to use localised filenames also in global or mrl-specific options, e.g.:
--sout=std{access=file,mux=ts,dst="Prvá časť.mpg"}
:sout=std{access=file,mux=ts,dst="Prvá časť.mpg"}
The code also has a comment pointing this way:
/* FIXME: should we convert options to UTF-8 as well ?? */
So I suggest to do it for other OSs as well.