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

Merge branch '3-pack_kf_buffer_-needs-to-be-renamed-due-to-a-change-in-core' into 'devel'

Resolve "pack_kf_buffer_ needs to be renamed due to a change in core."

Closes #3

See merge request !3
parents 48f132e6 cf8b6615
No related branches found
No related tags found
1 merge request!3Resolve "pack_kf_buffer_ needs to be renamed due to a change in core."
...@@ -37,7 +37,7 @@ void ProcessorGnssFix::process(CaptureBasePtr _capture_ptr) ...@@ -37,7 +37,7 @@ void ProcessorGnssFix::process(CaptureBasePtr _capture_ptr)
bool new_fac_created = false; bool new_fac_created = false;
// ALREADY CREATED KF // ALREADY CREATED KF
PackKeyFramePtr KF_pack = kf_pack_buffer_.selectPack( _capture_ptr, params_->time_tolerance); PackKeyFramePtr KF_pack = buffer_pack_kf_.selectPack( _capture_ptr, params_->time_tolerance);
if (KF_pack && KF_pack->key_frame != last_gnss_fix_KF_) if (KF_pack && KF_pack->key_frame != last_gnss_fix_KF_)
{ {
new_frame_ptr = KF_pack->key_frame; new_frame_ptr = KF_pack->key_frame;
......
...@@ -29,7 +29,7 @@ void ProcessorGnssSingleDiff::process(CaptureBasePtr _capture_ptr) ...@@ -29,7 +29,7 @@ void ProcessorGnssSingleDiff::process(CaptureBasePtr _capture_ptr)
FrameBasePtr new_frame_ptr = nullptr; FrameBasePtr new_frame_ptr = nullptr;
// ALREADY CREATED KF // ALREADY CREATED KF
PackKeyFramePtr KF_pack = kf_pack_buffer_.selectPack( _capture_ptr, params_->time_tolerance); PackKeyFramePtr KF_pack = buffer_pack_kf_.selectPack( _capture_ptr, params_->time_tolerance);
if (KF_pack && KF_pack->key_frame != last_capture_ptr_->getOriginFrame()) if (KF_pack && KF_pack->key_frame != last_capture_ptr_->getOriginFrame())
{ {
new_frame_ptr = KF_pack->key_frame; new_frame_ptr = KF_pack->key_frame;
......
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