home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / audio / bz / aiff.h next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  2.2 KB  |  85 lines

  1. /*
  2.  * Copyright (C) 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. /*
  18.  * AIFF format header file
  19.  * bytes are stored in 68000 = big endian order
  20.  */ 
  21.  
  22. /*
  23.  * some of the audio parameters in an AIFF file
  24.  */
  25. typedef struct
  26. {
  27.     long samprate;
  28.     long nchannels;
  29.     long sampwidth;
  30. } audio_params_t;
  31.  
  32. /*
  33.  * all chunks consist of a chunk header followed by some data
  34.  *
  35.  * WARNING: the spec says that every chunk must contain an even number 
  36.  * of bytes. A chunk which contains an add number of bytes is padded with
  37.  * a trailing zero byte which is NOT counted in the chunk header's size
  38.  * field.
  39.  */
  40. typedef struct
  41. {
  42.     char id[4];
  43.     long size;
  44. } chunk_header_t;
  45.  
  46. #define CHUNK_ID     4
  47. #define CHUNK_HEADER 8
  48.  
  49. typedef struct
  50. {
  51.     chunk_header_t header;
  52.     int file_position;  /* not in AIFF file */
  53.     char type[4]; /* should contain 'AIFF' for any audio IFF file */
  54. } form_chunk_t;
  55.  
  56. #define FORM_CHUNK      12  /* including the header */ 
  57. #define FORM_CHUNK_DATA 4   
  58.  
  59. #define COMM_CHUNK      26   /* including the header */
  60. #define COMM_CHUNK_DATA 18
  61.  
  62. typedef struct
  63. {
  64.     chunk_header_t header;
  65.     int file_position;            /* not in AIFF file */
  66.     short nchannels;
  67.     unsigned long nsampframes;
  68.     short sampwidth;
  69.     long samprate;              /* not in AIFF file */
  70. } comm_chunk_t;
  71.  
  72.  
  73. #define SSND_CHUNK      16   /* including the header */
  74. #define SSND_CHUNK_DATA 8
  75.  
  76. typedef struct
  77. {
  78.     chunk_header_t header;
  79.     unsigned long offset;
  80.     unsigned long blocksize;
  81.  
  82.     long file_position; /* not in AIFF file */
  83.     long sample_area_bytes; /* not in AIFF file */
  84. } ssnd_chunk_t;
  85.