You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment it seams that the code of ambed handles DMR and C4FM signls as the same signal.
This causes that if you change the parameters in main.h influence both at the same time.
// Transcoding speech gains
#define CODECGAIN_AMBEPLUS -10 // in dB
#define CODECGAIN_AMBE2PLUS +10 // in dB
// Transcoding Tweaks
#define USE_AGC 0
#define AGC_CLAMPING 3 //clamps the AGC gain to +- this value
#define USE_BANDPASSFILTER 1
If there would be a solution to handle C4FM and DMR separate by indentifing the stream based on the header this would give us the chance to align C4FM and DMR in a way that DMR is not so loud and C4FM is not so silent .
The parameters could look like this:
// Transcoding speech gains
#define CODECGAIN_AMBEPLUS DMR -10 // in dB
#define CODECGAIN_AMBEPLUS C4FM -5 // in dB
#define CODECGAIN_AMBE2PLUS +10 // in dB
// Transcoding Tweaks
#define USE_AGC 0
#define AGC_CLAMPING 3 //clamps the AGC gain to +- this value
#define USE_BANDPASSFILTER 1
I am not good enough to read the code if this is possible but maybe someone can modify the code in that way that the parameters for C4FM and DMR could be separated.
The text was updated successfully, but these errors were encountered:
At the moment it seams that the code of ambed handles DMR and C4FM signls as the same signal.
This causes that if you change the parameters in main.h influence both at the same time.
// Transcoding speech gains
#define CODECGAIN_AMBEPLUS -10 // in dB
#define CODECGAIN_AMBE2PLUS +10 // in dB
// Transcoding Tweaks
#define USE_AGC 0
#define AGC_CLAMPING 3 //clamps the AGC gain to +- this value
#define USE_BANDPASSFILTER 1
If there would be a solution to handle C4FM and DMR separate by indentifing the stream based on the header this would give us the chance to align C4FM and DMR in a way that DMR is not so loud and C4FM is not so silent .
The parameters could look like this:
// Transcoding speech gains
#define CODECGAIN_AMBEPLUS DMR -10 // in dB
#define CODECGAIN_AMBEPLUS C4FM -5 // in dB
#define CODECGAIN_AMBE2PLUS +10 // in dB
// Transcoding Tweaks
#define USE_AGC 0
#define AGC_CLAMPING 3 //clamps the AGC gain to +- this value
#define USE_BANDPASSFILTER 1
I am not good enough to read the code if this is possible but maybe someone can modify the code in that way that the parameters for C4FM and DMR could be separated.
The text was updated successfully, but these errors were encountered: