ra144.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Real Audio 1.0 (14.4K)
  3. * Copyright (c) 2003 The FFmpeg project
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVCODEC_RA144_H
  22. #define AVCODEC_RA144_H
  23. #include <stdint.h>
  24. #include "lpc.h"
  25. #include "audio_frame_queue.h"
  26. #include "audiodsp.h"
  27. #define NBLOCKS 4 ///< number of subblocks within a block
  28. #define BLOCKSIZE 40 ///< subblock size in 16-bit words
  29. #define BUFFERSIZE 146 ///< the size of the adaptive codebook
  30. #define FIXED_CB_SIZE 128 ///< size of fixed codebooks
  31. #define FRAME_SIZE 20 ///< size of encoded frame
  32. #define LPC_ORDER 10 ///< order of LPC filter
  33. typedef struct RA144Context {
  34. AVCodecContext *avctx;
  35. AudioDSPContext adsp;
  36. LPCContext lpc_ctx;
  37. AudioFrameQueue afq;
  38. int last_frame;
  39. unsigned int old_energy; ///< previous frame energy
  40. unsigned int lpc_tables[2][10];
  41. /** LPC coefficients: lpc_coef[0] is the coefficients of the current frame
  42. * and lpc_coef[1] of the previous one. */
  43. unsigned int *lpc_coef[2];
  44. unsigned int lpc_refl_rms[2];
  45. int16_t curr_block[NBLOCKS * BLOCKSIZE];
  46. /** The current subblock padded by the last 10 values of the previous one. */
  47. int16_t curr_sblock[50];
  48. /** Adaptive codebook, its size is two units bigger to avoid a
  49. * buffer overflow. */
  50. int16_t adapt_cb[146+2];
  51. DECLARE_ALIGNED(16, int16_t, buffer_a)[FFALIGN(BLOCKSIZE,16)];
  52. } RA144Context;
  53. void ff_copy_and_dup(int16_t *target, const int16_t *source, int offset);
  54. int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx);
  55. void ff_eval_coefs(int *coefs, const int *refl);
  56. void ff_int_to_int16(int16_t *out, const int *inp);
  57. int ff_t_sqrt(unsigned int x);
  58. unsigned int ff_rms(const int *data);
  59. int ff_interp(RA144Context *ractx, int16_t *out, int a, int copyold,
  60. int energy);
  61. unsigned int ff_rescale_rms(unsigned int rms, unsigned int energy);
  62. int ff_irms(AudioDSPContext *adsp, const int16_t *data/*align 16*/);
  63. void ff_subblock_synthesis(RA144Context *ractx, const int16_t *lpc_coefs,
  64. int cba_idx, int cb1_idx, int cb2_idx,
  65. int gval, int gain);
  66. extern const int16_t ff_gain_val_tab[256][3];
  67. extern const uint8_t ff_gain_exp_tab[256];
  68. extern const int8_t ff_cb1_vects[128][40];
  69. extern const int8_t ff_cb2_vects[128][40];
  70. extern const uint16_t ff_cb1_base[128];
  71. extern const uint16_t ff_cb2_base[128];
  72. extern const int16_t ff_energy_tab[32];
  73. extern const int16_t * const ff_lpc_refl_cb[10];
  74. #endif /* AVCODEC_RA144_H */