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

Move debug output

parent 24e0385c
No related branches found
No related tags found
1 merge request!86Fixes for multi swap in net buffers
Pipeline #12685 passed
......@@ -76,7 +76,7 @@ class Source : public ftl::Configurable {
/**
* Between frames, do any required buffer swaps.
*/
void swap() { if (impl_) impl_->swap(); }
void swap() { if (impl_) impl_->swap(); LOG(INFO) << "SWAP SV " << timestamp_; }
/**
* Do any post-grab processing. This function
......
......@@ -167,7 +167,6 @@ void StereoVideoSource::swap() {
tmp = right_;
right_ = cap_right_;
cap_right_ = tmp;
LOG(INFO) << "SWAP SV " << timestamp_;
}
bool StereoVideoSource::compute(int n, int b) {
......
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