diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-04-22 05:18:40 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-04-22 05:18:40 +0200 |
commit | 2009dcd0494a671e2492aa865e690446388c7a5a (patch) | |
tree | 76b2da61393d8f4dbacef2d4474fdee5ea42e056 /src/fig/FIG0_9.cpp | |
parent | dd14214e1ad46b9fa323be7e7e13c55c30085a67 (diff) | |
download | dabmux-2009dcd0494a671e2492aa865e690446388c7a5a.tar.gz dabmux-2009dcd0494a671e2492aa865e690446388c7a5a.tar.bz2 dabmux-2009dcd0494a671e2492aa865e690446388c7a5a.zip |
Move all FIG structures to cpp files, fix FIG0_21 rfa
Diffstat (limited to 'src/fig/FIG0_9.cpp')
-rw-r--r-- | src/fig/FIG0_9.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/fig/FIG0_9.cpp b/src/fig/FIG0_9.cpp index 00c2995..06f2125 100644 --- a/src/fig/FIG0_9.cpp +++ b/src/fig/FIG0_9.cpp @@ -23,11 +23,27 @@ along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ +#include "fig/FIG0structs.h" #include "fig/FIG0_9.h" #include "utils.h" namespace FIC { +struct FIGtype0_9 { + uint8_t Length:5; + uint8_t FIGtypeNumber:3; + uint8_t Extension:5; + uint8_t PD:1; + uint8_t OE:1; + uint8_t CN:1; + + uint8_t ensembleLto:6; + uint8_t rfa1:1; + uint8_t ext:1; + uint8_t ensembleEcc; + uint8_t tableId; +} PACKED; + FIG0_9::FIG0_9(FIGRuntimeInformation *rti) : m_rti(rti) {} |