Update switch_core_media.c - Patch for #2226

Patch for #2226
This commit is contained in:
shaunjstokes 2024-10-14 13:18:57 +02:00 committed by GitHub
parent 9599739b7e
commit 2cb7ca2bbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -5517,6 +5517,10 @@ SWITCH_DECLARE(uint8_t) switch_core_media_negotiate_sdp(switch_core_session_t *s
uint32_t bit_rate = imp->bits_per_second; uint32_t bit_rate = imp->bits_per_second;
uint32_t codec_rate = imp->samples_per_second; uint32_t codec_rate = imp->samples_per_second;
if (!strcasecmp(map->rm_encoding, "opus")) {
codec_rate = imp->actual_samples_per_second;
}
if (imp->codec_type != SWITCH_CODEC_TYPE_AUDIO) { if (imp->codec_type != SWITCH_CODEC_TYPE_AUDIO) {
continue; continue;
} }