diff --git a/services/engine/histreamer/lpp/lpp_audio_streamer/src/lpp_audio_render_adapter.cpp b/services/engine/histreamer/lpp/lpp_audio_streamer/src/lpp_audio_render_adapter.cpp index 4da4721b40cc7047c7e3eae37edb4892378ee88d..0f607d9b6fb7f51761974cf7cda22c273c42754c 100644 --- a/services/engine/histreamer/lpp/lpp_audio_streamer/src/lpp_audio_render_adapter.cpp +++ b/services/engine/histreamer/lpp/lpp_audio_streamer/src/lpp_audio_render_adapter.cpp @@ -209,6 +209,7 @@ int32_t LppAudioRenderAdapter::Start() MEDIA_LOG_D("Start entered."); FALSE_RETURN_V_MSG(audioRenderer_ != nullptr, MSERR_INVALID_OPERATION, "audioRenderer_ is nullptr"); FALSE_RETURN_V_MSG(renderTask_ != nullptr, MSERR_INVALID_OPERATION, "renderTask_ is nullptr"); + anchorPts_ = Plugins::HST_TIME_NONE; bool ret = audioRenderer_->Start(); FALSE_RETURN_V_MSG(ret, MSERR_START_FAILED, "AudioRenderer::Start failed"); renderTask_->Start(); diff --git a/services/services/sa_media/ipc/media_service_stub.cpp b/services/services/sa_media/ipc/media_service_stub.cpp index b874695859a20b67c98c9cb504f3e8346a89683a..827ed532697f561c74cb6189bf5bfacceadd0318 100644 --- a/services/services/sa_media/ipc/media_service_stub.cpp +++ b/services/services/sa_media/ipc/media_service_stub.cpp @@ -206,7 +206,7 @@ int32_t MediaServiceStub::GetLppCapacityStub(MessageParcel &data, MessageParcel (void)data; LppAvCapabilityInfo info; int32_t ret = GetLppCapacity(info); - CHECK_AND_RETURN_RET_LOG(ret == 0, ret, "Failed to write descriptor!"); + TRUE_LOG(ret == 0, MEDIA_LOGW, "GetLppCapacity failed"); reply.WriteInt32(ret); info.Marshalling(reply); return MSERR_OK;