[vlc-commits] plugin base: provide a sane set of default options on the Mac so we have a hearable audio level
Felix Paul Kühne
git at videolan.org
Tue Jan 28 15:01:23 CET 2014
npapi-vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue Jan 28 12:00:22 2014 +0100| [02b5b1b61936b53ef68cf58ecc2f3783e9b63da9] | committer: Felix Paul Kühne
plugin base: provide a sane set of default options on the Mac so we have a hearable audio level
> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=02b5b1b61936b53ef68cf58ecc2f3783e9b63da9
---
npapi/vlcplugin_base.cpp | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/npapi/vlcplugin_base.cpp b/npapi/vlcplugin_base.cpp
index c02bd36..bd9722e 100644
--- a/npapi/vlcplugin_base.cpp
+++ b/npapi/vlcplugin_base.cpp
@@ -125,6 +125,12 @@ NPError VlcPluginBase::init(int argc, char* const argn[], char* const argv[])
#endif
#ifdef XP_MACOSX
ppsz_argv[ppsz_argc++] = "--vout=vout_coregraphicslayer";
+ ppsz_argv[ppsz_argc++] = "--scaletempo-stride=30";
+ ppsz_argv[ppsz_argc++] = "--scaletempo-overlap=0,2";
+ ppsz_argv[ppsz_argc++] = "--scaletempo-search=14";
+ ppsz_argv[ppsz_argc++] = "--auhal-volume=100";
+ ppsz_argv[ppsz_argc++] = "--auhal-audio-device=0";
+ ppsz_argv[ppsz_argc++] = "--no-volume-save";
#endif
/* common settings */
More information about the vlc-commits
mailing list