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

« back to all changes in this revision

Viewing changes to Opcodes/ambicode.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:
29
29
    OPDS    h;                                      /* required header */
30
30
    MYFLT   *mw, *mx, *my, *mz, *mr, *ms, *mt, *mu, *mv, *mk,
31
31
            *ml, *mm, *mn, *mo, *mp, *mq;           /* addr outarg */
32
 
  MYFLT   *asig, *kalpha, *kbeta, *kin[4];          /* addr inargs */
 
32
    MYFLT   *asig, *kalpha, *kbeta, *kin[4];          /* addr inargs */
33
33
    /* private dataspace */
34
34
    double  w, x, y, z, r, s, t, u, v, k, l, m, n, o, p, q;
35
35
} AMBIC;
714
714
#define S(x)    sizeof(x)
715
715
 
716
716
static OENTRY localops[] = {
717
 
  { "bformenc", S(AMBIC), 5, "mmmmmmmmmmmmmmmm", "akkPPPP",
 
717
  { "bformenc", S(AMBIC), _QQ|5, "mmmmmmmmmmmmmmmm", "akkPPPP",
718
718
                            (SUBR)iambicode, NULL, (SUBR)aambicode },
719
 
  { "bformdec", S(AMBID), 5, "mmmmmmmm", "iaaay",
 
719
  { "bformdec", S(AMBID), _QQ|5, "mmmmmmmm", "iaaay",
720
720
                            (SUBR)iambideco, NULL, (SUBR)aambideco }
721
721
};
722
722