mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 17:16:51 +00:00
Fix bug #1392: Wrong value for mixing LFE.
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
User johns
|
User johns
|
||||||
Date:
|
Date:
|
||||||
|
|
||||||
|
Fix bug #1392: Wrong value for mixing LFE.
|
||||||
Fix bug: wrong grab size, introduced with AMD VDPAU.
|
Fix bug: wrong grab size, introduced with AMD VDPAU.
|
||||||
Use VDR SPU decoder as default.
|
Use VDR SPU decoder as default.
|
||||||
Fix bug: grab image negative quality isn't the default 100.
|
Fix bug: grab image negative quality isn't the default 100.
|
||||||
|
2
audio.c
2
audio.c
@@ -486,7 +486,7 @@ static void AudioSurround2Stereo(const int16_t * in, int in_chan, int frames,
|
|||||||
r += in[3] * 200; // Rs
|
r += in[3] * 200; // Rs
|
||||||
l += in[4] * 300; // C
|
l += in[4] * 300; // C
|
||||||
r += in[4] * 300;
|
r += in[4] * 300;
|
||||||
l += in[5] * 300; // LFE
|
l += in[5] * 100; // LFE
|
||||||
r += in[5] * 100;
|
r += in[5] * 100;
|
||||||
break;
|
break;
|
||||||
case 7: // 7.0
|
case 7: // 7.0
|
||||||
|
Reference in New Issue
Block a user