Home
last modified time | relevance | path

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

/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/utils/
DImsMediaImageRotate.cpp21 uint8_t* pbDst, uint8_t* pbSrc, uint16_t nSrcWidth, uint16_t nSrcHeight) in YUV420_Planar_Rotate90_Flip() argument
34 pbDst[dstIdx] = pbSrc[srcIdx]; // Y in YUV420_Planar_Rotate90_Flip()
52 pbDst[dstIdx - usize] = pbSrc[srcIdx]; // U in YUV420_Planar_Rotate90_Flip()
53 pbDst[dstIdx] = pbSrc[usize + srcIdx]; // V in YUV420_Planar_Rotate90_Flip()
116 void ImsMediaImageRotate::YUV420_SP_Rotate90_Flip(uint8_t* pbDst, uint8_t* pYPlane, in YUV420_SP_Rotate90_Flip() argument
131 pbDst[dstIdx] = pYPlane[srcIdx]; // Y in YUV420_SP_Rotate90_Flip()
147 pbDst[dstIdx--] = pUVPlane[srcIdx + 1]; // V in YUV420_SP_Rotate90_Flip()
148 pbDst[dstIdx--] = pUVPlane[srcIdx]; // U in YUV420_SP_Rotate90_Flip()
DImsMediaBinaryFormat.cpp97 static bool Base16ToBinary(uint8_t* pbDst, uint32_t* pnDstSize, uint32_t nDstBuffSize, char* pszSrc) in Base16ToBinary() argument
128 pbDst[dst_pos] = (h << 4) | l; in Base16ToBinary()
193 static bool Base64ToBinary(uint8_t* pbDst, uint32_t* pnDstSize, uint32_t nDstBuffSize, char* pszSrc) in Base64ToBinary() argument
195 uint8_t* pDecBuffer = pbDst; in Base64ToBinary()
260 *pnDstSize = (uint32_t)(pDecBuffer - pbDst); in Base64ToBinary()
282 uint8_t* pbDst, uint32_t* pnDstSize, uint32_t nDstBuffSize, char* pszSrc, uint32_t eFormat) in Base00ToBinary() argument
287 return Base16ToBinary(pbDst, pnDstSize, nDstBuffSize, pszSrc); in Base00ToBinary()
289 return Base64ToBinary(pbDst, pnDstSize, nDstBuffSize, pszSrc); in Base00ToBinary()
DImsMediaBitReader.cpp76 void ImsMediaBitReader::ReadByteBuffer(uint8_t* pbDst, uint32_t nBitSize) in ReadByteBuffer() argument
86 memcpy(pbDst, mBuffer + mBytePos, nByteSize); in ReadByteBuffer()
94 pbDst[dst_pos] = Read(8); in ReadByteBuffer()
103 pbDst[dst_pos] = (unsigned char)v; in ReadByteBuffer()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/utils/
DImsMediaBinaryFormat.h35 static bool Base00ToBinary(uint8_t* pbDst, uint32_t* pnDstSize, uint32_t nDstBuffSize,
DImsMediaBitReader.h29 void ReadByteBuffer(uint8_t* pbDst, uint32_t nBitSize);