mix1.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. int set_up_mix(dataptr dz);
  22. int mix_syntax_check(dataptr dz);
  23. int mix_preprocess(dataptr dz);
  24. int mmix(dataptr dz);
  25. int mix_syntax_check(dataptr dz);
  26. int mix_level_check(double *normalisation,dataptr dz);
  27. int create_mixdummy(dataptr dz);
  28. int mix_twisted(dataptr dz);
  29. int mix_gain(dataptr dz);
  30. int mix_timewarp(dataptr dz);
  31. int mix_spacewarp(dataptr dz);
  32. int mix_shufl(dataptr dz);
  33. int do_time_manip(dataptr dz);
  34. int do_time_and_name_copy(dataptr dz);
  35. int do_name_reverse(dataptr dz);
  36. int do_name_and_time_reverse(dataptr dz);
  37. int do_name_freeze(dataptr dz);
  38. int do_name_and_time_freeze(dataptr dz);
  39. int randomise_names(dataptr dz);
  40. int get_maxwordsize(int **maxwordsize,dataptr dz);
  41. int output_mixfile_lines(int *maxwordsize,dataptr dz);
  42. int read_new_filename(char *filename,dataptr dz);
  43. int mix_twisted(dataptr dz);
  44. int check_new_filename(char *filename,dataptr dz);
  45. int mix_sync(dataptr dz);
  46. int mix_sync_a_mixfile(dataptr dz);
  47. int open_file_and_retrieve_props(int filecnt,char *filename,int *srate,dataptr dz);
  48. int open_file_retrieve_props_open(int filecnt,char *filename,int *srate,dataptr dz);
  49. int synchronise_mix_attack(dataptr dz);
  50. int get_level(char *thisword,double *level);
  51. int sync_and_output_mixfile_line
  52. (int n,char *filename,int max_namelen,int max_timeword,double timestor,double gain,dataptr dz);
  53. int retime_the_lines(double *timestor,int maxpostdec,dataptr dz);
  54. int timesort_mixfile(double *timestor,dataptr dz);
  55. int mixtwo_preprocess(dataptr dz);
  56. int mixtwo(dataptr dz);
  57. //TW NEW
  58. int mixmany(dataptr dz);
  59. int mix_cross(dataptr dz);
  60. int mixcross_preprocess(dataptr dz);
  61. int mix_interl(dataptr dz);
  62. int mix_inbetween(dataptr dz);
  63. int get_inbetween_ratios(dataptr dz);
  64. int open_file_and_retrieve_props(int filecnt,char *filename,int *srate,dataptr dz);
  65. int cross_stitch(dataptr dz);
  66. //TW NEW
  67. int do_automix(dataptr dz);
  68. int addtomix(dataptr dz);
  69. int panmix(dataptr dz);
  70. int mix_model(dataptr dz);
  71. int reset_up_mix(dataptr dz);