diff options
author | Johns <johns98@gmx.net> | 2013-07-08 14:36:08 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-07-08 14:36:08 +0200 |
commit | 34fd275b42d91f8638268d551a4726eeac2c273a (patch) | |
tree | 2b7477d968070b176ad25f835bd1d5b80b21b812 | |
parent | 64c11efc1b0ba0e7c77cf08bbdad64a0c69cfd75 (diff) | |
download | vdr-plugin-softhddevice-34fd275b42d91f8638268d551a4726eeac2c273a.tar.gz vdr-plugin-softhddevice-34fd275b42d91f8638268d551a4726eeac2c273a.tar.bz2 |
Fix bug #1392: Wrong value for mixing LFE.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | audio.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ User johns Date: + Fix bug #1392: Wrong value for mixing LFE. Fix bug: wrong grab size, introduced with AMD VDPAU. Use VDR SPU decoder as default. Fix bug: grab image negative quality isn't the default 100. @@ -486,7 +486,7 @@ static void AudioSurround2Stereo(const int16_t * in, int in_chan, int frames, r += in[3] * 200; // Rs l += in[4] * 300; // C r += in[4] * 300; - l += in[5] * 300; // LFE + l += in[5] * 100; // LFE r += in[5] * 100; break; case 7: // 7.0 |