aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-01-19 05:52:58 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-02-09 05:17:39 +0100
commit199f9dd1faa565677dfbdf9a2e3f19f56bbad411 (patch)
tree6134cf2b210ef0f3e449b8e84452259d707c8598
parent58458dad8e7903020fdffcf48b86b4707ac39842 (diff)
sdp_msg: increase max codecs to 64
-rw-r--r--include/osmocom/msc/sdp_msg.h2
1 files changed, 1 insertions, 1 deletions
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 {