mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
FS-7508: parse both bw vars the same
This commit is contained in:
committed by
Michael Jerris
parent
58a8d5daa6
commit
8d3f93152e
@@ -7295,6 +7295,15 @@ SWITCH_DECLARE(void) switch_core_media_gen_local_sdp(switch_core_session_t *sess
|
||||
if (vbw) {
|
||||
int v = atoi(vbw);
|
||||
bw = v;
|
||||
|
||||
if (switch_stristr("KB", vbw)) {
|
||||
bw *= 8;
|
||||
} else if (switch_stristr("mb", vbw)) {
|
||||
bw *= 1024;
|
||||
} else if (switch_stristr("MB", vbw)) {
|
||||
bw *= 8192;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (bw > 0) {
|
||||
|
Reference in New Issue
Block a user