update esp-face move outc inside

delete some unused log
pull/55/head
XiaochaoGONG 2019-03-22 17:29:21 +08:00
parent e26281edbc
commit 653e1da68c
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit b45ecf2e3df66e7536b6ae470cfa65e099c2ee22
Subproject commit a28b3a9292b10e01ea491c602d69f541970f0432

View File

@ -332,10 +332,10 @@ http_response:
int64_t frame_time = fr_end - last_frame;
last_frame = fr_end;
frame_time /= 1000;
ESP_LOGI(TAG, "MJPG: %uKB %ums (%.1ffps), %u+%u+%u+%u=%u",
ESP_LOGI(TAG, "MJPG: %uKB %ums (%.1ffps), process: %u",
(uint32_t)(_jpg_buf_len/1024),
(uint32_t)frame_time, 1000.0 / (uint32_t)frame_time,
(uint32_t)ready_time, (uint32_t)face_time, (uint32_t)recognize_time, (uint32_t)encode_time, (uint32_t)process_time);
(uint32_t)process_time);
}
last_frame = 0;