lsl_push_chunk_buft function

  1. @Native<NativeLsl_push_chunk_buft>()
int lsl_push_chunk_buft(
  1. lsl_outlet out,
  2. Pointer<Pointer<Char>> data,
  3. Pointer<Uint32> lengths,
  4. int data_elements,
  5. double timestamp,
)

@copydoc lsl_push_chunk_buf @sa lsl_push_chunk_ftp @sa lsl_push_chunk_buf @param timestamp Optionally the capture time of the most recent sample, in agreement with lsl_local_clock(); if omitted, the current time is used. The time stamps of other samples are automatically derived based on the sampling rate of the stream.

Implementation

@ffi.Native<NativeLsl_push_chunk_buft>()
external int lsl_push_chunk_buft(
  lsl_outlet out,
  ffi.Pointer<ffi.Pointer<ffi.Char>> data,
  ffi.Pointer<ffi.Uint32> lengths,
  int data_elements,
  double timestamp,
);