Searched refs:tmpY (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/codec2/components/base/ |
D | SimpleC2Component.cpp | 560 uint16_t* const tmpY = tmpFrameBuffer; in convertPlanar16ToP010() local 561 uint16_t* const tmpU = tmpY + dstYStride * height; in convertPlanar16ToP010() 564 libyuv::I410ToI010(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, tmpY, in convertPlanar16ToP010() 567 libyuv::I210ToI010(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, tmpY, in convertPlanar16ToP010() 570 libyuv::I010ToP010(tmpY, dstYStride, tmpU, dstUStride, tmpV, dstVStride, dstY, dstYStride, in convertPlanar16ToP010() 596 uint16_t* const tmpY = tmpFrameBuffer; in convertPlanar16ToYV12() local 597 uint16_t* const tmpU = tmpY + dstYStride * height; in convertPlanar16ToYV12() 599 libyuv::I410ToI010(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, tmpY, dstYStride, in convertPlanar16ToYV12() 601 libyuv::I010ToI420(tmpY, dstYStride, tmpU, dstUStride, tmpV, dstUStride, dstY, dstYStride, in convertPlanar16ToYV12()
|
/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 1026 uint16_t *const tmpY = mTmpFrameBuffer.get(); in outputBuffer() local 1027 uint16_t *const tmpU = tmpY + dstYStride * mHeight; 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() 1062 uint16_t *const tmpY = mTmpFrameBuffer.get(); in outputBuffer() local 1063 uint16_t *const tmpU = tmpY + dstYStride * mHeight; in outputBuffer() 1066 tmpY, dstYStride, tmpU, dstUStride, tmpV, dstVStride, in outputBuffer() 1068 libyuv::I010ToI420(tmpY, dstYStride, tmpU, dstUStride, tmpV, dstUStride, in outputBuffer()
|