Skip to content
Snippets Groups Projects
Commit 466df15d authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Fix bug incoming_ptr_ --> _incoming_ptr

parent 502bb96d
No related branches found
No related tags found
1 merge request!157Kfpackmanager
...@@ -62,11 +62,11 @@ void ProcessorMotion::process(CaptureBasePtr _incoming_ptr) ...@@ -62,11 +62,11 @@ void ProcessorMotion::process(CaptureBasePtr _incoming_ptr)
} }
// Select using incoming_ptr // Select using incoming_ptr
pack = kf_pack_buffer_.selectPack( incoming_ptr_->getTimeStamp(), time_tolerance_ ); pack = kf_pack_buffer_.selectPack( _incoming_ptr->getTimeStamp(), time_tolerance_ );
if (pack!=nullptr) if (pack!=nullptr)
{ {
keyFrameCallback(pack->key_frame,pack->time_tolerance); keyFrameCallback(pack->key_frame,pack->time_tolerance);
kf_pack_buffer_.removeUpTo( incoming_ptr_->getTimeStamp() ); kf_pack_buffer_.removeUpTo( _incoming_ptr->getTimeStamp() );
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment