[PD-cvs] externals/creb/modules extlib_util.h, 1.3, 1.4 fdn~.c, 1.2, 1.3 ffpoly.c, 1.3, 1.4 permut~.c, 1.2, 1.3

Tom Schouten doelie at users.sourceforge.net
Sat Aug 26 00:38:44 CEST 2006


Update of /cvsroot/pure-data/externals/creb/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22208/modules

Modified Files:
	extlib_util.h fdn~.c ffpoly.c permut~.c 
Log Message:
creb: removed garbage system/ and include/ files

Index: extlib_util.h
===================================================================
RCS file: /cvsroot/pure-data/externals/creb/modules/extlib_util.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** extlib_util.h	22 Aug 2006 00:54:41 -0000	1.3
--- extlib_util.h	25 Aug 2006 22:38:42 -0000	1.4
***************
*** 18,22 ****
   */
  
! #ifndef CREB_EXTLIB_UTIL_H 	 
  #define CREB_EXTLIB_UTIL_H
  
--- 18,22 ----
   */
  
! #ifndef CREB_EXTLIB_UTIL_H
  #define CREB_EXTLIB_UTIL_H
  
***************
*** 48,51 ****
  
  
- 
  #endif /* CREB_EXTLIB_UTIL_H */
--- 48,51 ----
  
  
  #endif /* CREB_EXTLIB_UTIL_H */
+ 

Index: permut~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/creb/modules/permut~.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** permut~.c	15 Aug 2006 15:11:52 -0000	1.2
--- permut~.c	25 Aug 2006 22:38:42 -0000	1.3
***************
*** 31,35 ****
  {
    char c_type;
!   int *c_permutationtable;
    int c_blocksize;
  } t_permutctl;
--- 31,35 ----
  {
    char c_type;
!   t_int *c_permutationtable;
    int c_blocksize;
  } t_permutctl;
***************
*** 63,67 ****
    int N = x->x_ctl.c_blocksize;
    int mask = N-1;
!   int *p = x->x_ctl.c_permutationtable;
    int r, last = 0;
  
--- 63,67 ----
    int N = x->x_ctl.c_blocksize;
    int mask = N-1;
!   t_int *p = x->x_ctl.c_permutationtable;
    int r, last = 0;
  
***************
*** 104,108 ****
        if (x->x_ctl.c_permutationtable)
  	free(x->x_ctl.c_permutationtable);
!       x->x_ctl.c_permutationtable = (int *)malloc(sizeof(int)*size);
        x->x_ctl.c_blocksize = size;
  
--- 104,108 ----
        if (x->x_ctl.c_permutationtable)
  	free(x->x_ctl.c_permutationtable);
!       x->x_ctl.c_permutationtable = (t_int *)malloc(sizeof(int)*size);
        x->x_ctl.c_blocksize = size;
  

Index: fdn~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/creb/modules/fdn~.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** fdn~.c	15 Aug 2006 15:11:52 -0000	1.2
--- fdn~.c	25 Aug 2006 22:38:42 -0000	1.3
***************
*** 330,334 ****
    int mask = x->x_ctl.c_bufsize - 1;
    int start =  x->x_ctl.c_tap[0];
!   int *tap = x->x_ctl.c_tap;
    float *length = x->x_ctl.c_length;
    float scale = sys_getsr() * .001f;
--- 330,334 ----
    int mask = x->x_ctl.c_bufsize - 1;
    int start =  x->x_ctl.c_tap[0];
!   t_int *tap = x->x_ctl.c_tap;
    float *length = x->x_ctl.c_length;
    float scale = sys_getsr() * .001f;

Index: ffpoly.c
===================================================================
RCS file: /cvsroot/pure-data/externals/creb/modules/ffpoly.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ffpoly.c	15 Aug 2006 15:11:52 -0000	1.3
--- ffpoly.c	25 Aug 2006 22:38:42 -0000	1.4
***************
*** 50,54 ****
      int fo = x->x_field_order;
      int po = x->x_poly_order;
!     int* c = x->x_coef;
      int i, out;
  
--- 50,54 ----
      int fo = x->x_field_order;
      int po = x->x_poly_order;
!     t_int* c = x->x_coef;
      int i, out;
  
***************
*** 136,140 ****
      x->x_field_order = fieldorder;
  
!     x->x_coef = (int *)malloc((x->x_poly_order  + 1) * sizeof(int));
  
      /* set poly to f(x) = x */
--- 136,140 ----
      x->x_field_order = fieldorder;
  
!     x->x_coef = (t_int *)malloc((x->x_poly_order  + 1) * sizeof(int));
  
      /* set poly to f(x) = x */





More information about the Pd-cvs mailing list