Home
last modified time | relevance | path

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

/hardware/google/av/media/sfplugin/utils/
DCodec2BufferUtils.cpp78 || plane.rowSampling != img->mPlane[i].mVertSubsampling in _ImageCopy()
88 uint32_t planeH = img->mHeight / plane.rowSampling; in _ImageCopy()
199 && layout.planes[layout.PLANE_Y].rowSampling == 1 in IsYUV420()
205 && layout.planes[layout.PLANE_U].rowSampling == 2 in IsYUV420()
211 && layout.planes[layout.PLANE_V].rowSampling == 2); in IsYUV420()
/hardware/google/av/media/sfplugin/
DCodec2Buffer.cpp256 || layout.planes[0].rowSampling != 1 in GraphicView2MediaImageConverter()
258 || layout.planes[1].rowSampling != 2 in GraphicView2MediaImageConverter()
260 || layout.planes[2].rowSampling != 2) { in GraphicView2MediaImageConverter()
282 … / plane.rowSampling / plane.colSampling * divUp(mAllocatedDepth, 8u); in GraphicView2MediaImageConverter()
295 mediaImage->mPlane[i].mVertSubsampling = plane.rowSampling; in GraphicView2MediaImageConverter()
428 / plane.rowSampling / plane.colSampling; in GraphicView2MediaImageConverter()
/hardware/google/av/codec2/tests/vndk/
DC2BufferTest.cpp430 for (uint32_t row = 0; row < rect.height / info.rowSampling; ++row) { in fillPlane()
431 int32_t rowOffset = (row + rect.top / info.rowSampling) * info.rowInc; in fillPlane()
440 for (uint32_t row = 0; row < rect.height / info.rowSampling; ++row) { in verifyPlane()
441 int32_t rowOffset = (row + rect.top / info.rowSampling) * info.rowInc; in verifyPlane()
/hardware/google/av/codec2/vndk/
DC2Buffer.cpp868 const uint32_t rowSampling = mLayout.planes[planeIx].rowSampling; in Mapped() local
870 || crop.top % rowSampling || crop.bottom() % rowSampling) { in Mapped()
/hardware/google/av/codec2/include/
DC2Buffer.h1491 uint32_t rowSampling; ///< subsampling compared to height (must be a power of 2) member