fix ipacc_rtp_csd_fmt_non_transp(): add missing breaks

Change-Id: I13adcabd26c5f6543681e418b87c70b2822e7dcf
Fixes: CID#310964, CID#310965, CID#310967
This commit is contained in:
Vadim Yanitskiy 2023-03-17 16:42:32 +07:00
parent f18397aac9
commit cbf3e5d850
1 changed files with 3 additions and 0 deletions

View File

@ -2624,13 +2624,16 @@ int ipacc_rtp_csd_fmt_non_transp(const struct channel_mode_and_rate *ch_mode_rat
case RSL_CMOD_CSD_NTA_29k0_43k5:
case RSL_CMOD_CSD_NT_43k5:
ret |= RSL_IPAC_RTP_CSD_IR_64k << 5;
break;
case RSL_CMOD_CSD_NTA_29k0_14k5:
case RSL_CMOD_CSD_NTA_14k5_29k0:
case RSL_CMOD_CSD_NT_28k8:
ret |= RSL_IPAC_RTP_CSD_IR_32k << 5;
break;
case RSL_CMOD_CSD_NT_14k5:
case RSL_CMOD_CSD_NT_12k0:
ret |= RSL_IPAC_RTP_CSD_IR_16k << 5;
break;
case RSL_CMOD_CSD_NT_6k0:
ret |= RSL_IPAC_RTP_CSD_IR_8k << 5;
break;