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.

57 lines
2.0KB

  1. /*
  2. * Common code between AC3 encoder and decoder
  3. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */
  20. #define AC3_MAX_CHANNELS 6 /* including LFE channel */
  21. #define NB_BLOCKS 6 /* number of PCM blocks inside an AC3 frame */
  22. #define AC3_FRAME_SIZE (NB_BLOCKS * 256)
  23. /* exponent encoding strategy */
  24. #define EXP_REUSE 0
  25. #define EXP_NEW 1
  26. #define EXP_D15 1
  27. #define EXP_D25 2
  28. #define EXP_D45 3
  29. typedef struct AC3BitAllocParameters {
  30. int fscod; /* frequency */
  31. int halfratecod;
  32. int sgain, sdecay, fdecay, dbknee, floor;
  33. int cplfleak, cplsleak;
  34. } AC3BitAllocParameters;
  35. extern const UINT16 ac3_freqs[3];
  36. extern const UINT16 ac3_bitratetab[19];
  37. extern const INT16 ac3_window[256];
  38. extern const UINT8 sdecaytab[4];
  39. extern const UINT8 fdecaytab[4];
  40. extern const UINT16 sgaintab[4];
  41. extern const UINT16 dbkneetab[4];
  42. extern const UINT16 floortab[8];
  43. extern const UINT16 fgaintab[8];
  44. void ac3_common_init(void);
  45. void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, UINT8 *bap,
  46. INT8 *exp, int start, int end,
  47. int snroffset, int fgain, int is_lfe,
  48. int deltbae,int deltnseg,
  49. UINT8 *deltoffst, UINT8 *deltlen, UINT8 *deltba);