Attention is currently required from: pespin.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-netif/+/30697
to look at the new patch set (#2).
Change subject: amr: Support all SID and NO_DATA amr formats
......................................................................
amr: Support all SID and NO_DATA amr formats
Related: SYS#6161
Change-Id: I0e766b3231f03ea87d89fad6ecdce3bd14769054
---
M include/osmocom/netif/amr.h
M src/amr.c
M tests/amr/amr_test.c
M tests/amr/amr_test.ok
4 files changed, 93 insertions(+), 58 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/97/30697/2
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/30697
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I0e766b3231f03ea87d89fad6ecdce3bd14769054
Gerrit-Change-Number: 30697
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newpatchset
pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-netif/+/30694 )
Change subject: amr: osmo_amr_bwe_to_oa() define variable as unsigned
......................................................................
amr: osmo_amr_bwe_to_oa() define variable as unsigned
There's no need to have the variable as signed anymore since the loop
was modified in the previous patch. osmo_amr_bytes() returns a size_t
(unsigned).
Change-Id: I8aa6b5f6d3334e152a62b7c28aac3f881f027894
---
M src/amr.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/94/30694/1
diff --git a/src/amr.c b/src/amr.c
index 8cd856d..a40e496 100644
--- a/src/amr.c
+++ b/src/amr.c
@@ -194,7 +194,7 @@
/* The header is only valid after shifting first two bytes to OA mode */
struct amr_hdr *oa_hdr;
unsigned int i;
- int oa_payload_len;
+ unsigned int oa_payload_len;
memset(buf, 0, sizeof(buf));
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/30694
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I8aa6b5f6d3334e152a62b7c28aac3f881f027894
Gerrit-Change-Number: 30694
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange