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.

66 lines
2.2KB

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