Home
last modified time | relevance | path

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

/hardware/google/av/media/codecs/vpx/
DC2SoftVpxDec.cpp528 size_t dstYStride = align(width, 16) * bpp ; in copyOutputBufferToYV12Frame() local
529 size_t dstUVStride = align(dstYStride / 2, 16); in copyOutputBufferToYV12Frame()
535 dst += dstYStride; in copyOutputBufferToYV12Frame()
538 dst = dstStart + dstYStride * height; in copyOutputBufferToYV12Frame()
545 dst = dstStart + (dstYStride * height) + (dstUVStride * height / 2); in copyOutputBufferToYV12Frame()
/hardware/google/av/media/codecs/mpeg4_h263/
DC2SoftMpeg4Dec.cpp465 static void copyOutputBufferToYV12Frame(uint8_t *dst, uint8_t *src, size_t dstYStride, in copyOutputBufferToYV12Frame() argument
467 size_t dstUVStride = align(dstYStride / 2, 16); in copyOutputBufferToYV12Frame()
475 dst += dstYStride; in copyOutputBufferToYV12Frame()
479 dst = dstStart + (dstYStride * height) + (dstUVStride * height / 2); in copyOutputBufferToYV12Frame()
487 dst = dstStart + (dstYStride * height); in copyOutputBufferToYV12Frame()
/hardware/qcom/camera/msm8998/QCamera2/HAL/test/
Dqcamera_test.cpp1049 size_t srcYStride = 0, dstYStride = 0; in dataCallbackTimestamp() local
1087 dstYStride = calcStride(currentVideoSize.width); in dataCallbackTimestamp()
1100 dstOffset = i*dstYStride; in dataCallbackTimestamp()
1106 dstBaseOffset = dstYStride * dstYScanLines; in dataCallbackTimestamp()
1137 srcYStride = dstYStride; in dataCallbackTimestamp()
1145 dstOffset = i*dstYStride; in dataCallbackTimestamp()