sdp: allow more space for fmtp

In osmo-mgw, we recently chose 256 for maximum fmtp length.
Adjust to that here, too.

Change-Id: Ib9b9608d8d8f7ce34596a950dbc480e8a72ebf97
This commit is contained in:
Neels Hofmeyr 2023-12-08 05:53:23 +01:00 committed by neels
parent b80d93d57a
commit 82fad5dd46
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ struct sdp_audio_codec {
/* Like "GSM", "AMR", "EFR", ... */
char subtype_name[16];
unsigned int rate;
char fmtp[64];
char fmtp[256];
};
struct sdp_audio_codecs {