modify1.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (c) 1983-2013 Trevor Wishart and Composers Desktop Project Ltd
  3. * http://www.trevorwishart.co.uk
  4. * http://www.composersdesktop.com
  5. *
  6. This file is part of the CDP System.
  7. The CDP System is free software; you can redistribute it
  8. and/or modify it under the terms of the GNU Lesser General Public
  9. License as published by the Free Software Foundation; either
  10. version 2.1 of the License, or (at your option) any later version.
  11. The CDP System is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU Lesser General Public License for more details.
  15. You should have received a copy of the GNU Lesser General Public
  16. License along with the CDP System; if not, write to the Free Software
  17. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  18. 02111-1307 USA
  19. *
  20. */
  21. /* 'MODIFY' FUNCTIONS */
  22. int granula_pconsistency(dataptr dz);
  23. int lobit_pconsistency(dataptr dz);
  24. int scrub_pconsistency(dataptr dz);
  25. int crossmod_pconsistency(dataptr dz);
  26. int granula_preprocess(dataptr dz);
  27. int vtrans_preprocess(dataptr dz);
  28. int scrub_preprocess(dataptr dz);
  29. int create_rm_sintab(dataptr dz);
  30. int sausage_preprocess(dataptr dz);
  31. //TW NEW
  32. int stack_preprocess(dataptr dz);
  33. int granula_process(dataptr dz);
  34. int loudness_process(dataptr dz);
  35. int dopan(dataptr dz);
  36. int mirroring(dataptr dz);
  37. void mirror_panfile(dataptr dz);
  38. int narrow_sound(dataptr dz);
  39. int process_varispeed(dataptr dz);
  40. int do_reversing(dataptr dz);
  41. int lobit_process(dataptr dz);
  42. int do_scrubbing(dataptr dz);
  43. int ring_modulate(dataptr dz);
  44. int cross_modulate(dataptr dz);
  45. int generate_sintable(dataptr dz);
  46. //TW NEW
  47. int do_stack(dataptr dz);
  48. int create_modspeed_buffers(dataptr dz);
  49. int create_delay_buffers(dataptr dz);
  50. int create_reversing_buffers(dataptr dz);
  51. int create_shred_buffers(dataptr dz);
  52. int create_scrub_buffers(dataptr dz);
  53. int create_crossmod_buffers(dataptr dz);
  54. int create_sausage_buffers(dataptr dz);
  55. void print_message_flush(char *str);
  56. void print_warning_flush(char *str);
  57. //TW NEW
  58. int do_convolve(dataptr dz);
  59. int convolve_preprocess(dataptr dz);
  60. int do_shudder(dataptr dz);
  61. int findpan(dataptr dz);