[PD-cvs] pd/src d_soundfile.c,1.4.4.11.2.10.2.7,1.4.4.11.2.10.2.8

Mathieu Bouchard matju at users.sourceforge.net
Tue Jul 3 03:05:11 CEST 2007


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

Modified Files:
      Tag: desiredata
	d_soundfile.c 
Log Message:
remove struct prefix again; cleanup


Index: d_soundfile.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/d_soundfile.c,v
retrieving revision 1.4.4.11.2.10.2.7
retrieving revision 1.4.4.11.2.10.2.8
diff -C2 -d -r1.4.4.11.2.10.2.7 -r1.4.4.11.2.10.2.8
*** d_soundfile.c	3 Jul 2007 00:35:53 -0000	1.4.4.11.2.10.2.7
--- d_soundfile.c	3 Jul 2007 01:05:09 -0000	1.4.4.11.2.10.2.8
***************
*** 150,154 ****
  0 for Intel: */
  
! extern int garray_ambigendian(void);
  
  /* byte swappers */
--- 150,154 ----
  0 for Intel: */
  
! extern int garray_ambigendian();
  
[...1820 lines suppressed...]
      class_addmethod(writesf_class, (t_method)writesf_print, gensym("print"), 0);
!     CLASS_MAINSIGNALIN(writesf_class, t_writesf, x_f);
  }
  
  /* ------------------------ global setup routine ------------------------- */
  
! void d_soundfile_setup(void) {
      if (sizeof(uint16)!=2) bug("uint16 should really be 16 bits");
      if (sizeof(uint32)!=4) bug("uint32 should really be 32 bits");
--- 2300,2309 ----
      class_addmethod(writesf_class, (t_method)writesf_open, gensym("open"), A_GIMME, 0);
      class_addmethod(writesf_class, (t_method)writesf_print, gensym("print"), 0);
!     CLASS_MAINSIGNALIN(writesf_class, t_writesf, f);
  }
  
  /* ------------------------ global setup routine ------------------------- */
  
! void d_soundfile_setup() {
      if (sizeof(uint16)!=2) bug("uint16 should really be 16 bits");
      if (sizeof(uint32)!=4) bug("uint32 should really be 32 bits");





More information about the Pd-cvs mailing list