Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/mpeg4_h263/
DC2SoftMpeg4Enc.cpp597 size_t yPlaneSize = width * height; in process() local
602 MemoryBlock conversionBuffer = mConversionBuffers.fetch(yPlaneSize * 3 / 2); in process()
605 uPlane = yPlane + yPlaneSize; in process()
606 vPlane = uPlane + yPlaneSize / 4; in process()
631 MemoryBlock conversionBuffer = mConversionBuffers.fetch(yPlaneSize * 3 / 2); in process()
641 uPlane = yPlane + yPlaneSize; in process()
642 vPlane = uPlane + yPlaneSize / 4; in process()
/frameworks/av/media/codec2/components/hevc/
DC2SoftHevcEnc.cpp891 size_t yPlaneSize = width * height; in setEncodeArgs() local
898 mConversionBuffers.fetch(yPlaneSize * 3 / 2); in setEncodeArgs()
902 uPlane = yPlane + yPlaneSize; in setEncodeArgs()
903 vPlane = uPlane + yPlaneSize / 4; in setEncodeArgs()
929 mConversionBuffers.fetch(yPlaneSize * 3 / 2); in setEncodeArgs()
940 uPlane = yPlane + yPlaneSize; in setEncodeArgs()
941 vPlane = uPlane + yPlaneSize / 4; in setEncodeArgs()
/frameworks/av/media/codec2/components/avc/
DC2SoftAvcEnc.cpp1539 size_t yPlaneSize = width * height; in setEncodeArgs() local
1545 ALOGV("yPlaneSize = %zu", yPlaneSize); in setEncodeArgs()
1546 MemoryBlock conversionBuffer = mConversionBuffers.fetch(yPlaneSize * 3 / 2); in setEncodeArgs()
1549 uPlane = yPlane + yPlaneSize; in setEncodeArgs()
1550 vPlane = uPlane + yPlaneSize / 4; in setEncodeArgs()
1575 MemoryBlock conversionBuffer = mConversionBuffers.fetch(yPlaneSize * 3 / 2); in setEncodeArgs()
1584 uPlane = yPlane + yPlaneSize; in setEncodeArgs()
1585 vPlane = uPlane + yPlaneSize / 4; in setEncodeArgs()
/frameworks/av/media/codec2/sfplugin/tests/
DCCodecBuffers_test.cpp736 size_t yPlaneSize = stride * kHeight; in CreateAndFillBufferFromParam() local
738 size_t capacity = yPlaneSize + uvPlaneSize * 2; in CreateAndFillBufferFromParam()
750 size_t planeSize = (planeOrder[0] == C2PlanarLayout::PLANE_Y) ? yPlaneSize : uvPlaneSize; in CreateAndFillBufferFromParam()
756 planeSize = (planeOrder[i] == C2PlanarLayout::PLANE_Y) ? yPlaneSize : uvPlaneSize; in CreateAndFillBufferFromParam()