Change analog voice upper frequency from 3300 Hz to 3400 Hz
This commit is contained in:
@@ -11104,7 +11104,7 @@ int init_voice(int samplerate)
|
||||
int s, output_num;
|
||||
int rc;
|
||||
|
||||
rc = init_samplerate(&srstate, 8000.0, (double)samplerate, 3300.0);
|
||||
rc = init_samplerate(&srstate, 8000.0, (double)samplerate, 3400.0);
|
||||
if (rc < 0) {
|
||||
fprintf(stderr, "Failed to init sample rate conversion!\n");
|
||||
return -1;
|
||||
|
@@ -374,7 +374,7 @@ int console_init(const char *audiodev, int samplerate, int buffer, int loopback,
|
||||
if (!audiodev[0])
|
||||
return 0;
|
||||
|
||||
rc = init_samplerate(&console.srstate, 8000.0, (double)samplerate, 3300.0);
|
||||
rc = init_samplerate(&console.srstate, 8000.0, (double)samplerate, 3400.0);
|
||||
if (rc < 0) {
|
||||
LOGP(DSENDER, LOGL_ERROR, "Failed to init sample rate conversion!\n");
|
||||
goto error;
|
||||
|
@@ -143,7 +143,7 @@ int sender_create(sender_t *sender, const char *kanal, double sendefrequenz, dou
|
||||
}
|
||||
}
|
||||
|
||||
rc = init_samplerate(&sender->srstate, 8000.0, (double)samplerate, 3300.0);
|
||||
rc = init_samplerate(&sender->srstate, 8000.0, (double)samplerate, 3400.0);
|
||||
if (rc < 0) {
|
||||
LOGP(DSENDER, LOGL_ERROR, "Failed to init sample rate conversion!\n");
|
||||
goto error;
|
||||
|
Reference in New Issue
Block a user