FrameClassify.h 551 B

123456789101112131415161718192021222324252627
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. FrameClassify.h
  4. Copyright (C) The Internet Society (2004).
  5. All Rights Reserved.
  6. ******************************************************************/
  7. #ifndef __iLBC_FRAMECLASSIFY_H
  8. #define __iLBC_FRAMECLASSIFY_H
  9. int FrameClassify( /* index to the max-energy sub-frame */
  10. iLBC_Enc_Inst_t *iLBCenc_inst,
  11. /* (i/o) the encoder state structure */
  12. float *residual /* (i) lpc residual signal */
  13. );
  14. #endif