austream.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**********************************************************************
  2. MPEG-4 Audio VM
  3. audio i/o streams (.au format)
  4. This software module was originally developed by
  5. Heiko Purnhagen (University of Hannover)
  6. and edited by
  7. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard
  8. ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an
  9. implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools
  10. as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives
  11. users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this
  12. software module or modifications thereof for use in hardware or
  13. software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio
  14. standards. Those intending to use this software module in hardware or
  15. software products are advised that this use may infringe existing
  16. patents. The original developer of this software module and his/her
  17. company, the subsequent editors and their companies, and ISO/IEC have
  18. no liability for use of this software module or modifications thereof
  19. in an implementation. Copyright is not released for non MPEG-2
  20. NBC/MPEG-4 Audio conforming products. The original developer retains
  21. full right to use the code for his/her own purpose, assign or donate
  22. the code to a third party and to inhibit third party from using the
  23. code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This
  24. copyright notice must be included in all copies or derivative works.
  25. Copyright (c) 1999.
  26. Header file: austream.h
  27. $Id: austream.h,v 1.2 2002/05/13 15:48:18 mvillari Exp $
  28. Authors:
  29. HP    Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>
  30. NM    Nikolaus Meine, Uni Hannover <meine@tnt.uni-hannover.de>
  31. Changes:
  32. 16-sep-98   HP/NM   born, based on au_io.c
  33. **********************************************************************/
  34. /* Audio i/o streaming with stdin/stdout support. */
  35. /* Header format: .au (Sun audio file format, aka SND or AFsp) */
  36. /* Sample format: 16 bit twos complement, uniform quantisation */
  37. /* Data size set to -1 (=unknown) */
  38. /* Multi channel data is interleaved: l0 r0 l1 r1 ... */
  39. /* Total number of samples (over all channels) is used. */
  40. #ifndef _austream_h_
  41. #define _austream_h_
  42. /* ---------- declarations ---------- */
  43. typedef struct AuStreamStruct AuStream; /* audio stream handle */
  44. /* ---------- functions ---------- */
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48. /* AuInit() */
  49. /* Init audio i/o streams. */
  50. void AuInit (
  51.   int debugLevel); /* in: debug level */
  52. /*     0=off  1=basic  2=full */
  53. /* AuOpenRead() */
  54. /* Open audio stream for reading. */
  55. AuStream *AuOpenRead (
  56.   char *streamName, /* in: stream name, "-" for stdin */
  57.   int *numChannel, /* out: number of channels */
  58.   float *fSample, /* out: sampling frequency [Hz] */
  59.   long *numSample); /* out: number of samples in stream */
  60. /*      or -1 if not available */
  61. /* returns: */
  62. /*  audio stream (handle) */
  63. /*  or NULL if error */
  64. /* AuOpenWrite() */
  65. /* Open audio stream for writing. */
  66. AuStream *AuOpenWrite (
  67.   char *streamName, /* in: stream name, "-" for stdout */
  68.   int numChannel, /* in: number of channels */
  69.   float fSample); /* in: sampling frequency [Hz] */
  70. /* returns: */
  71. /*  audio stream (handle) */
  72. /*  or NULL if error */
  73. /* AuReadData() */
  74. /* Read data from audio stream. */
  75. long AuReadData (
  76.   AuStream *stream, /* in: audio stream (handle) */
  77.   short *data, /* out: data[] */
  78.   long numSample); /* in: number of samples to be read */
  79. /* returns: */
  80. /*  number of samples read */
  81. /* AuWriteData() */
  82. /* Write data to audio stream. */
  83. void AuWriteData (
  84.   AuStream *stream, /* in: audio stream (handle) */
  85.   short *data, /* in: data[] */
  86.   long numSample); /* in: number of samples to be written */
  87. /* AuClose() */
  88. /* Close audio stream.*/
  89. void AuClose (
  90.   AuStream *stream); /* in: audio stream (handle) */
  91. #ifdef __cplusplus
  92. }
  93. #endif
  94. #endif /* #ifndef _austream_h_ */
  95. /* end of austream.h */