From ae242465767d1f5485274005de4a69c358559f44 Mon Sep 17 00:00:00 2001 From: sunchao106 Date: Mon, 8 Sep 2025 15:07:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=A8=E6=80=81=E7=85=A7?= =?UTF-8?q?=E7=89=87seqenceNumber=E7=BB=B4=E6=B5=8B=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: sunchao106 --- dynamic_libs/moving_photo/src/avcodec/video_encoder.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dynamic_libs/moving_photo/src/avcodec/video_encoder.cpp b/dynamic_libs/moving_photo/src/avcodec/video_encoder.cpp index 26854ff82..f33e2c280 100644 --- a/dynamic_libs/moving_photo/src/avcodec/video_encoder.cpp +++ b/dynamic_libs/moving_photo/src/avcodec/video_encoder.cpp @@ -301,8 +301,9 @@ bool VideoEncoder::EncodeSurfaceBuffer(sptr frameRecord) "Buffer queue is empty, continue, cond ret: %{public}d", condRet); sptr bufferInfo = context_->outputBufferInfoQueue_.front(); MEDIA_INFO_LOG("Out buffer count: %{public}u, size: %{public}d, flag: %{public}u, pts:%{public}" PRIu64 ", " - "timestamp:%{public}" PRIu64, context_->outputFrameCount_, bufferInfo->buffer->memory_->GetSize(), - bufferInfo->buffer->flag_, bufferInfo->buffer->pts_, frameRecord->GetTimeStamp()); + "timestamp: %{public}" PRIu64 ", seqNum: %{public}d", context_->outputFrameCount_, + bufferInfo->buffer->memory_->GetSize(), bufferInfo->buffer->flag_, bufferInfo->buffer->pts_, + frameRecord->GetTimeStamp(), frameRecord->GetSurfaceBuffer()->GetSeqNum()); context_->outputBufferInfoQueue_.pop(); context_->outputFrameCount_++; lock.unlock(); -- Gitee