codec.h
上传用户:bjsgzm
上传日期:2007-01-08
资源大小:256k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

Visual C++

  1. /*
  2. (c) Copyright 1998, 1999 - Tord Jansson
  3. =======================================
  4. This file is part of the BladeEnc MP3 Encoder, based on
  5. ISO's reference code for MPEG Layer 3 compression.
  6. This file doesn't contain any of the ISO reference code and
  7. is copyright Tord Jansson (tord.jansson@swipnet.se).
  8. BladeEnc is free software; you can redistribute this file
  9. and/or modify it under the terms of the GNU Lesser General Public
  10. License as published by the Free Software Foundation; either
  11. version 2.1 of the License, or (at your option) any later version.
  12. */
  13. #ifndef CODEC_DOT_H
  14. #define CODEC_DOT_H
  15. typedef struct
  16. {
  17.   int     frequency;              /* 48000, 44100 and 32000 allowed. */
  18.   int     mode;                   /* 0 = Stereo, 2 = Dual Channel, 3 = Mono */
  19.   int     bitrate;                /* */ 
  20.   int     emphasis;               /* 0 = None, 1 = 50/15 microsec, 3 = CCITT J.17 */
  21.   int     fPrivate;               
  22.   int     fCRC;
  23.   int     fCopyright;
  24.   int     fOriginal;
  25. } CodecInitIn;
  26. typedef struct
  27. {
  28. int nSamples;
  29. int bufferSize;
  30. } CodecInitOut;
  31. extern  CodecInitOut * codecInit( CodecInitIn * psInitData );
  32. extern  unsigned int codecEncodeChunk( int nSamples, short * pSamples, char * pOutput );
  33. extern  unsigned int  codecExit( char * pOutput );
  34. #endif