codec: add missing osmo_amr_type_name function.

We have value strings for osmo_amr_type, but we do not have a function
that returns us the strings.

Change-Id: I694f56b032537440db6264df5e6a6aa3a2992175
This commit is contained in:
Philipp Maier 2021-08-23 15:42:51 +02:00
parent 11da4a4abd
commit 2bd4bc94f6
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,9 @@ enum osmo_amr_type {
AMR_NO_DATA = 15,
};
static inline const char *osmo_amr_type_name(enum osmo_amr_type type)
{ return get_value_string(osmo_amr_type_names, type); }
enum osmo_amr_quality {
AMR_BAD = 0,
AMR_GOOD = 1