mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-20 06:44:04 +08:00
* add more deps * setup is now working,removing brackets * Fixing tests in nui * make it eveno * readme markdown and town not needed since set via client * adding explanations for sim in readme * make it markdown buildable * revert changes in setup * work now
15 lines
331 B
C++
15 lines
331 B
C++
#include "../../clib/FrameReader.hpp"
|
|
#include "TestFrameReader.hpp"
|
|
|
|
void TestFrameReader::frameread() {
|
|
QElapsedTimer t;
|
|
t.start();
|
|
FrameReader fr("3a5d6ac1c23e5536/2019-10-29--10-06-58/2/fcamera.hevc");
|
|
fr.get(2);
|
|
//QThread::sleep(10);
|
|
qDebug() << t.nsecsElapsed()*1e-9 << "seconds";
|
|
}
|
|
|
|
QTEST_MAIN(TestFrameReader)
|
|
|