home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Sound / DelfAIFF / DelfAIFF.readme < prev    next >
Text File  |  1999-10-01  |  3KB  |  98 lines

  1. Short:  AIFF sound player for Delfina DSP
  2. Author: Smack/Infect! (Michael Henke)
  3. Type:   mus/play
  4.  
  5.  
  6.  #features
  7.    -plays 16bit files: AIFF-SSND (uncompressed) and AIFF-ADP4 (4bit ADPCM)
  8.    -multi-stage buffering system for smooth playback while loading
  9.    -full source code included
  10.  
  11.  
  12.  #requirements
  13.    -CPU 68020+
  14.    -AmigaOS V37+
  15.    -Delfina DSP board - delfina.library V4+
  16.    -asyncio.library V39+
  17.  
  18.    -tested on: A1200 (68030+882 @ 40MHz, 16MB Fast, Delfina1200 DSP)
  19.  
  20.  
  21.  #recommended
  22.    -reqtools.library V38+
  23.    -FastRAM
  24.    -some AIFF files :-)
  25.  
  26.  
  27.  #news
  28.    -some code cleanups and optimizations
  29.     (see src/CHANGES for details)
  30.    -vbcc makefile included
  31.     (thanks to anton_rolls@melbourne.net)
  32.  
  33. ;
  34. ;
  35. ;---------------------------------
  36. ;
  37. ; DelfAIFF 0.3
  38. ; code by Smack/Infect!
  39. ; Fri 01-Oct-1999
  40. ;
  41. ;---------------------------------
  42. ;
  43. ;
  44.  
  45.  
  46.  #introduction
  47.    This is my first program for Delfina DSP (nice sound board featuring
  48.    the powerful Motorola 56002 DSP). I have no intentions to implement
  49.    many more features in DelfAIFF because for me it's rather a coding
  50.    exercise than a full featured tool. Anyway, if you find a bug or have
  51.    any comments or ideas then don't hesitate to contact me!
  52.    
  53.  
  54.  #how to use it
  55.    DelfAIFF is a shell-only program. The argument template is:
  56.    FILES/M          one or more filenames
  57.                     (if omitted a reqtools file requester appears)
  58.    NOPLAY/S         don't play but just print file info
  59.  
  60.    During playback you can use these controls:
  61.    CTRL-E           pause/continue
  62.    CTRL-C           stop current file, start next file
  63.    CTRL-D           exit program
  64.  
  65.  
  66.  #technical stuff
  67.    Those AIFF-ADP4 files are created using this program:
  68.       AudioConvert V1.0 (c) Stephane TAVENARD
  69.       (distributed together with SongPlayer)
  70.    The 4bit ADPCM method reduces the file size of 16bit sound to 1/4 while
  71.    retaining a surprisingly high sound quality.
  72.    DelfAIFF utilizes Delfina DSP for decoding this file format and therefore
  73.    needs only very little CPU time. (perfect for background music even on
  74.    slow 68030 machines:-)
  75.  
  76.    I'm planning to code an MPEG audio decoder for Delfina DSP. The 56002 DSP
  77.    should have enough power to handle this in realtime. (faster than 68060!)
  78.    Anybody interested? Anybody able to support me with some docs and sources?
  79.    Then contact me now!
  80.  
  81.    UPDATE:
  82.    The MPEG audio player is under construction. I downloaded lots of sources
  83.    from all over the Web and now I'm busy converting them to DSP56K assembly.
  84.    I hope to get it working before Y2K comes upon us, stay tuned! :-)
  85.  
  86.  
  87.  #author
  88.    email: smack@smack.de
  89.  
  90.    DelfAIFF is Copyright (c) 1999 by Michael Henke.
  91.    It is released as FREEWARE, which means it may be distributed and used
  92.    for free, but no profit may be made with it (neither by selling the
  93.    program nor by using it for commercial purposes). The program and the
  94.    information within this text are provided 'AS-IS'. The entire risk as
  95.    to its quality and performance is with the user. In no event will the
  96.    author be liable for direct, indirect, incidental or consequential
  97.    damages resulting from any defect in the program.
  98.