home *** CD-ROM | disk | FTP | other *** search
/ Super PC 33 / Super PC 33 (Shareware).iso / spc / sonido / timidity / source / changes < prev    next >
Encoding:
Text File  |  1995-08-03  |  8.2 KB  |  250 lines

  1. ---------------------------*-indented-text-*------------------------------
  2.  
  3.     TiMidity -- Experimental MIDI to WAVE converter
  4.     Copyright (C) 1995 Tuukka Toivonen <titoivon@snakemail.hut.fi>
  5.  
  6. --------------------------------------------------------------------------
  7.  
  8.     List of changes
  9.  
  10. --------------------------------------------------------------------------
  11.  
  12. 0.2f to 0.2g
  13.  
  14.     Wrote a little WAVE to patch converter and added ".wav" to
  15.     DECOMPRESSOR_LIST to allow using wave files as simple
  16.     instruments. This was Davor Jadrijevic's suggestion from some
  17.     time back. New file: wav2pat.c
  18.  
  19.     Took out ADJUST_PANNING_IMMEDIATELY and put in a command line
  20.     option "-F" for "turn off _F_ast panning". Running out of
  21.     letters for command line options.
  22.  
  23.     Error check in read_config_file to make some noise when
  24.     directories are specified as config files.
  25.  
  26.     Squashed a segfault that resulted from resampling past loop
  27.     end (FINALINTERP, when incr > 1<<FRACTION_BITS). 
  28.  
  29.     Sweep computation overflow with seashore.pat fixed.
  30.  
  31.     The portion of sample data from loop_end to data_length is now
  32.     played if the instrument doesn't have a loop or an envelope.
  33.     Some patches (e.g. Fretnoyz from the ProPats 3.0 set) contain
  34.     garbage between loop_end and data_length, so there's a new
  35.     config file option "strip=tail" to drop it off.
  36.  
  37.     Reverse loops are now done "right".
  38.  
  39.     Slight LOOKUP_HACK cleanup. There's a "final_volume_t" type
  40.     that's either an uint8 or an int32, whichever is required for
  41.     mixing computations, and a FINAL_VOLUME() macro to convert an
  42.     int32 to the required type.
  43.  
  44.     Changed the "THING := $(THING) junk" assignments in Makefile
  45.     to "THING += junk"'s. Hopefully the latter is understood by
  46.     more makes than the former. The whole mess will be replaced by
  47.     a configure script within a few releases.
  48.  
  49.     Split up mix_data in mix.c to make it easier to look at.
  50.  
  51. 0.2e to 0.2f
  52.  
  53.     Moved mixing functions out of resample.c. New files: mix.c,
  54.     mix.h.
  55.  
  56.     Added midia.cfg config file for the Midia patch set.
  57.  
  58.     Added Shawn McHorse's loop optimizations and LOOKUP_SINE
  59.     config.h option.
  60.  
  61.     Added Shawn's FAST_DECAY command line switch -- config.h
  62.     option FAST_DECAY now sets the default for this switch.
  63.  
  64.     USE_LDEXP config.h option, in case your compiler converts
  65.     ldexp() into a straight fscale, and fscale is faster than fmul
  66.     on your machine.
  67.  
  68.     Fixed WAVE header bug -- the lengths were 44 bytes short.
  69.     Thanks to Alexey Marinichev for noticing.
  70.  
  71.     Added PATCH_EXT_LIST option to config.h, so you don't have to
  72.     change every filename in your configuration file when you
  73.     decide to compress your patches.
  74.  
  75.     Added external utility "bag". New file: bag.c, read it for
  76.     info.
  77.  
  78.     Added "extern" to the s32towhatever() prototypes in output.h.
  79.  
  80. 0.2d to 0.2e
  81.  
  82.     Riccardo Facchetti's S-Lang-based user interface: a more
  83.     efficient alternative to ncurses. Options in Makefile.
  84.  
  85.     Rearranged options in Makefile to make various combinations
  86.     easier to select.
  87.  
  88.     LOOKUP_HACK config file option: horrible experimental kludge
  89.     to substitute table lookups for multiplication. First attempt
  90.     to use uLaw as sample format failed miserably. Now using 8-bit
  91.     linear, which is fine for Sound Blaster owners. It only saves
  92.     ~20% of CPU on a Pentium, but let me know what it does to your
  93.     setup.
  94.  
  95.     Changed instrument loading to add the Sustain flag to all
  96.     patches which have the Looped flag set.
  97.  
  98.     Implemented All Notes Off, All Sounds Off, and Reset All
  99.     Controllers events. The Day of the Tentacle intro music uses
  100.     the first and plays OK now. The other two might work, or they
  101.     might throw your machine into a damaging infinite binary loop.
  102.  
  103.     Implemented Bank Select controller. Sort of emulates the SCC-1
  104.     (I think): use Control Change 00 xx, where xx is the tone bank
  105.     you want.  Totally untested. Some MIDI files use Control
  106.     Change 0 for something else, generating loads of warnings.
  107.  
  108.     In config.h, changed the default command line for shorten to
  109.     work with version 1.22. The old one was for some ancient
  110.     version which I finally got around to replacing.
  111.  
  112.     Fencepost error in resampling fixed by Vincent Pagel.
  113.  
  114.     Fixed problem with bidirectional loops and vibrato.
  115.  
  116. 0.2c to 0.2d
  117.  
  118.     Volume computations rewritten to use both floating point and
  119.     integer multiplication.
  120.  
  121.     Tremolo and vibrato handling. Some tuning parameters are
  122.     available in config.h.
  123.  
  124.     Fixed-pitch, non-looped instruments are now resampled at load
  125.     time.  Note that fixed-pitch instruments can't be pitch-bent.
  126.  
  127.     Cheaper click removal scheme. Removed I_WANT_THE_CLICKS_BACK
  128.     option from config.h, added MAX_DIE_TIME definition. Moved
  129.     resampling and mixing functions from playmidi.{c,h} to new
  130.     files: resample.c, resample.h.
  131.  
  132.     Percussion instrument pitches can now be specified
  133.     independently of the note they're assigned to. Melodic
  134.     instrument pitches can also be forced. Extra options in config
  135.     file -- see the manual. Thanks to Davor Jadrijevic for his
  136.     suggestions.
  137.  
  138.     Loops and envelopes are now removed from all percussion
  139.     instruments by default. This should eliminate cymbal crashes
  140.     being cut short.
  141.  
  142.     Changes in gravis.cfg to override some instrument parameters
  143.     that would be guessed incorrectly.
  144.  
  145.     Vincent Pagel's experimental antialiasing filter. This doesn't
  146.     interact very well with looping yet, so it's only applied to
  147.     non-looped instruments. Use the command line option "-a" to
  148.     enable the filter. New files: filtering.c, filtering.h.
  149.  
  150.     Enabled fast forward & rewind in non-trace mode in
  151.     ncurses_ctl.c.
  152.  
  153.     Fixed a problem with envelopes -- envelope handling still
  154.     isn't perfect, but skipping the "Attack 2" phase was dumb.
  155.  
  156.     Added ADJUST_PANNING_IMMEDIATELY to config.h, default on (no
  157.     change from previous behavior).
  158.  
  159.     Silly bug in adjusting non-enveloped voice volumes fixed.
  160.  
  161.     Small change in ncurses_ctl to display 100 for maximum volume
  162.     and expression.
  163.  
  164.     After listening to a GUS, made FAST_DECAY default to on.
  165.  
  166.     Riccardo Facchetti's patch to config.h: Not all Linux systems
  167.     are little-endian.
  168.  
  169.     Riccardo's alternative keyboard commands in ncurses_ctl.c.
  170.     First step towards porting to MS Windows -- you can press
  171.     F1 to get help!
  172.  
  173.     DANGEROUS_RENICE config.h option. Thanks again to Riccardo.
  174.  
  175. 0.2b to 0.2c
  176.  
  177.     Fixed pitch bend sensitivity again. NRPN controls are now
  178.     correctly ignored.
  179.  
  180. 0.2a to 0.2b
  181.     
  182.     Francesco Zanichelli's patches to get the Sun version to
  183.     actually compile.
  184.  
  185.     Victor Langeveld's patches to get the FreeBSD version to
  186.     actually compile. 
  187.  
  188.     Fixed pitch bend sensitivity. Thanks again to Vincent Pagel
  189.     for the information.
  190.  
  191.     Expression now defaults to 127, as with the SCC-1. Some things
  192.     may sound a bit loud.
  193.  
  194. 0.1a to 0.2a
  195.  
  196.     Internal changes for easier porting to other systems. 
  197.     long long's are gone, floating point is used instead.
  198.     Command line options changed.
  199.  
  200.     Output to HP-UX audio server by Vincent Pagel.
  201.  
  202.     Output to Sun audio device based on Francesco Zanichelli's
  203.     port of version 0.1a.
  204.  
  205.     Output to ZyXEL modems based on Rob Janssen's uLaw patches.
  206.  
  207.     FreeBSD options in Makefile and linux_audio.c. Check for DSP
  208.     fragment capability. (Thanks to Victor Langeveld.)
  209.  
  210.     ncurses interface changes. Trace mode optional.
  211.  
  212.     Fixed bug -- the last MIDI event was getting eaten, causing
  213.     stuck notes at the end of songs. (Reported by Anthony Cruz.)
  214.  
  215.     Pitch-bend sensitivity added, with a hack to process "Data
  216.     entry (MSB)" events. Thanks to Vincent Pagel for info on
  217.     this...
  218.  
  219.     Run-time configuration of quiet and percussion channels.
  220.  
  221.     Volume computation fix. You can now crank the volume up to
  222.     800%.
  223.  
  224.     Slower envelopes. Pianos sound better, harps sound
  225.     worse. Applause in Beethoven's 5th should sound
  226.     better... Thanks to Tim Norman for comments on this.
  227.     CPU usage went up -- see option FAST_DECAY in config.h.
  228.  
  229.     Panning and volume controls no longer affect notes that have
  230.     already been turned off.
  231.  
  232.     Click reduction on by default. CPU usage went up -- see option
  233.     I_WANT_THE_CLICKS_BACK in config.h.
  234.  
  235.     Sample volume adjustment into compile time option -- see
  236.     option ADJUST_SAMPLE_VOLUMES in config.h 
  237.  
  238.     SMPTE time in divisions field in MThd. Untested.
  239.  
  240.     Quote some special characters in filenames before popen().
  241.  
  242.     Hack to accept old patch files and files that claim to contain
  243.     0 instruments and/or layers.
  244.  
  245.     Behavior when reading Gravis .cfg files changed -- syntax
  246.     error reported instead of segmentation fault.
  247.  
  248. 0.1a
  249.     First release. Plays MIDI files under Linux.
  250.