Hello,
must I delete or in any other way deallocate aFrame in MCameraObserver::ViewFinderFrameReady(CFbsBitmap& aFrame) ?
Must I delete the CFbsBitmap structure? Or the pixel data it's pointing to (aFrame.DataAddress()) ?
Thanks, Neven
Hello,
must I delete or in any other way deallocate aFrame in MCameraObserver::ViewFinderFrameReady(CFbsBitmap& aFrame) ?
Must I delete the CFbsBitmap structure? Or the pixel data it's pointing to (aFrame.DataAddress()) ?
Thanks, Neven
No, you must not. Ownership is not transfered to you.
Exactly, but you must copy it if you want to use it outside the callback because it will go out of scope.
Sorcery