diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-07 11:58:48 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-07 11:58:48 +0200 |
commit | e601ed83c8acbb0160b0d75ce0dd09852fb10fdf (patch) | |
tree | eaf37a0313c836e057b86ec87b1e8d8f438214c8 /src/fig/FIG0.h | |
parent | 342f9fa6167359ff6bf030887f96ca4c0a642086 (diff) | |
download | dabmux-e601ed83c8acbb0160b0d75ce0dd09852fb10fdf.tar.gz dabmux-e601ed83c8acbb0160b0d75ce0dd09852fb10fdf.tar.bz2 dabmux-e601ed83c8acbb0160b0d75ce0dd09852fb10fdf.zip |
Add FIG0/13
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 { |