From 4bce6bd411c34068fd111b8f550e9bfd69b9b6cc Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Wed, 13 May 2026 11:22:08 +0200 Subject: [PATCH] MT#61856 call.h: fix `stream_params` typo Not `media_session_bandiwdth` but `media_session_bandwidth`. Change-Id: I2a6b40c441f2f24842f9149303dbef0fe5cae5db --- daemon/call.c | 2 +- daemon/sdp.c | 2 +- include/call.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon/call.c b/daemon/call.c index 9eaeed5cd..99794adcf 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -3267,7 +3267,7 @@ static void media_update_attrs(struct call_media *media, struct stream_params *s t_queue_init(&sp->all_attributes); /* bandwidth */ - media->sdp_media_bandwidth = sp->media_session_bandiwdth; + media->sdp_media_bandwidth = sp->media_session_bandwidth; media->sdp_information = call_str_cpy(&sp->sdp_information); } diff --git a/daemon/sdp.c b/daemon/sdp.c index 1e122d8fa..86d861c69 100644 --- a/daemon/sdp.c +++ b/daemon/sdp.c @@ -2056,7 +2056,7 @@ bool sdp_streams(const sdp_sessions_q *sessions, sdp_streams_q *streams, sdp_ng_ bf_set_clear(&sp->sp_flags, SP_FLAG_MEDIA_HANDOVER, flags->media_handover); /* b= (bandwidth), is parsed in sdp_parse() */ - sp->media_session_bandiwdth = media->bandwidth; + sp->media_session_bandwidth = media->bandwidth; sp->sdp_information = media->information; diff --git a/include/call.h b/include/call.h index 34b08b0f4..c38968e45 100644 --- a/include/call.h +++ b/include/call.h @@ -382,7 +382,7 @@ struct stream_params { struct t38_options t38_options; str tls_id; int media_sdp_id; - struct session_bandwidth media_session_bandiwdth; + struct session_bandwidth media_session_bandwidth; str sdp_information; extmap_q extmap; str label;