#include <stdio.h>
#include <samplerate.h>

int main ()
{
  float o[100];
  SRC_DATA d;
  int r;
  SRC_STATE *s = src_new (SRC_LINEAR, 1, &r);
  fprintf (stderr, "%i\n", r);
  d.data_in = (float *) 0xdeadbeef;
  d.input_frames = 0;
  d.data_out = o;
  d.output_frames = 100;
  d.end_of_input = 0;
  d.src_ratio = 1;
  fprintf (stderr, "%i\n", src_process (s, &d));
  return 0;
}
