From 87c6243b3d8ebb6503d7bf65afdc8c19a0d3f53e Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 19 Jan 2024 05:52:58 +0100 Subject: [PATCH] sdp_msg: increase max codecs to 64 Change-Id: I3f88eb954de2f50b833297627f9717313778fd12 --- include/osmocom/msc/sdp_msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osmocom/msc/sdp_msg.h b/include/osmocom/msc/sdp_msg.h index e3ed8c7f8..72f437749 100644 --- a/include/osmocom/msc/sdp_msg.h +++ b/include/osmocom/msc/sdp_msg.h @@ -30,7 +30,7 @@ struct sdp_audio_codec { struct sdp_audio_codecs { unsigned int count; - struct sdp_audio_codec codec[16]; + struct sdp_audio_codec codec[64]; }; struct sdp_msg {