Lines Matching defs:data
48 static void process_data (double *data, int count, int channels) ;
54 ** which will hold our data while we process it.
56 static double data [BUFFER_LEN] ;
115 while ((readcount = (int) sf_read_double (infile, data, BUFFER_LEN)))
116 { process_data (data, readcount, sfinfo.channels) ;
117 sf_write_double (outfile, data, readcount) ;
128 process_data (double *data, int count, int channels)
132 /* Process the data here.
134 ** the data interleaving youself.
140 data [k] *= channel_gain [chan] ;