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

Debug fps on windows

parent 41f11e15
No related branches found
No related tags found
No related merge requests found
Pipeline #11611 failed
...@@ -266,11 +266,15 @@ void Streamer::_schedule() { ...@@ -266,11 +266,15 @@ void Streamer::_schedule() {
// Grab job // Grab job
ftl::pool.push([this,src](int id) { ftl::pool.push([this,src](int id) {
//StreamSource *src = sources_[uri]; //StreamSource *src = sources_[uri];
auto start = std::chrono::high_resolution_clock::now();
try { try {
src->src->grab(); src->src->grab();
} catch (...) { } catch (...) {
LOG(ERROR) << "Exception when grabbing frame"; LOG(ERROR) << "Exception when grabbing frame";
} }
std::chrono::duration<double> elapsed =
std::chrono::high_resolution_clock::now() - start;
LOG(INFO) << "Grab in " << elapsed.count() << "s";
// CHECK (Nick) Can state be an atomic instead? // CHECK (Nick) Can state be an atomic instead?
//UNIQUE_LOCK(src->mutex, lk); //UNIQUE_LOCK(src->mutex, lk);
......
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