structs_FLP.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /***********************************************************************
  2. Copyright (c) 2006-2011, Skype Limited. All rights reserved.
  3. Redistribution and use in source and binary forms, with or without
  4. modification, are permitted provided that the following conditions
  5. are met:
  6. - Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. - Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. - Neither the name of Internet Society, IETF or IETF Trust, nor the
  12. names of specific contributors, may be used to endorse or promote
  13. products derived from this software without specific prior written
  14. permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  19. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. POSSIBILITY OF SUCH DAMAGE.
  26. ***********************************************************************/
  27. #ifndef SILK_STRUCTS_FLP_H
  28. #define SILK_STRUCTS_FLP_H
  29. #include "typedef.h"
  30. #include "main.h"
  31. #include "structs.h"
  32. #ifdef __cplusplus
  33. extern "C"
  34. {
  35. #endif
  36. /********************************/
  37. /* Noise shaping analysis state */
  38. /********************************/
  39. typedef struct {
  40. opus_int8 LastGainIndex;
  41. silk_float HarmShapeGain_smth;
  42. silk_float Tilt_smth;
  43. } silk_shape_state_FLP;
  44. /********************************/
  45. /* Encoder state FLP */
  46. /********************************/
  47. typedef struct {
  48. silk_encoder_state sCmn; /* Common struct, shared with fixed-point code */
  49. silk_shape_state_FLP sShape; /* Noise shaping state */
  50. /* Buffer for find pitch and noise shape analysis */
  51. silk_float x_buf[ 2 * MAX_FRAME_LENGTH + LA_SHAPE_MAX ];/* Buffer for find pitch and noise shape analysis */
  52. silk_float LTPCorr; /* Normalized correlation from pitch lag estimator */
  53. } silk_encoder_state_FLP;
  54. /************************/
  55. /* Encoder control FLP */
  56. /************************/
  57. typedef struct {
  58. /* Prediction and coding parameters */
  59. silk_float Gains[ MAX_NB_SUBFR ];
  60. silk_float PredCoef[ 2 ][ MAX_LPC_ORDER ]; /* holds interpolated and final coefficients */
  61. silk_float LTPCoef[LTP_ORDER * MAX_NB_SUBFR];
  62. silk_float LTP_scale;
  63. opus_int pitchL[ MAX_NB_SUBFR ];
  64. /* Noise shaping parameters */
  65. silk_float AR[ MAX_NB_SUBFR * MAX_SHAPE_LPC_ORDER ];
  66. silk_float LF_MA_shp[ MAX_NB_SUBFR ];
  67. silk_float LF_AR_shp[ MAX_NB_SUBFR ];
  68. silk_float Tilt[ MAX_NB_SUBFR ];
  69. silk_float HarmShapeGain[ MAX_NB_SUBFR ];
  70. silk_float Lambda;
  71. silk_float input_quality;
  72. silk_float coding_quality;
  73. /* Measures */
  74. silk_float predGain;
  75. silk_float LTPredCodGain;
  76. silk_float ResNrg[ MAX_NB_SUBFR ]; /* Residual energy per subframe */
  77. /* Parameters for CBR mode */
  78. opus_int32 GainsUnq_Q16[ MAX_NB_SUBFR ];
  79. opus_int8 lastGainIndexPrev;
  80. } silk_encoder_control_FLP;
  81. /************************/
  82. /* Encoder Super Struct */
  83. /************************/
  84. typedef struct {
  85. silk_encoder_state_FLP state_Fxx[ ENCODER_NUM_CHANNELS ];
  86. stereo_enc_state sStereo;
  87. opus_int32 nBitsUsedLBRR;
  88. opus_int32 nBitsExceeded;
  89. opus_int nChannelsAPI;
  90. opus_int nChannelsInternal;
  91. opus_int nPrevChannelsInternal;
  92. opus_int timeSinceSwitchAllowed_ms;
  93. opus_int allowBandwidthSwitch;
  94. opus_int prev_decode_only_middle;
  95. } silk_encoder;
  96. #ifdef __cplusplus
  97. }
  98. #endif
  99. #endif