Home
last modified time | relevance | path

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

/hardware/google/av/media/sfplugin/utils/
DCodec2BufferUtils.cpp81 || plane.allocatedDepth != img->mBitDepthAllocated in _ImageCopy()
82 || plane.allocatedDepth < plane.bitDepth in _ImageCopy()
84 || plane.rightShift != plane.allocatedDepth - plane.bitDepth in _ImageCopy()
121 && layout.planes[layout.PLANE_Y].allocatedDepth == 8 in IsYUV420()
127 && layout.planes[layout.PLANE_U].allocatedDepth == 8 in IsYUV420()
133 && layout.planes[layout.PLANE_V].allocatedDepth == 8 in IsYUV420()
/hardware/google/av/media/sfplugin/
DCodec2Buffer.cpp235 mAllocatedDepth = layout.planes[0].allocatedDepth; in GraphicView2MediaImageConverter()
239 uint32_t mStride = align(mWidth, 2) * divUp(layout.planes[0].allocatedDepth, 8u); in GraphicView2MediaImageConverter()
409 if (plane.allocatedDepth < plane.bitDepth in GraphicView2MediaImageConverter()
410 || plane.rightShift != plane.allocatedDepth - plane.bitDepth) { in GraphicView2MediaImageConverter()
415 if (plane.allocatedDepth > 8 && plane.endianness != C2PlaneInfo::NATIVE) { in GraphicView2MediaImageConverter()
420 if (plane.allocatedDepth != mAllocatedDepth || plane.bitDepth != bitDepth) { in GraphicView2MediaImageConverter()
/hardware/google/av/codec2/include/
DC2Buffer.h1494 uint32_t allocatedDepth; ///< size of each sample (must be a multiple of 8) member
1544 ssize_t offs = (allocatedDepth + 7) >> 3; in maxOffset()