diff --git a/libs/evoral/src/Event.cpp b/libs/evoral/src/Event.cpp index 09b240284f..13d7c6c6ac 100644 --- a/libs/evoral/src/Event.cpp +++ b/libs/evoral/src/Event.cpp @@ -57,8 +57,7 @@ next_event_id () template Event::Event(EventType type, Timestamp time, uint32_t size, uint8_t* buf, bool alloc) : _type(type) - , _original_time(time) - , _nominal_time(time) + , _time(time) , _size(size) , _buf(buf) , _id(-1) @@ -80,8 +79,7 @@ Event::Event(EventType type, uint32_t size, const uint8_t* buf) : _type(type) - , _original_time(time) - , _nominal_time(time) + , _time(time) , _size(size) , _buf((uint8_t*)malloc(size)) , _id(-1) @@ -93,8 +91,7 @@ Event::Event(EventType type, template Event::Event(const Event& copy, bool owns_buf) : _type(copy._type) - , _original_time(copy._original_time) - , _nominal_time(copy._nominal_time) + , _time(copy._time) , _size(copy._size) , _buf(copy._buf) , _id (next_event_id ()) @@ -123,8 +120,7 @@ Event::assign(const Event& other) { _id = other._id; _type = other._type; - _original_time = other._original_time; - _nominal_time = other._nominal_time; + _time = other._time; _owns_buf = other._owns_buf; if (_owns_buf) { if (other._buf) { @@ -160,25 +156,10 @@ Event::set (const uint8_t* buf, uint32_t size, Timestamp t) _buf = const_cast (buf); } - _original_time = t; - _nominal_time = t; + _time = t; _size = size; } -template -void -Event::set_time (Timestamp t) -{ - _nominal_time = t; -} - -template -void -Event::set_original_time (Timestamp t) -{ - _original_time = t; -} - #endif // EVORAL_EVENT_ALLOC template class Event;