yuv420sp2rgb method

void yuv420sp2rgb(
  1. Pointer<UnsignedChar> yuv420sp,
  2. int width,
  3. int height,
  4. Pointer<UnsignedChar> rgb,
)

Implementation

void yuv420sp2rgb(
  ffi.Pointer<ffi.UnsignedChar> yuv420sp,
  int width,
  int height,
  ffi.Pointer<ffi.UnsignedChar> rgb,
) {
  return _yuv420sp2rgb(
    yuv420sp,
    width,
    height,
    rgb,
  );
}