Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/event_camera_codecs/libcaer_cmp_decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class Decoder : public event_camera_codecs::Decoder<MsgT, EventProcT>
private:
inline timestamp_t makeTime(timestamp_t high, uint16_t low)
{
const timestamp_t t = ((high | low) + timeBase_) * timeMult_;
const timestamp_t t = (high | low) * timeMult_ + timeBase_;
return (t);
}

Expand Down