I\'m currently working on a C# wrapper to work with Dallmeier Common API light. See previous posting: C# wrapper and Callbacks
I\'ve got pretty much everything \'w
unsigned char** yuvData should be defined as [MarshalAs(UnmanagedType.ByValArray,SizeConst=3)] IntPtr[] yuvData
unsigned char** yuvData
[MarshalAs(UnmanagedType.ByValArray,SizeConst=3)] IntPtr[] yuvData
You will then get an array of 3 IntPtrs. You can the read the actual data using the Marshal.Read or Marshal.Copy.