[vlc-commits] plugin base: cleanup

Felix Paul Kühne git at videolan.org
Mon Dec 31 19:08:31 CET 2012


npapi-vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Dec 31 19:08:22 2012 +0100| [32b34e5cd2a19d035aacd34547ddedfceee47e50] | committer: Felix Paul Kühne

plugin base: cleanup

> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=32b34e5cd2a19d035aacd34547ddedfceee47e50
---

 npapi/vlcplugin_base.cpp |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/npapi/vlcplugin_base.cpp b/npapi/vlcplugin_base.cpp
index 669539f..cb65a7f 100644
--- a/npapi/vlcplugin_base.cpp
+++ b/npapi/vlcplugin_base.cpp
@@ -99,9 +99,7 @@ NPError VlcPluginBase::init(int argc, char* const argn[], char* const argv[])
 #endif
 
     /* locate VLC module path */
-#ifdef XP_MACOSX
-    ppsz_argv[ppsz_argc++] = "--vout=vmem"; //vout_macosx";
-#elif defined(XP_WIN)
+#ifdef XP_WIN
     HKEY h_key;
     DWORD i_type, i_data = MAX_PATH + 1;
     char p_data[MAX_PATH + 1];
@@ -122,7 +120,7 @@ NPError VlcPluginBase::init(int argc, char* const argn[], char* const argv[])
     }
     ppsz_argv[ppsz_argc++] = "--no-one-instance";
 
-#endif /* XP_MACOSX */
+#endif
 
     /* common settings */
     ppsz_argv[ppsz_argc++] = "-vv";



More information about the vlc-commits mailing list