Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/sfplugin/utils/
DCodec2BufferUtils.cpp79 || plane.allocatedDepth != img->mBitDepthAllocated in _ImageCopy()
80 || plane.allocatedDepth < plane.bitDepth in _ImageCopy()
82 || plane.rightShift != plane.allocatedDepth - plane.bitDepth in _ImageCopy()
195 && layout.planes[layout.PLANE_Y].allocatedDepth == 8 in IsYUV420()
201 && layout.planes[layout.PLANE_U].allocatedDepth == 8 in IsYUV420()
207 && layout.planes[layout.PLANE_V].allocatedDepth == 8 in IsYUV420()
/frameworks/av/media/codec2/sfplugin/
DCodec2Buffer.cpp230 mAllocatedDepth = layout.planes[0].allocatedDepth; in GraphicView2MediaImageConverter()
234 uint32_t stride = align(view.crop().width, 2) * divUp(layout.planes[0].allocatedDepth, 8u); in GraphicView2MediaImageConverter()
407 if (plane.allocatedDepth < plane.bitDepth in GraphicView2MediaImageConverter()
408 || plane.rightShift != plane.allocatedDepth - plane.bitDepth) { in GraphicView2MediaImageConverter()
413 if (plane.allocatedDepth > 8 && plane.endianness != C2PlaneInfo::NATIVE) { in GraphicView2MediaImageConverter()
418 if (plane.allocatedDepth != mAllocatedDepth || plane.bitDepth != bitDepth) { in GraphicView2MediaImageConverter()
/frameworks/av/media/codec2/core/include/
DC2Buffer.h1496 uint32_t allocatedDepth; ///< size of each sample (must be a multiple of 8) member
1546 ssize_t offs = (allocatedDepth + 7) >> 3; in maxOffset()