[vlmc-devel] VLCInstance: Remove plugin-path commented line.

Hugo Beauzée-Luyssen git at videolan.org
Sat Feb 8 00:47:06 CET 2014


vlmc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Fri Feb  7 23:57:12 2014 +0200| [22fa2a6ec9536d93be416ebe8386d3946d7a6aa1] | committer: Hugo Beauzée-Luyssen

VLCInstance: Remove plugin-path commented line.

Use VLC_PLUGIN_PATH env variable instead

> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=22fa2a6ec9536d93be416ebe8386d3946d7a6aa1
---

 src/LibVLCpp/VLCInstance.cpp |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/LibVLCpp/VLCInstance.cpp b/src/LibVLCpp/VLCInstance.cpp
index b086d65..8650896 100644
--- a/src/LibVLCpp/VLCInstance.cpp
+++ b/src/LibVLCpp/VLCInstance.cpp
@@ -26,6 +26,7 @@
 #include "SettingsManager.h"
 #include "VlmcDebug.h"
 
+#include <QProcessEnvironment>
 #include <QVector>
 
 using namespace LibVLCpp;
@@ -39,11 +40,9 @@ Instance::Instance( QObject* parent /*= NULL*/ ) : QObject( parent )
         << "--vout" << "dummy"
         << "--no-sub-autodetect-file"           // Don't detect subtitles
         // << "--no-audio"
-        // << "--plugin-path" << VLC_TREE "/modules",
         // << "--no-overlay",
         << "--no-disable-screensaver";             //No need to disable the screensaver, and save a thread.
 
-
     int     debugLevel = VLMC_GET_INT( "private/LogLevel" );
     if ( debugLevel == VlmcDebug::Debug )
         argv << "-vv";



More information about the Vlmc-devel mailing list