Author: duncan
Date: Sat Feb 17 10:13:50 2007
New Revision: 9222

Modified:
   branches/rel-1/freevo/src/plugins/ossmixer.py

Log:
Merged changes from rel-1.6
The mixer was always opening /dev/mixer


Modified: branches/rel-1/freevo/src/plugins/ossmixer.py
==============================================================================
--- branches/rel-1/freevo/src/plugins/ossmixer.py       (original)
+++ branches/rel-1/freevo/src/plugins/ossmixer.py       Sat Feb 17 10:13:50 2007
@@ -68,9 +68,9 @@
         # why are we trying to open it?
         if config.DEV_MIXER:    
             try:
-                self.mixfd = ossaudiodev.openmixer()
+                self.mixfd = ossaudiodev.openmixer(config.DEV_MIXER)
             except IOError:
-                print 'Couldn\'t open mixer %s' % config.DEV_MIXER
+                print 'Couldn\'t open mixer "%s"' % config.DEV_MIXER
                 return
 
         # init here

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to