Skip to content
Snippets Groups Projects
Commit 72fcd888 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Change type from uint to int

parent ae32c406
No related branches found
No related tags found
2 merge requests!86Fixes for multi swap in net buffers,!85Partial fixes from chunk sync
Pipeline #12680 passed
...@@ -35,7 +35,7 @@ static const unsigned int kFrameDropLimit = 5; ...@@ -35,7 +35,7 @@ static const unsigned int kFrameDropLimit = 5;
struct StreamSource { struct StreamSource {
ftl::rgbd::Source *src; ftl::rgbd::Source *src;
std::atomic<unsigned int> jobs; // Busy or ready to swap? std::atomic<int> jobs; // Busy or ready to swap?
std::atomic<unsigned int> clientCount; std::atomic<unsigned int> clientCount;
cv::Mat rgb; // Tx buffer cv::Mat rgb; // Tx buffer
cv::Mat depth; // Tx buffer cv::Mat depth; // Tx buffer
......
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