enable downmix by default
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 13 Mar 2008 19:19:00 +0000 (19:19 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 13 Mar 2008 19:19:00 +0000 (19:19 +0000)
lib/python/Components/AVSwitch.py

index 65c979d..1b27418 100644 (file)
@@ -160,5 +160,5 @@ def InitAVSwitch():
        if can_downmix:
                def setAC3Downmix(configElement):
                        open("/proc/stb/audio/ac3", "w").write(configElement.value and "downmix" or "passthrough")
-               config.av.downmix_ac3 = ConfigYesNo(default = False)
+               config.av.downmix_ac3 = ConfigYesNo(default = True)
                config.av.downmix_ac3.addNotifier(setAC3Downmix)