Lines Matching refs:mHeight
153 uint32_t mHeight = 2560; member in Codec
189 mHeight = ((data[IDX_HT_BYTE_1] << 8) | data[IDX_HT_BYTE_2]) % kMaxHeight; in initEncoder()
269 sFillMemRecIp.u4_max_ht = mHeight; in initEncoder()
305 sInitIp.u4_max_ht = mHeight; in initEncoder()
361 sDimensionsIp.u4_ht = mHeight; in setDimensions()
418 sGetBufInfoIp.s_ive_ip.u4_max_ht = mHeight; in getBufInfo()
844 size_t frameSize = (mIvVideoColorFormat == IV_YUV_422ILE) ? (mWidth * mHeight * 2) in encodeFrames()
845 : ((mWidth * mHeight * 3) / 2); in encodeFrames()
965 uint8_t *yPlane = (uint8_t *)malloc(mWidth * mHeight); in setEncParams()
966 uint8_t *uPlane = (uint8_t *)malloc(frameSize - (mWidth * mHeight)); in setEncParams()
967 memcpy(yPlane, data, mWidth * mHeight); in setEncParams()
968 memcpy(uPlane, data + (mWidth * mHeight), frameSize - (mWidth * mHeight)); in setEncParams()
977 psInpRawBuf->au4_ht[0] = mHeight; in setEncParams()
978 psInpRawBuf->au4_ht[1] = mHeight / 2; in setEncParams()
992 psInpRawBuf->au4_ht[0] = mHeight; in setEncParams()
1001 uint8_t *yPlane = (uint8_t *)malloc(mWidth * mHeight); in setEncParams()
1002 uint8_t *uPlane = (uint8_t *)malloc((mWidth * mHeight) / 4); in setEncParams()
1003 uint8_t *vPlane = (uint8_t *)malloc(frameSize - ((mWidth * mHeight) * 5) / 4); in setEncParams()
1004 memcpy(yPlane, data, mWidth * mHeight); in setEncParams()
1005 memcpy(uPlane, data + (mWidth * mHeight), (mWidth * mHeight) / 4); in setEncParams()
1006 memcpy(vPlane, data + ((mWidth * mHeight) * 5) / 4, in setEncParams()
1007 frameSize - ((mWidth * mHeight) * 5) / 4); in setEncParams()
1020 psInpRawBuf->au4_ht[0] = mHeight; in setEncParams()
1021 psInpRawBuf->au4_ht[1] = mHeight / 2; in setEncParams()
1022 psInpRawBuf->au4_ht[2] = mHeight / 2; in setEncParams()