Home
last modified time | relevance | path

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

/hardware/google/av/media/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()
/hardware/google/av/media/sfplugin/
DCodec2Buffer.cpp237 mAllocatedDepth = layout.planes[0].allocatedDepth; in GraphicView2MediaImageConverter()
241 uint32_t mStride = align(mWidth, 2) * divUp(layout.planes[0].allocatedDepth, 8u); in GraphicView2MediaImageConverter()
411 if (plane.allocatedDepth < plane.bitDepth in GraphicView2MediaImageConverter()
412 || plane.rightShift != plane.allocatedDepth - plane.bitDepth) { in GraphicView2MediaImageConverter()
417 if (plane.allocatedDepth > 8 && plane.endianness != C2PlaneInfo::NATIVE) { in GraphicView2MediaImageConverter()
422 if (plane.allocatedDepth != mAllocatedDepth || plane.bitDepth != bitDepth) { in GraphicView2MediaImageConverter()
/hardware/google/av/codec2/include/
DC2Buffer.h1493 uint32_t allocatedDepth; ///< size of each sample (must be a multiple of 8) member
1543 ssize_t offs = (allocatedDepth + 7) >> 3; in maxOffset()