Skip to content

Commit

Permalink
Merge pull request #126 from hao-yao/main
Browse files Browse the repository at this point in the history
ARL platform PV release on 2024-10-12
  • Loading branch information
hao-yao authored Oct 12, 2024
2 parents f98f72b + 4ad972f commit a2de9c2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core/DeviceBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,9 @@ int MainDevice::onDequeueBuffer(shared_ptr<CameraBuffer> buffer) {

if (mNeedSkipFrame) return OK;

LOG2("<seq%d>@%s, field:%d, timestamp: sec=%ld, usec=%ld", buffer->getSequence(), __func__,
buffer->getField(), buffer->getTimestamp().tv_sec, buffer->getTimestamp().tv_usec);
LOG2("camera:%d, stream:%d, <seq%d>@%s, field:%d, timestamp: sec=%ld, usec=%ld", mCameraId,
buffer->getStreamId(), buffer->getSequence(), __func__, buffer->getField(),
buffer->getTimestamp().tv_sec, buffer->getTimestamp().tv_usec);

for (auto& consumer : mConsumers) {
consumer->onFrameAvailable(mPort, buffer);
Expand Down

0 comments on commit a2de9c2

Please sign in to comment.