diff --git a/multimedia/media/media_js_standard/screenCapture_ndk_test/entry/src/main/cpp/screenCaptureTest.cpp b/multimedia/media/media_js_standard/screenCapture_ndk_test/entry/src/main/cpp/screenCaptureTest.cpp index c287fc706feeb0ce28edac49d15d07ce309efb37..ac03a544678e68a88b3d17558a2b21dc28209366 100644 --- a/multimedia/media/media_js_standard/screenCapture_ndk_test/entry/src/main/cpp/screenCaptureTest.cpp +++ b/multimedia/media/media_js_standard/screenCapture_ndk_test/entry/src/main/cpp/screenCaptureTest.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #include "napi/native_api.h" #include "native_avscreen_capture.h" #include "native_avscreen_capture_base.h" @@ -107,7 +108,7 @@ void ScreenCaptureNdkTestCallback::OnAudioBufferAvailable(bool isReady, OH_Audio if (OH_AVScreenCapture_AcquireAudioBuffer(screenCapture_, &audioBuffer, type) == AV_SCREEN_CAPTURE_ERR_OK) { LOG(audioBuffer != nullptr, "AcquireAudioBuffer failed, audio buffer empty"); LOG(g_aIndex % g_logCount != 0, - "AcquireAudioBuffer, audioBufferLen: %d, timestampe: %lld, audioSourceType: %d", + "AcquireAudioBuffer, audioBufferLen: %d, timestampe: %" PRId64", audioSourceType: %d", audioBuffer->size, audioBuffer->timestamp, audioBuffer->type); if ((aFile != nullptr) && (audioBuffer->buf != nullptr) && (type == OH_MIC)) { int32_t ret = fwrite(audioBuffer->buf, 1, audioBuffer->size, aFile); @@ -158,7 +159,7 @@ void ScreenCaptureNdkTestCallback::OnVideoBufferAvailable(bool isReady) OH_NativeBuffer_GetConfig(nativeBuffer, &config); int32_t length = config.height * config.width * size; LOG(g_vIndex % g_logCount != 0, - "AcquireVideoBuffer, videoBufferLen: %d, timestamp: %lld, size: %d", length, timestamp, length); + "AcquireVideoBuffer, videoBufferLen: %d, timestamp: %" PRId64", size: %d", length, timestamp, length); DumpVideoFile(nativeBuffer, length); OH_NativeBuffer_Unreference(nativeBuffer); if (g_vFlag == 1) {