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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Peter Kroon (Bell Laboratories, Lucent Technologies)
  4. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard
  5. ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an
  6. implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools
  7. as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives
  8. users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this
  9. software module or modifications thereof for use in hardware or
  10. software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio
  11. standards. Those intending to use this software module in hardware or
  12. software products are advised that this use may infringe existing
  13. patents. The original developer of this software module and his/her
  14. company, the subsequent editors and their companies, and ISO/IEC have
  15. no liability for use of this software module or modifications thereof
  16. in an implementation. Copyright is not released for non MPEG-2
  17. NBC/MPEG-4 Audio conforming products. The original developer retains
  18. full right to use the code for his/her own purpose, assign or donate
  19. the code to a third party and to inhibit third party from using the
  20. code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This
  21. copyright notice must be included in all copies or derivative works.
  22. Copyright (c) 1996.
  23.  * Last modified: May 1, 1996
  24.  *
  25.  */
  26. /*----------------------------------------------------------------------------
  27.  * firfilt - fir filter
  28.  *----------------------------------------------------------------------------
  29.  */
  30. #include "att_proto.h"
  31. void firfilt(
  32. float *output, /* output: filtered signal */
  33. const float *input, /* input : signal */
  34. const float *a, /* input : filter coefficients */
  35. float *mem, /* in/out: filter memory */
  36. long order, /* input : filter order */
  37. long length /* input : number of samples to filter */
  38. )
  39. {
  40.    long i;
  41.    long j;
  42.    float temp; /* used to allow input=output loc */
  43.    const float *pa;
  44.    float *pmem;
  45.    float *ppmem;
  46.    for(i=0; i< length; i++){
  47.       temp = *input;
  48.       *output = *a * *input++;
  49.       pa = a + order;
  50.       pmem = mem + order - 1;
  51.       ppmem = pmem - 1;
  52.       for( j=order; j>1; j--){
  53.  *output += *pa-- * *pmem;
  54.  *pmem-- = *ppmem--;
  55.       }
  56.       *output++ += *pa * *pmem;
  57.       *mem = temp;
  58.    }
  59. }