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.

64 lines
2.1KB

  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. /**
  20. * @file ac3.h
  21. * Common code between AC3 encoder and decoder.
  22. */
  23. #define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */
  24. #define AC3_MAX_CHANNELS 6 /* including LFE channel */
  25. #define NB_BLOCKS 6 /* number of PCM blocks inside an AC3 frame */
  26. #define AC3_FRAME_SIZE (NB_BLOCKS * 256)
  27. /* exponent encoding strategy */
  28. #define EXP_REUSE 0
  29. #define EXP_NEW 1
  30. #define EXP_D15 1
  31. #define EXP_D25 2
  32. #define EXP_D45 3
  33. typedef struct AC3BitAllocParameters {
  34. int fscod; /* frequency */
  35. int halfratecod;
  36. int sgain, sdecay, fdecay, dbknee, floor;
  37. int cplfleak, cplsleak;
  38. } AC3BitAllocParameters;
  39. #if 0
  40. extern const uint16_t ac3_freqs[3];
  41. extern const uint16_t ac3_bitratetab[19];
  42. extern const int16_t ac3_window[256];
  43. extern const uint8_t sdecaytab[4];
  44. extern const uint8_t fdecaytab[4];
  45. extern const uint16_t sgaintab[4];
  46. extern const uint16_t dbkneetab[4];
  47. extern const uint16_t floortab[8];
  48. extern const uint16_t fgaintab[8];
  49. #endif
  50. void ac3_common_init(void);
  51. void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
  52. int8_t *exp, int start, int end,
  53. int snroffset, int fgain, int is_lfe,
  54. int deltbae,int deltnseg,
  55. uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba);