view pwplib/auconv.c @ 89:ea44e1d9eb7c default tip

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 25 May 2014 05:03:14 +0300
parents acb5694e93d9
children
line wrap: on
line source

/*
   conversions:

   * multiplex several channels to one
   * enhance chip instruments with pulse stuff, adsr functions,
     toneslides, vibrato etc

     sound_setins(2,VIBRATO|TONESLIDE|FASTSWEEP|SLOWDECAY);

     sound_playsample(BASSDRUM);
     
     sound_loadsample(5,dataptr,length);
     sound_loadstream(4,streamgenerator);

   when samples supported:

   * emulate samples with chip capablities

   if channel-based sound device:
   
   * implement echoes with additional channels
     (if using digital buffer: use another technique)

     sound_echo(delay,shift);

*/