Home
last modified time | relevance | path

Searched refs:outputPlanes (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hardware/
H A Dheif_hw_decoder.cpp228 OH_NativeBuffer_Planes* outputPlanes = nullptr; in GetUvPlaneOffsetFromSurfaceBuffer() local
229 GSError ret = surfaceBuffer->GetPlanesInfo(reinterpret_cast<void**>(&outputPlanes)); in GetUvPlaneOffsetFromSurfaceBuffer()
230 IF_TRUE_RETURN_VAL_WITH_MSG((ret != GSERROR_OK || outputPlanes == nullptr), false, in GetUvPlaneOffsetFromSurfaceBuffer()
232 IF_TRUE_RETURN_VAL_WITH_MSG(outputPlanes->planeCount < PLANE_BUTT, false, in GetUvPlaneOffsetFromSurfaceBuffer()
233 "invalid yuv buffer, %{public}u", outputPlanes->planeCount); in GetUvPlaneOffsetFromSurfaceBuffer()
236 offset = outputPlanes->planes[PLANE_U].offset; in GetUvPlaneOffsetFromSurfaceBuffer()
238 offset = outputPlanes->planes[PLANE_V].offset; in GetUvPlaneOffsetFromSurfaceBuffer()