| 1452 | } |
| 1453 | |
| 1454 | void Freenect2ReplayDevice::processDepthFrame(Frame* frame) |
| 1455 | { |
| 1456 | DepthPacket packet; |
| 1457 | |
| 1458 | packet.timestamp = frame->timestamp; |
| 1459 | packet.sequence = frame->sequence; |
| 1460 | packet.buffer = frame->data; |
| 1461 | packet.buffer_length = frame->bytes_per_pixel; |
| 1462 | |
| 1463 | pipeline_->getDepthPacketProcessor()->process(packet); |
| 1464 | } |
| 1465 | |
| 1466 | void Freenect2ReplayDevice::loadP0Tables(unsigned char* buffer, size_t buffer_length) |
| 1467 | { |
nothing calls this directly
no test coverage detected