You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.9KB

  1. /*
  2. * Copyright (c) CMU 1993 Computer Science, Speech Group
  3. * Chengxiang Lu and Alex Hauptmann
  4. * Copyright (c) 2005 Steve Underwood <steveu at coppice.org>
  5. * Copyright (c) 2009 Kenan Gillet
  6. * Copyright (c) 2010 Martin Storsjo
  7. *
  8. * This file is part of Libav.
  9. *
  10. * Libav is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * Libav is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with Libav; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #ifndef AVCODEC_G722_H
  25. #define AVCODEC_G722_H
  26. #include <stdint.h>
  27. #include "avcodec.h"
  28. #define PREV_SAMPLES_BUF_SIZE 1024
  29. typedef struct {
  30. AVFrame frame;
  31. int16_t prev_samples[PREV_SAMPLES_BUF_SIZE]; ///< memory of past decoded samples
  32. int prev_samples_pos; ///< the number of values in prev_samples
  33. /**
  34. * The band[0] and band[1] correspond respectively to the lower band and higher band.
  35. */
  36. struct G722Band {
  37. int16_t s_predictor; ///< predictor output value
  38. int32_t s_zero; ///< previous output signal from zero predictor
  39. int8_t part_reconst_mem[2]; ///< signs of previous partially reconstructed signals
  40. int16_t prev_qtzd_reconst; ///< previous quantized reconstructed signal (internal value, using low_inv_quant4)
  41. int16_t pole_mem[2]; ///< second-order pole section coefficient buffer
  42. int32_t diff_mem[6]; ///< quantizer difference signal memory
  43. int16_t zero_mem[6]; ///< Seventh-order zero section coefficient buffer
  44. int16_t log_factor; ///< delayed 2-logarithmic quantizer factor
  45. int16_t scale_factor; ///< delayed quantizer scale factor
  46. } band[2];
  47. struct TrellisNode {
  48. struct G722Band state;
  49. uint32_t ssd;
  50. int path;
  51. } *node_buf[2], **nodep_buf[2];
  52. struct TrellisPath {
  53. int value;
  54. int prev;
  55. } *paths[2];
  56. } G722Context;
  57. extern const int16_t ff_g722_high_inv_quant[4];
  58. extern const int16_t ff_g722_low_inv_quant4[16];
  59. extern const int16_t ff_g722_low_inv_quant6[64];
  60. void ff_g722_update_low_predictor(struct G722Band *band, const int ilow);
  61. void ff_g722_update_high_predictor(struct G722Band *band, const int dhigh,
  62. const int ihigh);
  63. void ff_g722_apply_qmf(const int16_t *prev_samples, int *xout1, int *xout2);
  64. #endif /* AVCODEC_G722_H */