Say I have a pixel buffer associated with a variable:
CVPixelBufferRef a;
I want to clone this buffer with all the contents and assign the cloned one to another. What is the best and fastest way to do this?
So far I have not found a better solution than memcpy (). I hope he copies all the necessary data.