- commented out some useless code because of how bad windows handles environment vars

This commit is contained in:
Mark Vejvoda 2012-05-14 07:38:21 +00:00
parent b91f816f3e
commit 0a55a9b33d
1 changed files with 4 additions and 1 deletions

View File

@ -189,10 +189,12 @@ void VideoPlayer::PlayVideo() {
bool successLoadingVLC = false;
#ifdef HAS_LIBVLC
/*
* Initialise libVLC
* Initialize libVLC
*/
if(verboseEnabled) printf("Trying [%s]\n",getenv("VLC_PLUGIN_PATH"));
libvlc = libvlc_new(vlc_argc, &vlc_argv[0]);
/* It is meaningless to try all this because we have to restart mg to pickup new env vars
#if defined(WIN32)
if(libvlc == NULL) {
// For windows check registry for install path
@ -239,6 +241,7 @@ void VideoPlayer::PlayVideo() {
}
}
#endif
*/
if(libvlc != NULL) {
m = libvlc_media_new_path(libvlc, filename.c_str());