mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-04 10:38:45 -04:00
DSD demod: serial DV volume fix
This commit is contained in:
parent
7365b2dece
commit
8df057d7c5
@ -83,7 +83,7 @@ void DVSerialWorker::handleInputMessages()
|
||||
if (MsgMbeDecode::match(*message))
|
||||
{
|
||||
MsgMbeDecode *decodeMsg = (MsgMbeDecode *) message;
|
||||
int dBVolume = (decodeMsg->getVolumeIndex() - 30) / 2;
|
||||
int dBVolume = (decodeMsg->getVolumeIndex() - 30) / 4;
|
||||
float volume = pow(10.0, dBVolume / 10.0f);
|
||||
int upsampling = decodeMsg->getUpsampling();
|
||||
upsampling = upsampling > 6 ? 6 : upsampling < 1 ? 1 : upsampling;
|
||||
|
Loading…
Reference in New Issue
Block a user