diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-06-05 17:51:47 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-06-05 17:51:47 +0200 |
commit | f1832dd977078a60b343673c60092d3d5d030398 (patch) | |
tree | c1d585a637a24732507b0b6f94ebe5151fb493c2 /src/fig/FIGCarousel.cpp | |
parent | 7378fc903a26f779c48114e6305a89e59a3285d6 (diff) | |
download | dabmux-f1832dd977078a60b343673c60092d3d5d030398.tar.gz dabmux-f1832dd977078a60b343673c60092d3d5d030398.tar.bz2 dabmux-f1832dd977078a60b343673c60092d3d5d030398.zip |
Add initial implementation for FIG0/24
Diffstat (limited to 'src/fig/FIGCarousel.cpp')
-rw-r--r-- | src/fig/FIGCarousel.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fig/FIGCarousel.cpp b/src/fig/FIGCarousel.cpp index 6d89ad8..e32ea39 100644 --- a/src/fig/FIGCarousel.cpp +++ b/src/fig/FIGCarousel.cpp @@ -3,7 +3,7 @@ 2011, 2012 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2016 + Copyright (C) 2017 Matthias P. Braendli, matthias.braendli@mpb.li Implementation of the FIG carousel to schedule the FIGs into the @@ -76,7 +76,8 @@ FIGCarousel::FIGCarousel(std::shared_ptr<dabEnsemble> ensemble) : m_fig1_5(&m_rti), m_fig0_18(&m_rti), m_fig0_19(&m_rti), - m_fig0_21(&m_rti) + m_fig0_21(&m_rti), + m_fig0_24(&m_rti) { /* Complete MCI except FIG0/8 should be in FIB0. * EN 300 401 V1.4.1 Clause 6.1 @@ -111,6 +112,7 @@ FIGCarousel::FIGCarousel(std::shared_ptr<dabEnsemble> ensemble) : load_and_allocate(m_fig0_18, FIBAllocation::FIB_ANY); load_and_allocate(m_fig0_19, FIBAllocation::FIB_ANY); load_and_allocate(m_fig0_21, FIBAllocation::FIB_ANY); + load_and_allocate(m_fig0_24, FIBAllocation::FIB_ANY); } void FIGCarousel::load_and_allocate(IFIG& fig, FIBAllocation fib) |