Files
MuditaOS/module-audio/Audio/test/testfiles/testProfile.json
Marcin Lyda 6f257d38db [MOS-303] Add playback path gain params to json
Additional pair of parameters has been added
to current implementation of equalizer to
enable changing playback path gain during
audio path fine-tuning
2022-03-22 09:13:25 +01:00

49 lines
858 B
JSON

{
"samplerate": 44100,
"bitWidth": 8,
"flags": 1,
"outputVolume": 1,
"inputGain": 2,
"inputPath": 2,
"outputPath": 3,
"playbackPathGain": 2,
"playbackPathAtten": 3,
"filterParams": [
{
"filterType": "None",
"frequency": 1000.2,
"samplerate": 44100,
"Q": 0.7,
"gain": 10
},
{
"filterType": "HighPass",
"frequency": 2000.0,
"samplerate": 8000,
"Q": 1.7,
"gain": -10
},
{
"filterType": "LowPass",
"frequency": 10000,
"samplerate": 44100,
"Q": 0.75,
"gain": 2.5
},
{
"filterType": "Notch",
"frequency": 2500,
"samplerate": 44100,
"Q": 4.4,
"gain": 5.3
},
{
"filterType": "BandPass",
"frequency": 1000,
"samplerate": 44100,
"Q": 0.7,
"gain": 10
}
]
}