[PD-cvs] pd/src m_pd.h,1.4.4.11.2.33.2.29,1.4.4.11.2.33.2.30

Mathieu Bouchard matju at users.sourceforge.net
Wed Jan 3 09:51:28 CET 2007


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15793

Modified Files:
      Tag: desiredata
	m_pd.h 
Log Message:
.


Index: m_pd.h
===================================================================
RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v
retrieving revision 1.4.4.11.2.33.2.29
retrieving revision 1.4.4.11.2.33.2.30
diff -C2 -d -r1.4.4.11.2.33.2.29 -r1.4.4.11.2.33.2.30
*** m_pd.h	3 Jan 2007 06:39:26 -0000	1.4.4.11.2.33.2.29
--- m_pd.h	3 Jan 2007 08:51:25 -0000	1.4.4.11.2.33.2.30
***************
*** 211,214 ****
--- 211,216 ----
  #endif
  /* g_next is moved out to keep ABI compat */
+ /* this is incompatible with externs compiled for regular pd that use g_next directly;
+    those are gui/state, clone, dyn, dynext, toxy, cyclone */
      t_appendix *dix;     /* voyeurism (observable/observer/etc) */
  #define g_adix dix
***************
*** 666,682 ****
  #define RESAMPLE_DEFAULT RESAMPLE_ZERO
  
! typedef struct _resample
! {
    int method;       /* up/downsampling method ID */
- 
    t_int downsample; /* downsampling factor */
    t_int upsample;   /* upsampling factor */
- 
    t_float *s_vec;   /* here we hold the resampled data */
    int      s_n;
- 
    t_float *coeffs;  /* coefficients for filtering... */
    int      coefsize;
- 
    t_float *buffer;  /* buffer for filtering */
    int      bufsize;
--- 668,679 ----
  #define RESAMPLE_DEFAULT RESAMPLE_ZERO
  
! typedef struct _resample {
    int method;       /* up/downsampling method ID */
    t_int downsample; /* downsampling factor */
    t_int upsample;   /* upsampling factor */
    t_float *s_vec;   /* here we hold the resampled data */
    int      s_n;
    t_float *coeffs;  /* coefficients for filtering... */
    int      coefsize;
    t_float *buffer;  /* buffer for filtering */
    int      bufsize;
***************
*** 685,689 ****
  EXTERN void resample_init(t_resample *x);
  EXTERN void resample_free(t_resample *x);
- 
  EXTERN void resample_dsp(t_resample *x, t_sample *in, int insize, t_sample *out, int outsize, int method);
  EXTERN void resamplefrom_dsp(t_resample *x, t_sample *in, int insize, int outsize, int method);
--- 682,685 ----
***************
*** 691,695 ****
  /* } IOhannes */
  
- 
  /* tb: exporting basic simd coded dsp functions { */
  
--- 687,690 ----





More information about the Pd-cvs mailing list