~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to Opcodes/syncgrain.c

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "csdl.h"
25
25
#include "syncgrain.h"
26
26
#include "soundio.h"
 
27
#include "interlocks.h"
27
28
 
28
29
/*
29
30
#ifdef HAVE_VALUES_H
686
687
 
687
688
 
688
689
static OENTRY localops[] = {
689
 
{"syncgrain", sizeof(syncgrain), 5, "a", "kkkkkiii",
 
690
{"syncgrain", sizeof(syncgrain), TR|5, "a", "kkkkkiii",
690
691
 (SUBR)syncgrain_init, NULL,(SUBR)syncgrain_process },
691
 
{"syncloop", sizeof(syncgrainloop), 5, "a", "kkkkkkkiiioo",
 
692
{"syncloop", sizeof(syncgrainloop), TR|5, "a", "kkkkkkkiiioo",
692
693
 (SUBR)syncgrainloop_init, NULL,(SUBR)syncgrainloop_process },
693
 
{"diskgrain", sizeof(filegrain), 5, DGRAIN_OUTTYPES, "Skkkkkiipo",
 
694
{"diskgrain", sizeof(filegrain), TR|5, DGRAIN_OUTTYPES, "Skkkkkiipo",
694
695
                            (SUBR)filegrain_init, NULL,(SUBR)filegrain_process }
695
696
 
696
697
};