Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一些与变量关联的像素缓冲区:
CVPixelBufferRef a;
我想克隆该缓冲区及其所有内容,并将克隆的缓冲区分配给另一个变量。最正确和最快速的方法是什么?
到目前为止,我没有找到比 memcpy() 更好的解决方案。希望它复制所有需要的数据。