Skip to content

Commit

Permalink
Fixed a mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko committed Oct 7, 2024
1 parent 25cb5b7 commit 4c64345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtcore/tsbpd_time.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ CTsbpdTime::time_point CTsbpdTime::getTsbPdTimeBase(uint32_t timestamp_us) const
CTsbpdTime::time_point CTsbpdTime::getPktTsbPdTime(uint32_t usPktTimestamp) const
{
SharedLock lck(m_mtxRW);
time_point value = getTsbPdTimeBaseNoLock(usPktTimestamp) + m_tdTsbPdDelay + microseconds_from(m_DriftTracer.drift());
time_point value = getPktTsbPdBaseTimeNoLock(usPktTimestamp) + m_tdTsbPdDelay + microseconds_from(m_DriftTracer.drift());

return value;
}
Expand Down

0 comments on commit 4c64345

Please sign in to comment.