diff options
Diffstat (limited to 'src/fig/FIG0.h')
-rw-r--r-- | src/fig/FIG0.h | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/src/fig/FIG0.h b/src/fig/FIG0.h index 57ca317..06beb7e 100644 --- a/src/fig/FIG0.h +++ b/src/fig/FIG0.h @@ -102,8 +102,10 @@ class FIG0_3 : public IFIG FIGRuntimeInformation *m_rti; }; -// FIG type 0/8, MCI, Service Organization, one instance of -// FIGtype0_8_Service for each subchannel +// FIG type 0/8 +// The Extension 8 of FIG type 0 (FIG 0/8) provides information to link +// together the service component description that is valid within the ensemble +// to a service component description that is valid in other ensembles class FIG0_8 : public IFIG { public: @@ -120,6 +122,26 @@ class FIG0_8 : public IFIG std::vector<DabComponent*>::iterator componentFIG0_8; }; +// FIG type 0/13 +// User Application Information +class FIG0_13 : public IFIG +{ + public: + FIG0_13(FIGRuntimeInformation* rti); + virtual FillStatus fill(uint8_t *buf, size_t max_size); + virtual FIG_rate repetition_rate(void) { return FIG_rate::B; } + + virtual const int figtype(void) const { return 0; } + virtual const int figextension(void) const { return 13; } + + private: + FIGRuntimeInformation *m_rti; + bool m_initialised; + bool m_transmit_programme; + std::vector<DabComponent*>::iterator componentFIG0_13; +}; + + // FIG type 0/17 class FIG0_17 : public IFIG { |