Skip to content

Commit

Permalink
Fix for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
aangerma committed Feb 18, 2021
1 parent c832dcf commit a62f54b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/l500/l500-depth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ namespace librealsense

std::vector<stream_interface*> streams = { _depth_stream.get(), _ir_stream.get(), _confidence_stream.get() };

// TODO
for (auto& s : streams)
{
depth_matchers.push_back(std::make_shared<identity_matcher>(s->get_unique_id(), s->get_stream_type()));
Expand Down
6 changes: 5 additions & 1 deletion src/proc/syncer-processing-block.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ syncer_process_unit::syncer_process_unit( std::initializer_list< bool_option::pt
get_source().frame_ready(std::move(frame));
}
else
_matcher->dispatch( std::move( frame ), { source, matches, log } );
{
syncronization_environment env = { source, matches, log };
_matcher->dispatch(std::move(frame), env);
}

}

frame_holder f;
Expand Down

0 comments on commit a62f54b

Please sign in to comment.