summaryrefslogtreecommitdiffstats
path: root/src/fig/FIG0structs.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-10-03 21:29:29 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-10-03 21:29:29 +0200
commit3342f01f9a0e6f1effc7a698208a072d4a120ff8 (patch)
tree4d9d84a370ba96a629a661548bb5d8a7e20b5679 /src/fig/FIG0structs.h
parentdaa2a0a54bd4dc6ea8cef43a5c1d0271cbcc71e7 (diff)
downloaddabmux-3342f01f9a0e6f1effc7a698208a072d4a120ff8.tar.gz
dabmux-3342f01f9a0e6f1effc7a698208a072d4a120ff8.tar.bz2
dabmux-3342f01f9a0e6f1effc7a698208a072d4a120ff8.zip
Fix byte order in FIG0/6 structures
Diffstat (limited to 'src/fig/FIG0structs.h')
-rw-r--r--src/fig/FIG0structs.h23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/fig/FIG0structs.h b/src/fig/FIG0structs.h
index 4b9b7e0..3b9bfbf 100644
--- a/src/fig/FIG0structs.h
+++ b/src/fig/FIG0structs.h
@@ -153,11 +153,18 @@ struct FIGtype0_5_short {
} PACKED;
struct FIGtype0_6 {
- uint16_t IdListFlag:1;
- uint16_t LA:1; // Linkage actuator
- uint16_t SH:1; // 0=Soft link / 1=Hard link
- uint16_t ILS:1; // 0=national / 1=international
- uint16_t LSN:12; // Linkage Set Number
+ uint8_t LSN_high:4; // Linkage Set Number
+ uint8_t ILS:1; // 0=national / 1=international
+ uint8_t SH:1; // 0=Soft link / 1=Hard link
+ uint8_t LA:1; // Linkage actuator
+ uint8_t IdListFlag:1; // Marks the presence of the list
+
+ uint8_t LSN_low; // Linkage Set Number
+
+ void setLSN(uint16_t LSN) {
+ LSN_high = LSN >> 8;
+ LSN_low = LSN & 0xff;
+ }
} PACKED;
#define FIG0_6_IDLQ_DAB 0x0
@@ -165,10 +172,10 @@ struct FIGtype0_6 {
#define FIG0_6_IDLQ_DRM_AMSS 0x3
struct FIGtype0_6_header {
- uint8_t rfu:1; // must be 0
- uint8_t IdLQ:2; // Identifier List Qualifier, see above defines
- uint8_t rfa:1; // must be 0
uint8_t num_ids:4; // number of Ids to follow in the list
+ uint8_t rfa:1; // must be 0
+ uint8_t IdLQ:2; // Identifier List Qualifier, see above defines
+ uint8_t rfu:1; // must be 0
} PACKED;
struct FIGtype0_8_short {