~alex.barker/mixxx/mixxx-libs

« back to all changes in this revision

Viewing changes to mixxx/lib/fidlib-0.9.10/fidrf_cmdlist.h

  • Committer: Alex Barker
  • Date: 2011-07-25 01:49:54 UTC
  • Revision ID: alex@1stleg.com-20110725014954-9ihvb61bfo1mgd0n
patched fidlib 0.9.10 from 0.9.9 in bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
static double 
77
77
filter_step(void *fbuf, double iir) {
78
78
   double *coef= ((RunBuf*)fbuf)->coef;
79
 
   uchar *cmd= (uchar*) ((RunBuf*)fbuf)->cmd;
 
79
   uchar *cmd= ((uchar*)fbuf)->cmd;
80
80
   double *buf= &((RunBuf*)fbuf)->buf[0];
81
81
   uchar ch;
82
82
   double fir= 0;
409
409
 
410
410
int 
411
411
fid_run_bufsize(void *run) {
412
 
   Run *rr= (Run*) run;
 
412
   Run *rr= (Run*)run;
413
413
   int siz;
414
414
 
415
415
   if (rr->magic != 0x64966325)
430
430
 
431
431
void 
432
432
fid_run_initbuf(void *run, void *buf) {
433
 
   Run *rr= (Run*) run;
434
 
   RunBuf *rb= (RunBuf*) buf;
 
433
   Run *rr= (Run*)run;
 
434
   RunBuf *rb= (RunBuf*)buf;
435
435
   int siz;
436
436
 
437
437
   if (rr->magic != 0x64966325)
453
453
 
454
454
void 
455
455
fid_run_zapbuf(void *buf) {
456
 
   RunBuf *rb= (RunBuf*) buf;
 
456
   RunBuf *rb= (RunBuf*)buf;
457
457
   memset(rb->buf, 0, rb->mov_cnt + sizeof(double));
458
458
}   
459
459