/foundation/multimedia/av_codec/services/services/codec/client/ |
H A D | codec_client.cpp | 371 int32_t CodecClient::RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) in RenderOutputBufferAtTime() argument 376 CHECK_AND_RETURN_RET_LOG(renderTimestampNs >= 0, AVCS_ERR_INVALID_VAL, in RenderOutputBufferAtTime() 377 "The renderTimestamp:%{public}" PRId64 " value error", renderTimestampNs); in RenderOutputBufferAtTime() 379 int32_t ret = codecProxy_->RenderOutputBufferAtTime(index, renderTimestampNs); in RenderOutputBufferAtTime() 381 renderTimestampNs); in RenderOutputBufferAtTime()
|
/foundation/multimedia/av_codec/frameworks/native/avcodec/ |
H A D | avcodec_video_decoder_impl.cpp | 199 int32_t AVCodecVideoDecoderImpl::RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) in RenderOutputBufferAtTime() argument 204 return codecClient_->RenderOutputBufferAtTime(index, renderTimestampNs); in RenderOutputBufferAtTime()
|
H A D | avcodec_video_decoder_impl.h | 41 int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) override;
|
/foundation/multimedia/av_codec/interfaces/kits/c/ |
H A D | native_avcodec_videodecoder.h | 394 * @param renderTimestampNs The timestamp is associated with the output buffer when it is sent to the surface. The unit 405 OH_AVErrCode OH_VideoDecoder_RenderOutputBufferAtTime(OH_AVCodec *codec, uint32_t index, int64_t renderTimestampNs);
|
/foundation/multimedia/av_codec/services/services/codec/ipc/ |
H A D | i_standard_codec_service.h | 54 virtual int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) = 0;
|
H A D | codec_listener_proxy.h | 51 bool SetOutputBufferRenderTimestamp(uint32_t index, int64_t renderTimestampNs);
|
H A D | codec_service_stub.cpp | 367 int32_t CodecServiceStub::RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) in RenderOutputBufferAtTime() argument 371 return codecServer_->RenderOutputBufferAtTime(index, renderTimestampNs); in RenderOutputBufferAtTime() 595 int64_t renderTimestampNs = data.ReadInt64(); in RenderOutputBufferAtTime() local 598 ->SetOutputBufferRenderTimestamp(index, renderTimestampNs); in RenderOutputBufferAtTime() 601 ret = reply.WriteInt32(RenderOutputBufferAtTime(index, renderTimestampNs)); in RenderOutputBufferAtTime()
|
H A D | codec_service_proxy.h | 49 int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) override;
|
H A D | codec_listener_proxy.cpp | 226 bool CodecListenerProxy::SetOutputBufferRenderTimestamp(uint32_t index, int64_t renderTimestampNs) in SetOutputBufferRenderTimestamp() argument 230 buffer->meta_->SetData(Media::Tag::VIDEO_DECODER_DESIRED_PRESENT_TIMESTAMP, renderTimestampNs); in SetOutputBufferRenderTimestamp()
|
H A D | codec_service_stub.h | 53 int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) override;
|
/foundation/multimedia/av_codec/test/unittest/filter_test/ |
H A D | surface_decoder_unit_test.h | 104 int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs)
in RenderOutputBufferAtTime() argument
|
/foundation/multimedia/av_codec/test/moduletest/vcodec/swdecoder/src/ |
H A D | videodec_api11_sample.cpp | 769 if (renderTimestampNs == 0) { in ProcessOutputData() 770 renderTimestampNs = GetSystemTimeUs() / usTimeNum; in ProcessOutputData() 772 renderTimestampNs = renderTimestampNs + (usTimeNum / DEFAULT_FRAME_RATE * msTimeNum); in ProcessOutputData() 773 if (OH_VideoDecoder_RenderOutputBufferAtTime(vdec_, index, renderTimestampNs) != AV_ERR_OK) { in ProcessOutputData()
|
/foundation/multimedia/av_codec/interfaces/inner_api/native/ |
H A D | avcodec_video_decoder.h | 182 * @param renderTimestampNs The timestamp is associated with the output buffer when it is sent to the surface. The 187 virtual int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) = 0;
|
H A D | video_decoder_adapter.h | 56 int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs);
|
/foundation/multimedia/av_codec/services/include/ |
H A D | i_codec_service.h | 57 virtual int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) = 0;
|
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/func_sample/mock/inner/ |
H A D | videodec_inner_mock.h | 46 int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) override;
|
H A D | videodec_inner_mock.cpp | 255 int32_t VideoDecInnerMock::RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) in RenderOutputBufferAtTime() argument 258 return videoDec_->RenderOutputBufferAtTime(index, renderTimestampNs); in RenderOutputBufferAtTime()
|
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/func_sample/mock/capi/ |
H A D | videodec_capi_mock.h | 49 int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) override;
|
H A D | videodec_capi_mock.cpp | 263 int32_t VideoDecCapiMock::RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) in RenderOutputBufferAtTime() argument 265 return OH_VideoDecoder_RenderOutputBufferAtTime(codec_, index, renderTimestampNs); in RenderOutputBufferAtTime()
|
/foundation/multimedia/av_codec/test/unittest/decoder_filter_test/ |
H A D | video_decoder_adapter_unit_test.h | 159 virtual int32_t RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs)
in RenderOutputBufferAtTime() argument
|
/foundation/multimedia/av_codec/test/moduletest/vcodec/hwdecoder/include/ |
H A D | videodec_api11_sample.h | 141 int64_t renderTimestampNs = 0; member in OHOS::Media::VDecAPI11Sample
|
/foundation/multimedia/av_codec/test/moduletest/vcodec/swdecoder/include/ |
H A D | videodec_api11_sample.h | 134 int64_t renderTimestampNs = 0; member in OHOS::Media::VDecAPI11Sample
|
/foundation/multimedia/av_codec/test/moduletest/vcodec/hevcswdecoder/src/ |
H A D | videodec_api11_sample.cpp | 961 if (renderTimestampNs == 0) { in RenderOutAtTime() 962 renderTimestampNs = GetSystemTimeUs() / usTimeNum; in RenderOutAtTime() 964 renderTimestampNs = renderTimestampNs + (usTimeNum / DEFAULT_FRAME_RATE * msTimeNum); in RenderOutAtTime() 965 OH_AVErrCode code = OH_VideoDecoder_RenderOutputBufferAtTime(vdec_, index, renderTimestampNs); in RenderOutAtTime()
|
/foundation/multimedia/av_codec/test/moduletest/vcodec/hwdecoder/src/ |
H A D | videodec_api11_sample.cpp | 948 if (renderTimestampNs == 0) { in RenderOutAtTime() 949 renderTimestampNs = GetSystemTimeUs() / usTimeNum; in RenderOutAtTime() 951 renderTimestampNs = renderTimestampNs + (usTimeNum / DEFAULT_FRAME_RATE * msTimeNum); in RenderOutAtTime() 952 OH_AVErrCode code = OH_VideoDecoder_RenderOutputBufferAtTime(vdec_, index, renderTimestampNs); in RenderOutAtTime()
|
/foundation/multimedia/av_codec/services/media_engine/filters/ |
H A D | video_decoder_adapter.cpp | 378 int32_t VideoDecoderAdapter::RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) in RenderOutputBufferAtTime() argument 382 mediaCodec_->RenderOutputBufferAtTime(index, renderTimestampNs); in RenderOutputBufferAtTime()
|