]> git.ipfire.org Git - thirdparty/asterisk.git/commit
res_rtp_asterisk: Fix incorrect reference in ast_rtp_get_stat().
authorGeorge Joseph <gjoseph@sangoma.com>
Tue, 19 May 2026 20:50:45 +0000 (14:50 -0600)
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Wed, 20 May 2026 13:15:25 +0000 (13:15 +0000)
commit8c30a48bea86c6b2be8a98327614ccb5de61416c
tree01c4bcc61fde3b67528fb74c62cdac079291b99a
parentd48d5088ce048a68f0bdc67eb7a627e28baca161
res_rtp_asterisk: Fix incorrect reference in ast_rtp_get_stat().

```
AST_RTP_STAT_SET(AST_RTP_INSTANCE_STAT_LOCAL_STDEVMES, \
AST_RTP_INSTANCE_STAT_COMBINED_MES, stats->local_stdevmes, \
rtp->rtcp->stdev_rxjitter);
```

Should have been

```
AST_RTP_STAT_SET(AST_RTP_INSTANCE_STAT_LOCAL_STDEVMES, \
AST_RTP_INSTANCE_STAT_COMBINED_MES, stats->local_stdevmes, \
rtp->rtcp->stdev_rxmes);
```

Note the last macro parameter name.

Resolves: #1938
res/res_rtp_asterisk.c