| 313 | } |
| 314 | |
| 315 | void* BlCvStreamWriter::GetStreamPtr(int pos) |
| 316 | { |
| 317 | int blockNum = mCurStream->mBlocks[pos / CV_BLOCK_SIZE]; |
| 318 | auto data = (uint8*)mMsf->mBlocks[blockNum]->mData; |
| 319 | return (uint8*)data + (pos % CV_BLOCK_SIZE); |
| 320 | } |
| 321 | |
| 322 | ////////////////////////////////////////////////////////////////////////// |
| 323 |
no outgoing calls
no test coverage detected