refactoring; renamed X-UStreamer-*-Time to X-UStreamer-*-Timestamp

This commit is contained in:
Devaev Maxim
2019-10-21 08:16:19 +03:00
parent f381113d50
commit 91a1e48a7c
7 changed files with 54 additions and 54 deletions

View File

@@ -286,7 +286,7 @@ int device_grab_buffer(struct device_t *dev) {
dev->run->hw_buffers[buf_info.index].used = buf_info.bytesused;
memcpy(&dev->run->hw_buffers[buf_info.index].buf_info, &buf_info, sizeof(struct v4l2_buffer));
dev->run->pictures[buf_info.index]->grab_time = get_now_monotonic();
dev->run->pictures[buf_info.index]->grab_ts = get_now_monotonic();
return buf_info.index;
}