Searched refs:tmpU (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/codec2/components/base/ |
D | SimpleC2Component.cpp | 561 uint16_t* const tmpU = tmpY + dstYStride * height; in convertPlanar16ToP010() local 562 uint16_t* const tmpV = tmpU + dstUStride * align(height, 2) / 2; in convertPlanar16ToP010() 565 dstYStride, tmpU, dstUStride, tmpV, dstUStride, width, height); in convertPlanar16ToP010() 568 dstYStride, tmpU, dstUStride, tmpV, dstUStride, width, height); in convertPlanar16ToP010() 570 libyuv::I010ToP010(tmpY, dstYStride, tmpU, dstUStride, tmpV, dstVStride, dstY, dstYStride, in convertPlanar16ToP010() 597 uint16_t* const tmpU = tmpY + dstYStride * height; in convertPlanar16ToYV12() local 598 uint16_t* const tmpV = tmpU + dstUStride * align(height, 2) / 2; in convertPlanar16ToYV12() 600 tmpU, dstUStride, tmpV, dstVStride, width, height); in convertPlanar16ToYV12() 601 libyuv::I010ToI420(tmpY, dstYStride, tmpU, dstUStride, tmpV, dstUStride, dstY, dstYStride, in convertPlanar16ToYV12()
|
/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 1027 uint16_t *const tmpU = tmpY + dstYStride * mHeight; in outputBuffer() local 1028 uint16_t *const tmpV = tmpU + dstUStride * align(mHeight, 2) / 2; in outputBuffer() 1031 tmpY, dstYStride, tmpU, dstUStride, tmpV, dstUStride, in outputBuffer() 1035 tmpY, dstYStride, tmpU, dstUStride, tmpV, dstUStride, in outputBuffer() 1038 libyuv::I010ToP010(tmpY, dstYStride, tmpU, dstUStride, tmpV, dstVStride, in outputBuffer() 1063 uint16_t *const tmpU = tmpY + dstYStride * mHeight; in outputBuffer() local 1064 uint16_t *const tmpV = tmpU + dstUStride * align(mHeight, 2) / 2; in outputBuffer() 1066 tmpY, dstYStride, tmpU, dstUStride, tmpV, dstVStride, in outputBuffer() 1068 libyuv::I010ToI420(tmpY, dstYStride, tmpU, dstUStride, tmpV, dstUStride, in outputBuffer()
|