diff options
-rw-r--r-- | src/TimestampDecoder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TimestampDecoder.h b/src/TimestampDecoder.h index 6eedf9e..0411f1a 100644 --- a/src/TimestampDecoder.h +++ b/src/TimestampDecoder.h @@ -49,8 +49,8 @@ struct frame_timestamp double offset_pps, offset_secs; offset_pps = modf(diff, &offset_secs); - this->timestamp_sec += lrintf(offset_secs); - this->timestamp_pps += lrintf(offset_pps * 16384000.0); + this->timestamp_sec += lrint(offset_secs); + this->timestamp_pps += lrint(offset_pps * 16384000.0); while (this->timestamp_pps >= 16384000) { this->timestamp_pps -= 16384000; |