sdp_codec_to_str

Change-Id: I297d425eeac47a83c0f0f2e25b834d2b889c7598
This commit is contained in:
Neels Hofmeyr 2024-02-25 03:33:30 +01:00
parent ee8f99308c
commit 0f6d1effd6
1 changed files with 5 additions and 0 deletions

View File

@ -677,3 +677,8 @@ enum mgcp_codecs sdp_audio_codec_to_mgcp_codec(const struct sdp_audio_codec *cod
}
return NO_MGCP_CODEC;
}
char *sdp_codec_to_str(const struct osmo_sdp_codec *codec)
{
return osmo_sdp_codec_to_str_c(OTC_SELECT, codec);
}