/ohos5.0/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codecuseeglimagehdi_fuzzer/ |
H A D | codecuseeglimage_fuzzer.cpp | 24 int8_t *eglImage; member 55 std::vector<int8_t> eglImage; in CodecUseEglImage() local 56 ObjectToVector(params.eglImage, eglImage); in CodecUseEglImage() 58 int32_t ret = g_component->UseEglImage(params.portIndex, inbuffer, outbuffer, eglImage); in CodecUseEglImage()
|
/ohos5.0/foundation/graphic/graphic_2d/frameworks/surfaceimage/src/ |
H A D | surface_image.cpp | 289 void SurfaceImage::DestroyEGLImage(EGLImageKHR &eglImage) in DestroyEGLImage() argument 291 if (eglImage != EGL_NO_IMAGE_KHR) { in DestroyEGLImage() 292 eglDestroyImageKHR(eglDisplay_, eglImage); in DestroyEGLImage() 293 eglImage = EGL_NO_IMAGE_KHR; in DestroyEGLImage() 329 EGLImageKHR eglImage = CreateEGLImage(eglDisplay_, buffer); in UpdateEGLImageAndTexture() local 330 if (eglImage == EGL_NO_IMAGE_KHR) { in UpdateEGLImageAndTexture() 333 imageCacheSeqs_[seqNum].eglImage_ = eglImage; in UpdateEGLImageAndTexture()
|
/ohos5.0/drivers/peripheral/codec/hal/src/ |
H A D | codec_component_type_stub.c | 667 int8_t *eglImage = NULL; in SerStubUseEglImage() local 686 eglImage = (int8_t*)OsalMemCalloc(sizeof(int8_t) * (eglImageLen)); in SerStubUseEglImage() 687 if (eglImage == NULL) { in SerStubUseEglImage() 693 if (!HdfSbufReadInt8(data, &eglImage[i])) { in SerStubUseEglImage() 695 FreeMem(eglImage, eglImageLen); in SerStubUseEglImage() 701 ret = serviceImpl->UseEglImage(serviceImpl, &buffer, portIndex, eglImage, eglImageLen); in SerStubUseEglImage() 704 FreeMem(eglImage, eglImageLen); in SerStubUseEglImage() 710 FreeMem(eglImage, eglImageLen); in SerStubUseEglImage() 714 FreeMem(eglImage, eglImageLen); in SerStubUseEglImage()
|
H A D | codec_adapter.cpp | 256 int8_t *eglImage, uint32_t eglImageLen) in OmxAdapterUseEglImage() argument 258 …if (codecNode == nullptr || codecNode->node == nullptr || buffer == nullptr || eglImage == nullptr… in OmxAdapterUseEglImage() 262 return codecNode->node->UseEglImage(*buffer, portIndex, eglImage, eglImageLen); in OmxAdapterUseEglImage()
|
H A D | codec_component_type_service.c | 249 struct OmxCodecBuffer *buffer, uint32_t portIndex, int8_t *eglImage, uint32_t eglImageLen) in CodecComponentTypeUseEglImage() argument 258 return OmxAdapterUseEglImage(service->codecNode, buffer, portIndex, eglImage, eglImageLen); in CodecComponentTypeUseEglImage()
|
/ohos5.0/drivers/peripheral/codec/test/fuzztest/omx_fuzzer/codecuseeglimageomx_fuzzer/ |
H A D | codecuseeglimage_fuzzer.cpp | 24 int8_t *eglImage; member 51 … int32_t ret = g_component->UseEglImage(g_component, &buffer, params.portIndex, params.eglImage, in CodecUseEglImage()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/generic/ |
H A D | platform_device_gles.cpp | 36 data.eglImage = tmp.eglImage; in RENDER_BEGIN_NAMESPACE()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | gpu_image_gles.cpp | 233 if (reinterpret_cast<GLeglImageOES>(plat_.eglImage) != 0) { in GpuImageGLES() 250 …LImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, reinterpret_cast<GLeglImageOES>(plat_.eglImage)); in GpuImageGLES() 284 if (reinterpret_cast<GLeglImageOES>(plat_.eglImage) != 0) { in ~GpuImageGLES() 313 return (plat_.eglImage) ? ADDITIONAL_PLATFORM_CONVERSION_BIT : 0u; in GetAdditionalFlags()
|
H A D | gpu_image_gles.h | 47 uintptr_t eglImage; // For creating image from EGLImage member
|
/ohos5.0/drivers/peripheral/codec/test/benchmarktest/ |
H A D | codec_benchmark_omx_test.cpp | 490 auto eglImage = std::make_unique<int8_t[]>(BUFFER_SIZE); in BENCHMARK_F() local 491 ASSERT_TRUE(eglImage != nullptr); in BENCHMARK_F() 493 eglImageVec.assign(eglImage.get(), eglImage.get() + BUFFER_SIZE); in BENCHMARK_F() 498 eglImage = nullptr; in BENCHMARK_F()
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/codec/ |
H A D | interface_i_codec_component_v10.md | 52 …truct [OmxCodecBuffer](_omx_codec_buffer_v10.md) outBuffer, [in] byte[] eglImage) | 使用已在EGL中申请的空间。… 631 … [in] struct OmxCodecBuffer inBuffer, [out] struct OmxCodecBuffer outBuffer, [in] byte[] eglImage ) 657 | eglImage | EGL申请的图像指针。 |
|
H A D | interface_i_codec_component_v20.md | 50 …truct [OmxCodecBuffer](_omx_codec_buffer_v20.md) outBuffer, [in] byte[] eglImage) | 使用已在EGL中申请的空间。… 631 … [in] struct OmxCodecBuffer inBuffer, [out] struct OmxCodecBuffer outBuffer, [in] byte[] eglImage ) 657 | eglImage | EGL申请的图像指针。 |
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_egl_image_manager.cpp | 169 EGLDisplay eglDisplay, EGLImageKHR eglImage, EGLClientBuffer eglClientBuffer) in ImageCacheSeq() argument 171 eglImage_(eglImage), in ImageCacheSeq()
|
H A D | rs_egl_image_manager.h | 44 EGLImageKHR eglImage,
|
/ohos5.0/drivers/peripheral/codec/hal/idl_service/src/ |
H A D | codec_component_service.cpp | 237 … OmxCodecBuffer &outBuffer, const std::vector<int8_t> &eglImage) in UseEglImage() argument 242 return node_->UseEglImage(outBuffer, portIndex, eglImage.data()); in UseEglImage()
|
/ohos5.0/drivers/peripheral/codec/interfaces/include/ |
H A D | codec_component_if.h | 372 int8_t *eglImage, uint32_t eglImageLen);
|
/ohos5.0/drivers/peripheral/codec/hal/include/ |
H A D | codec_adapter_interface.h | 107 uint32_t portIndex, int8_t *eglImage, uint32_t eglImageLen);
|
/ohos5.0/foundation/graphic/graphic_2d/frameworks/surfaceimage/include/ |
H A D | surface_image.h | 91 void DestroyEGLImage(EGLImageKHR &eglImage);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/codec_v1_0/cpp_target/codec/v1_0/ |
H A D | codec_component_proxy.h.txt | 77 … OHOS::HDI::Codec::V1_0::OmxCodecBuffer& outBuffer, const std::vector<int8_t>& eglImage) override; 128 …OHOS::HDI::Codec::V1_0::OmxCodecBuffer& outBuffer, const std::vector<int8_t>& eglImage, const sptr…
|
H A D | codec_component_service.cpp.txt | 113 OHOS::HDI::Codec::V1_0::OmxCodecBuffer& outBuffer, const std::vector<int8_t>& eglImage)
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/codec_v2_0/cpp_target/codec/v2_0/ |
H A D | codec_component_proxy.h.txt | 77 … OHOS::HDI::Codec::V2_0::OmxCodecBuffer& outBuffer, const std::vector<int8_t>& eglImage) override; 128 …OHOS::HDI::Codec::V2_0::OmxCodecBuffer& outBuffer, const std::vector<int8_t>& eglImage, const sptr…
|
/ohos5.0/drivers/peripheral/codec/hal/idl_service/include/ |
H A D | codec_component_service.h | 53 const std::vector<int8_t> &eglImage) override;
|
H A D | component_node.h | 61 int32_t UseEglImage(struct OmxCodecBuffer &buffer, uint32_t portIndex, const int8_t *eglImage);
|
/ohos5.0/drivers/peripheral/codec/test/unittest/idl_omx/ |
H A D | codec_hdi_omx_enc_test.cpp | 842 auto eglImage = std::make_unique<int8_t[]>(BUFFER_SIZE); variable 843 ASSERT_TRUE(eglImage != nullptr); 845 eglImageVec.assign(eglImage.get(), eglImage.get() + BUFFER_SIZE); 849 eglImage = nullptr;
|
/ohos5.0/drivers/peripheral/codec/hal/v2.0/hdi_impl/include/ |
H A D | component_node.h | 71 …int32_t UseEglImage(struct OmxCodecBuffer &buffer, uint32_t portIndex, int8_t *eglImage, uint32_t …
|