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 65c979d8284f9f5914d6320120405df7456e8e7b..1b27418734b340c17e40172174544b863a1340d3 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)