Home
last modified time | relevance | path

Searched refs:TaskDuration (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/
H A Dtask_traits.h69 using TaskDuration = std::chrono::duration<double, std::milli>; variable
73 constexpr TaskDuration default_process_time = TaskDuration(33);
H A Dtask_service.h102 const TaskDuration max_process_time = default_process_time)
297 const TaskDuration getMaxProceedTime() { return max_process_time_; } in getMaxProceedTime()
298 void setMaxProceedTime(const TaskDuration duration) { max_process_time_ = duration; } in setMaxProceedTime()
300 max_process_time_ = TaskDuration(std::chrono::milliseconds(1000 / fps)); in setMaxProceedTimeByFps()
313 TaskDuration max_process_time_;
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tests/
H A Dtest_task_service.cpp73 svc->setMaxProceedTime(TaskDuration(10)); in main()