diff options
-rw-r--r-- | toxav/codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/codec.c b/toxav/codec.c index ae146ccf..71d24e87 100644 --- a/toxav/codec.c +++ b/toxav/codec.c | |||
@@ -294,7 +294,7 @@ static int init_audio_encoder(CSSession *cs) | |||
294 | { | 294 | { |
295 | int rc = OPUS_OK; | 295 | int rc = OPUS_OK; |
296 | cs->audio_encoder = opus_encoder_create(cs->audio_encoder_sample_rate, | 296 | cs->audio_encoder = opus_encoder_create(cs->audio_encoder_sample_rate, |
297 | cs->audio_encoder_channels, OPUS_APPLICATION_AUDIO, &rc); | 297 | cs->audio_encoder_channels, OPUS_APPLICATION_VOIP, &rc); |
298 | 298 | ||
299 | if ( rc != OPUS_OK ) { | 299 | if ( rc != OPUS_OK ) { |
300 | LOGGER_ERROR("Error while starting audio encoder: %s", opus_strerror(rc)); | 300 | LOGGER_ERROR("Error while starting audio encoder: %s", opus_strerror(rc)); |