pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/29511 )
Change subject: amr: Add data[0] field to amr_hdr ......................................................................
amr: Add data[0] field to amr_hdr
This allows easily accessing the AMR payload located after the TOC.
Change-Id: I72c0a001bf7ce9a63ac03beef352af177084e644 --- M include/osmocom/netif/amr.h 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved fixeria: Looks good to me, but someone else must approve
diff --git a/include/osmocom/netif/amr.h b/include/osmocom/netif/amr.h index 30e263c..47be122 100644 --- a/include/osmocom/netif/amr.h +++ b/include/osmocom/netif/amr.h @@ -57,6 +57,7 @@ uint8_t cmr:4, pad1:4; uint8_t f:1, ft:4, q:1, pad2:2; #endif + uint8_t data[0]; } __attribute__((packed));
static inline void *osmo_amr_get_payload(struct amr_hdr *amrh)