resampler_structs.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /***********************************************************************
  2. Copyright (c) 2006-2012 IETF Trust and Skype Limited. All rights reserved.
  3. This file is extracted from RFC6716. Please see that RFC for additional
  4. information.
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions
  7. are met:
  8. - Redistributions of source code must retain the above copyright notice,
  9. this list of conditions and the following disclaimer.
  10. - Redistributions in binary form must reproduce the above copyright
  11. notice, this list of conditions and the following disclaimer in the
  12. documentation and/or other materials provided with the distribution.
  13. - Neither the name of Internet Society, IETF or IETF Trust, nor the
  14. names of specific contributors, may be used to endorse or promote
  15. products derived from this software without specific prior written
  16. permission.
  17. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS”
  18. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  21. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  24. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  25. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  26. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  27. POSSIBILITY OF SUCH DAMAGE.
  28. ***********************************************************************/
  29. #ifndef SILK_RESAMPLER_STRUCTS_H
  30. #define SILK_RESAMPLER_STRUCTS_H
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. #define SILK_RESAMPLER_MAX_FIR_ORDER 36
  35. #define SILK_RESAMPLER_MAX_IIR_ORDER 6
  36. typedef struct _silk_resampler_state_struct{
  37. opus_int32 sIIR[ SILK_RESAMPLER_MAX_IIR_ORDER ]; /* this must be the first element of this struct */
  38. opus_int32 sFIR[ SILK_RESAMPLER_MAX_FIR_ORDER ];
  39. opus_int16 delayBuf[ 48 ];
  40. opus_int resampler_function;
  41. opus_int batchSize;
  42. opus_int32 invRatio_Q16;
  43. opus_int FIR_Order;
  44. opus_int FIR_Fracs;
  45. opus_int Fs_in_kHz;
  46. opus_int Fs_out_kHz;
  47. opus_int inputDelay;
  48. const opus_int16 *Coefs;
  49. } silk_resampler_state_struct;
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #endif /* SILK_RESAMPLER_STRUCTS_H */