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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**********************************************************************
  2. MPEG-4 Audio VM
  3. Common module
  4. This software module was originally developed by
  5. Bodo Teichmann (FhG)
  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) 1997.
  26. Source file: fir_filt.h
  27. $Id: fir_filt.h,v 1.2 2002/05/13 15:48:18 mvillari Exp $
  28. Authors:
  29. tmn       Bodo Teichmann mailto:tmn@iis.fhg.de
  30. Changes:
  31. 05-may-98 HP    added extern "C"
  32. **********************************************************************/
  33. #ifndef _fir_filt_h_
  34. #define _fir_filt_h_
  35. typedef struct
  36. {
  37.   float *memoryPtr;
  38.   int writeIdx;
  39.   int readIdx;
  40.   float *filtPtr;
  41.   int filtLength;
  42. } FIR_FILT ;
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. FIR_FILT *initFirLowPass(float stopBand,int taps);
  47. void firLowPass(float* inBuffer,float *outBuffer,int no, FIR_FILT *filter );
  48. void subSampl(float * inBuff, float * outBuff,int factor,int *noOfSampl);
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif  /* _fir_filt_h_ */