diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-07-19 20:33:15 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-07-19 20:33:15 +0200 |
commit | 96c01650c01d8dfe43c22d3d19e711e64ce377b5 (patch) | |
tree | 7b96e2c61144fd798be85ce63244ecb58056d1fa /src/fig/FIG.h | |
parent | 42970488bba01fdecab1b9f2f7df60c4998e7680 (diff) | |
download | dabmux-96c01650c01d8dfe43c22d3d19e711e64ce377b5.tar.gz dabmux-96c01650c01d8dfe43c22d3d19e711e64ce377b5.tar.bz2 dabmux-96c01650c01d8dfe43c22d3d19e711e64ce377b5.zip |
Fix FIB0 padding, FIG init and deadline handling
Diffstat (limited to 'src/fig/FIG.h')
-rw-r--r-- | src/fig/FIG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fig/FIG.h b/src/fig/FIG.h index 318b788..04a2cbe 100644 --- a/src/fig/FIG.h +++ b/src/fig/FIG.h @@ -63,7 +63,7 @@ enum class FIG_rate { inline int rate_increment_ms(FIG_rate rate) { switch (rate) { - case FIG_rate::FIG0_0: return 0; // Is a special case + case FIG_rate::FIG0_0: return 96; // Is a special case case FIG_rate::A: return 100; case FIG_rate::B: return 1000; case FIG_rate::C: return 10000; |