diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/DabMultiplexer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DabMultiplexer.cpp b/src/DabMultiplexer.cpp index a755d99..d9ca495 100644 --- a/src/DabMultiplexer.cpp +++ b/src/DabMultiplexer.cpp @@ -264,8 +264,8 @@ void DabMultiplexer::prepare() } #endif - // Shift ms by 13 to Timestamp level 2, see below in Section TIST - timestamp = (mnsc_time.tv_usec / 1000) << 13; + // Shift ms by 14 to Timestamp level 2, see below in Section TIST + timestamp = (mnsc_time.tv_usec / 1000) << 14; } @@ -1805,7 +1805,7 @@ void DabMultiplexer::mux_frame(std::vector<std::shared_ptr<DabOutput> >& outputs time resolution */ - timestamp += 24 << 13; // Shift 24ms by 13 to Timestamp level 2 + timestamp += 24 << 14; // Shift 24ms by 14 to Timestamp level 2 if (timestamp > 0xf9FFff) { timestamp -= 0xfa0000; // Substract 16384000, corresponding to one second |