ps_syntax.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:24k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2. ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR and PS decoding
  3. ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
  4. **
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation; either version 2 of the License, or
  8. ** (at your option) any later version.
  9. **
  10. ** This program 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
  13. ** GNU General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. **
  19. ** Any non-GPL usage of this software or parts of this software is strictly
  20. ** forbidden.
  21. **
  22. ** Commercial non-GPL licensing of this software is possible.
  23. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
  24. **
  25. ** $Id: ps_syntax.c,v 1.6 2004/09/04 14:56:28 menno Exp $
  26. **/
  27. #include "common.h"
  28. #ifdef PS_DEC
  29. #include "bits.h"
  30. #include "ps_dec.h"
  31. /* type definitaions */
  32. typedef const int8_t (*ps_huff_tab)[2];
  33. /* static data tables */
  34. static const uint8_t nr_iid_par_tab[] = {
  35.     10, 20, 34, 10, 20, 34, 0, 0
  36. };
  37. static const uint8_t nr_ipdopd_par_tab[] = {
  38.     5, 11, 17, 5, 11, 17, 0, 0
  39. };
  40. static const uint8_t nr_icc_par_tab[] = {
  41.     10, 20, 34, 10, 20, 34, 0, 0
  42. };
  43. static const uint8_t num_env_tab[][4] = {
  44.     { 0, 1, 2, 4 },
  45.     { 1, 2, 3, 4 }
  46. };
  47. /* binary lookup huffman tables */
  48. static const int8_t f_huff_iid_def[][2] = {
  49.     { /*0*/ -31, 1 },             /* index 0: 1 bits: x */
  50.     { 2, 3 },                     /* index 1: 2 bits: 1x */
  51.     { /*1*/ -30, /*-1*/ -32 },    /* index 2: 3 bits: 10x */
  52.     { 4, 5 },                     /* index 3: 3 bits: 11x */
  53.     { /*2*/ -29, /*-2*/ -33 },    /* index 4: 4 bits: 110x */
  54.     { 6, 7 },                     /* index 5: 4 bits: 111x */
  55.     { /*3*/ -28, /*-3*/ -34 },    /* index 6: 5 bits: 1110x */
  56.     { 8, 9 },                     /* index 7: 5 bits: 1111x */
  57.     { /*-4*/ -35, /*4*/ -27 },    /* index 8: 6 bits: 11110x */
  58.     { /*5*/ -26, 10 },            /* index 9: 6 bits: 11111x */
  59.     { /*-5*/ -36, 11 },           /* index 10: 7 bits: 111111x */
  60.     { /*6*/ -25, 12 },            /* index 11: 8 bits: 1111111x */
  61.     { /*-6*/ -37, 13 },           /* index 12: 9 bits: 11111111x */
  62.     { /*-7*/ -38, 14 },           /* index 13: 10 bits: 111111111x */
  63.     { /*7*/ -24, 15 },            /* index 14: 11 bits: 1111111111x */
  64.     { 16, 17 },                   /* index 15: 12 bits: 11111111111x */
  65.     { /*8*/ -23, /*-8*/ -39 },    /* index 16: 13 bits: 111111111110x */
  66.     { 18, 19 },                   /* index 17: 13 bits: 111111111111x */
  67.     { /*9*/ -22, /*10*/ -21 },    /* index 18: 14 bits: 1111111111110x */
  68.     { 20, 21 },                   /* index 19: 14 bits: 1111111111111x */
  69.     { /*-9*/ -40, /*11*/ -20 },   /* index 20: 15 bits: 11111111111110x */
  70.     { 22, 23 },                   /* index 21: 15 bits: 11111111111111x */
  71.     { /*-10*/ -41, 24 },          /* index 22: 16 bits: 111111111111110x */
  72.     { 25, 26 },                   /* index 23: 16 bits: 111111111111111x */
  73.     { /*-11*/ -42, /*-14*/ -45 }, /* index 24: 17 bits: 1111111111111101x */
  74.     { /*-13*/ -44, /*-12*/ -43 }, /* index 25: 17 bits: 1111111111111110x */
  75.     { /*12*/ -19, 27 },           /* index 26: 17 bits: 1111111111111111x */
  76.     { /*13*/ -18, /*14*/ -17 }    /* index 27: 18 bits: 11111111111111111x */
  77. };
  78. static const int8_t t_huff_iid_def[][2] = {
  79.     { /*0*/ -31, 1 },             /* index 0: 1 bits: x */
  80.     { /*-1*/ -32, 2 },            /* index 1: 2 bits: 1x */
  81.     { /*1*/ -30, 3 },             /* index 2: 3 bits: 11x */
  82.     { /*-2*/ -33, 4 },            /* index 3: 4 bits: 111x */
  83.     { /*2*/ -29, 5 },             /* index 4: 5 bits: 1111x */
  84.     { /*-3*/ -34, 6 },            /* index 5: 6 bits: 11111x */
  85.     { /*3*/ -28, 7 },             /* index 6: 7 bits: 111111x */
  86.     { /*-4*/ -35, 8 },            /* index 7: 8 bits: 1111111x */
  87.     { /*4*/ -27, 9 },             /* index 8: 9 bits: 11111111x */
  88.     { /*-5*/ -36, 10 },           /* index 9: 10 bits: 111111111x */
  89.     { /*5*/ -26, 11 },            /* index 10: 11 bits: 1111111111x */
  90.     { /*-6*/ -37, 12 },           /* index 11: 12 bits: 11111111111x */
  91.     { /*6*/ -25, 13 },            /* index 12: 13 bits: 111111111111x */
  92.     { /*7*/ -24, 14 },            /* index 13: 14 bits: 1111111111111x */
  93.     { /*-7*/ -38, 15 },           /* index 14: 15 bits: 11111111111111x */
  94.     { 16, 17 },                   /* index 15: 16 bits: 111111111111111x */
  95.     { /*8*/ -23, /*-8*/ -39 },    /* index 16: 17 bits: 1111111111111110x */
  96.     { 18, 19 },                   /* index 17: 17 bits: 1111111111111111x */
  97.     { 20, 21 },                   /* index 18: 18 bits: 11111111111111110x */
  98.     { 22, 23 },                   /* index 19: 18 bits: 11111111111111111x */
  99.     { /*9*/ -22, /*-14*/ -45 },   /* index 20: 19 bits: 111111111111111100x */
  100.     { /*-13*/ -44, /*-12*/ -43 }, /* index 21: 19 bits: 111111111111111101x */
  101.     { 24, 25 },                   /* index 22: 19 bits: 111111111111111110x */
  102.     { 26, 27 },                   /* index 23: 19 bits: 111111111111111111x */
  103.     { /*-11*/ -42, /*-10*/ -41 }, /* index 24: 20 bits: 1111111111111111100x */
  104.     { /*-9*/ -40, /*10*/ -21 },   /* index 25: 20 bits: 1111111111111111101x */
  105.     { /*11*/ -20, /*12*/ -19 },   /* index 26: 20 bits: 1111111111111111110x */
  106.     { /*13*/ -18, /*14*/ -17 }    /* index 27: 20 bits: 1111111111111111111x */
  107. };
  108. static const int8_t f_huff_iid_fine[][2] = {
  109.     { 1, /*0*/ -31 },             /* index 0: 1 bits: x */
  110.     { 2, 3 },                     /* index 1: 2 bits: 0x */
  111.     { 4, /*-1*/ -32 },            /* index 2: 3 bits: 00x */
  112.     { /*1*/ -30, 5 },             /* index 3: 3 bits: 01x */
  113.     { /*-2*/ -33, /*2*/ -29 },    /* index 4: 4 bits: 000x */
  114.     { 6, 7 },                     /* index 5: 4 bits: 011x */
  115.     { /*-3*/ -34, /*3*/ -28 },    /* index 6: 5 bits: 0110x */
  116.     { 8, 9 },                     /* index 7: 5 bits: 0111x */
  117.     { /*-4*/ -35, /*4*/ -27 },    /* index 8: 6 bits: 01110x */
  118.     { 10, 11 },                   /* index 9: 6 bits: 01111x */
  119.     { /*-5*/ -36, /*5*/ -26 },    /* index 10: 7 bits: 011110x */
  120.     { 12, 13 },                   /* index 11: 7 bits: 011111x */
  121.     { /*-6*/ -37, /*6*/ -25 },    /* index 12: 8 bits: 0111110x */
  122.     { 14, 15 },                   /* index 13: 8 bits: 0111111x */
  123.     { /*7*/ -24, 16 },            /* index 14: 9 bits: 01111110x */
  124.     { 17, 18 },                   /* index 15: 9 bits: 01111111x */
  125.     { 19, /*-8*/ -39 },           /* index 16: 10 bits: 011111101x */
  126.     { /*8*/ -23, 20 },            /* index 17: 10 bits: 011111110x */
  127.     { 21, /*-7*/ -38 },           /* index 18: 10 bits: 011111111x */
  128.     { /*10*/ -21, 22 },           /* index 19: 11 bits: 0111111010x */
  129.     { 23, /*-9*/ -40 },           /* index 20: 11 bits: 0111111101x */
  130.     { /*9*/ -22, 24 },            /* index 21: 11 bits: 0111111110x */
  131.     { /*-11*/ -42, /*11*/ -20 },  /* index 22: 12 bits: 01111110101x */
  132.     { 25, 26 },                   /* index 23: 12 bits: 01111111010x */
  133.     { 27, /*-10*/ -41 },          /* index 24: 12 bits: 01111111101x */
  134.     { 28, /*-12*/ -43 },          /* index 25: 13 bits: 011111110100x */
  135.     { /*12*/ -19, 29 },           /* index 26: 13 bits: 011111110101x */
  136.     { 30, 31 },                   /* index 27: 13 bits: 011111111010x */
  137.     { 32, /*-14*/ -45 },          /* index 28: 14 bits: 0111111101000x */
  138.     { /*14*/ -17, 33 },           /* index 29: 14 bits: 0111111101011x */
  139.     { 34, /*-13*/ -44 },          /* index 30: 14 bits: 0111111110100x */
  140.     { /*13*/ -18, 35 },           /* index 31: 14 bits: 0111111110101x */
  141.     { 36, 37 },                   /* index 32: 15 bits: 01111111010000x */
  142.     { 38, /*-15*/ -46 },          /* index 33: 15 bits: 01111111010111x */
  143.     { /*15*/ -16, 39 },           /* index 34: 15 bits: 01111111101000x */
  144.     { 40, 41 },                   /* index 35: 15 bits: 01111111101011x */
  145.     { 42, 43 },                   /* index 36: 16 bits: 011111110100000x */
  146.     { /*-17*/ -48, /*17*/ -14 },  /* index 37: 16 bits: 011111110100001x */
  147.     { 44, 45 },                   /* index 38: 16 bits: 011111110101110x */
  148.     { 46, 47 },                   /* index 39: 16 bits: 011111111010001x */
  149.     { 48, 49 },                   /* index 40: 16 bits: 011111111010110x */
  150.     { /*-16*/ -47, /*16*/ -15 },  /* index 41: 16 bits: 011111111010111x */
  151.     { /*-21*/ -52, /*21*/ -10 },  /* index 42: 17 bits: 0111111101000000x */
  152.     { /*-19*/ -50, /*19*/ -12 },  /* index 43: 17 bits: 0111111101000001x */
  153.     { /*-18*/ -49, /*18*/ -13 },  /* index 44: 17 bits: 0111111101011100x */
  154.     { 50, 51 },                   /* index 45: 17 bits: 0111111101011101x */
  155.     { 52, 53 },                   /* index 46: 17 bits: 0111111110100010x */
  156.     { 54, 55 },                   /* index 47: 17 bits: 0111111110100011x */
  157.     { 56, 57 },                   /* index 48: 17 bits: 0111111110101100x */
  158.     { 58, 59 },                   /* index 49: 17 bits: 0111111110101101x */
  159.     { /*-26*/ -57, /*-25*/ -56 }, /* index 50: 18 bits: 01111111010111010x */
  160.     { /*-28*/ -59, /*-27*/ -58 }, /* index 51: 18 bits: 01111111010111011x */
  161.     { /*-22*/ -53, /*22*/ -9 },   /* index 52: 18 bits: 01111111101000100x */
  162.     { /*-24*/ -55, /*-23*/ -54 }, /* index 53: 18 bits: 01111111101000101x */
  163.     { /*25*/ -6, /*26*/ -5 },     /* index 54: 18 bits: 01111111101000110x */
  164.     { /*23*/ -8, /*24*/ -7 },     /* index 55: 18 bits: 01111111101000111x */
  165.     { /*29*/ -2, /*30*/ -1 },     /* index 56: 18 bits: 01111111101011000x */
  166.     { /*27*/ -4, /*28*/ -3 },     /* index 57: 18 bits: 01111111101011001x */
  167.     { /*-30*/ -61, /*-29*/ -60 }, /* index 58: 18 bits: 01111111101011010x */
  168.     { /*-20*/ -51, /*20*/ -11 }   /* index 59: 18 bits: 01111111101011011x */
  169. };
  170. static const int8_t t_huff_iid_fine[][2] = {
  171.     { 1, /*0*/ -31 },             /* index 0: 1 bits: x */
  172.     { /*1*/ -30, 2 },             /* index 1: 2 bits: 0x */
  173.     { 3, /*-1*/ -32 },            /* index 2: 3 bits: 01x */
  174.     { 4, 5 },                     /* index 3: 4 bits: 010x */
  175.     { 6, 7 },                     /* index 4: 5 bits: 0100x */
  176.     { /*-2*/ -33, /*2*/ -29 },    /* index 5: 5 bits: 0101x */
  177.     { 8, /*-3*/ -34 },            /* index 6: 6 bits: 01000x */
  178.     { /*3*/ -28, 9 },             /* index 7: 6 bits: 01001x */
  179.     { /*-4*/ -35, /*4*/ -27 },    /* index 8: 7 bits: 010000x */
  180.     { 10, 11 },                   /* index 9: 7 bits: 010011x */
  181.     { /*5*/ -26, 12 },            /* index 10: 8 bits: 0100110x */
  182.     { 13, 14 },                   /* index 11: 8 bits: 0100111x */
  183.     { /*-6*/ -37, /*6*/ -25 },    /* index 12: 9 bits: 01001101x */
  184.     { 15, 16 },                   /* index 13: 9 bits: 01001110x */
  185.     { 17, /*-5*/ -36 },           /* index 14: 9 bits: 01001111x */
  186.     { 18, /*-7*/ -38 },           /* index 15: 10 bits: 010011100x */
  187.     { /*7*/ -24, 19 },            /* index 16: 10 bits: 010011101x */
  188.     { 20, 21 },                   /* index 17: 10 bits: 010011110x */
  189.     { /*9*/ -22, 22 },            /* index 18: 11 bits: 0100111000x */
  190.     { 23, 24 },                   /* index 19: 11 bits: 0100111011x */
  191.     { /*-8*/ -39, /*8*/ -23 },    /* index 20: 11 bits: 0100111100x */
  192.     { 25, 26 },                   /* index 21: 11 bits: 0100111101x */
  193.     { /*11*/ -20, 27 },           /* index 22: 12 bits: 01001110001x */
  194.     { 28, 29 },                   /* index 23: 12 bits: 01001110110x */
  195.     { /*-10*/ -41, /*10*/ -21 },  /* index 24: 12 bits: 01001110111x */
  196.     { 30, 31 },                   /* index 25: 12 bits: 01001111010x */
  197.     { 32, /*-9*/ -40 },           /* index 26: 12 bits: 01001111011x */
  198.     { 33, /*-13*/ -44 },          /* index 27: 13 bits: 010011100011x */
  199.     { /*13*/ -18, 34 },           /* index 28: 13 bits: 010011101100x */
  200.     { 35, 36 },                   /* index 29: 13 bits: 010011101101x */
  201.     { 37, /*-12*/ -43 },          /* index 30: 13 bits: 010011110100x */
  202.     { /*12*/ -19, 38 },           /* index 31: 13 bits: 010011110101x */
  203.     { 39, /*-11*/ -42 },          /* index 32: 13 bits: 010011110110x */
  204.     { 40, 41 },                   /* index 33: 14 bits: 0100111000110x */
  205.     { 42, 43 },                   /* index 34: 14 bits: 0100111011001x */
  206.     { 44, 45 },                   /* index 35: 14 bits: 0100111011010x */
  207.     { 46, /*-15*/ -46 },          /* index 36: 14 bits: 0100111011011x */
  208.     { /*15*/ -16, 47 },           /* index 37: 14 bits: 0100111101000x */
  209.     { /*-14*/ -45, /*14*/ -17 },  /* index 38: 14 bits: 0100111101011x */
  210.     { 48, 49 },                   /* index 39: 14 bits: 0100111101100x */
  211.     { /*-21*/ -52, /*-20*/ -51 }, /* index 40: 15 bits: 01001110001100x */
  212.     { /*18*/ -13, /*19*/ -12 },   /* index 41: 15 bits: 01001110001101x */
  213.     { /*-19*/ -50, /*-18*/ -49 }, /* index 42: 15 bits: 01001110110010x */
  214.     { 50, 51 },                   /* index 43: 15 bits: 01001110110011x */
  215.     { 52, 53 },                   /* index 44: 15 bits: 01001110110100x */
  216.     { 54, 55 },                   /* index 45: 15 bits: 01001110110101x */
  217.     { 56, /*-17*/ -48 },          /* index 46: 15 bits: 01001110110110x */
  218.     { /*17*/ -14, 57 },           /* index 47: 15 bits: 01001111010001x */
  219.     { 58, /*-16*/ -47 },          /* index 48: 15 bits: 01001111011000x */
  220.     { /*16*/ -15, 59 },           /* index 49: 15 bits: 01001111011001x */
  221.     { /*-26*/ -57, /*26*/ -5 },   /* index 50: 16 bits: 010011101100110x */
  222.     { /*-28*/ -59, /*-27*/ -58 }, /* index 51: 16 bits: 010011101100111x */
  223.     { /*29*/ -2, /*30*/ -1 },     /* index 52: 16 bits: 010011101101000x */
  224.     { /*27*/ -4, /*28*/ -3 },     /* index 53: 16 bits: 010011101101001x */
  225.     { /*-30*/ -61, /*-29*/ -60 }, /* index 54: 16 bits: 010011101101010x */
  226.     { /*-25*/ -56, /*25*/ -6 },   /* index 55: 16 bits: 010011101101011x */
  227.     { /*-24*/ -55, /*24*/ -7 },   /* index 56: 16 bits: 010011101101100x */
  228.     { /*-23*/ -54, /*23*/ -8 },   /* index 57: 16 bits: 010011110100011x */
  229.     { /*-22*/ -53, /*22*/ -9 },   /* index 58: 16 bits: 010011110110000x */
  230.     { /*20*/ -11, /*21*/ -10 }    /* index 59: 16 bits: 010011110110011x */
  231. };
  232. static const int8_t f_huff_icc[][2] = {
  233.     { /*0*/ -31, 1 },            /* index 0: 1 bits: x */
  234.     { /*1*/ -30, 2 },            /* index 1: 2 bits: 1x */
  235.     { /*-1*/ -32, 3 },           /* index 2: 3 bits: 11x */
  236.     { /*2*/ -29, 4 },            /* index 3: 4 bits: 111x */
  237.     { /*-2*/ -33, 5 },           /* index 4: 5 bits: 1111x */
  238.     { /*3*/ -28, 6 },            /* index 5: 6 bits: 11111x */
  239.     { /*-3*/ -34, 7 },           /* index 6: 7 bits: 111111x */
  240.     { /*4*/ -27, 8 },            /* index 7: 8 bits: 1111111x */
  241.     { /*5*/ -26, 9 },            /* index 8: 9 bits: 11111111x */
  242.     { /*-4*/ -35, 10 },          /* index 9: 10 bits: 111111111x */
  243.     { /*6*/ -25, 11 },           /* index 10: 11 bits: 1111111111x */
  244.     { /*-5*/ -36, 12 },          /* index 11: 12 bits: 11111111111x */
  245.     { /*7*/ -24, 13 },           /* index 12: 13 bits: 111111111111x */
  246.     { /*-6*/ -37, /*-7*/ -38 }   /* index 13: 14 bits: 1111111111111x */
  247. };
  248. static const int8_t t_huff_icc[][2] = {
  249.     { /*0*/ -31, 1 },            /* index 0: 1 bits: x */
  250.     { /*1*/ -30, 2 },            /* index 1: 2 bits: 1x */
  251.     { /*-1*/ -32, 3 },           /* index 2: 3 bits: 11x */
  252.     { /*2*/ -29, 4 },            /* index 3: 4 bits: 111x */
  253.     { /*-2*/ -33, 5 },           /* index 4: 5 bits: 1111x */
  254.     { /*3*/ -28, 6 },            /* index 5: 6 bits: 11111x */
  255.     { /*-3*/ -34, 7 },           /* index 6: 7 bits: 111111x */
  256.     { /*4*/ -27, 8 },            /* index 7: 8 bits: 1111111x */
  257.     { /*-4*/ -35, 9 },           /* index 8: 9 bits: 11111111x */
  258.     { /*5*/ -26, 10 },           /* index 9: 10 bits: 111111111x */
  259.     { /*-5*/ -36, 11 },          /* index 10: 11 bits: 1111111111x */
  260.     { /*6*/ -25, 12 },           /* index 11: 12 bits: 11111111111x */
  261.     { /*-6*/ -37, 13 },          /* index 12: 13 bits: 111111111111x */
  262.     { /*-7*/ -38, /*7*/ -24 }    /* index 13: 14 bits: 1111111111111x */
  263. };
  264. static const int8_t f_huff_ipd[][2] = {
  265.     { 1, /*0*/ -31 },         /* index 0: 1 bits: x */
  266.     { 2, 3 },                 /* index 1: 2 bits: 0x */
  267.     { /*1*/ -30, 4 },         /* index 2: 3 bits: 00x */
  268.     { 5, 6 },                 /* index 3: 3 bits: 01x */
  269.     { /*4*/ -27, /*5*/ -26 }, /* index 4: 4 bits: 001x */
  270.     { /*3*/ -28, /*6*/ -25 }, /* index 5: 4 bits: 010x */
  271.     { /*2*/ -29, /*7*/ -24 }  /* index 6: 4 bits: 011x */
  272. };
  273. static const int8_t t_huff_ipd[][2] = {
  274.     { 1, /*0*/ -31 },         /* index 0: 1 bits: x */
  275.     { 2, 3 },                 /* index 1: 2 bits: 0x */
  276.     { 4, 5 },                 /* index 2: 3 bits: 00x */
  277.     { /*1*/ -30, /*7*/ -24 }, /* index 3: 3 bits: 01x */
  278.     { /*5*/ -26, 6 },         /* index 4: 4 bits: 000x */
  279.     { /*2*/ -29, /*6*/ -25 }, /* index 5: 4 bits: 001x */
  280.     { /*4*/ -27, /*3*/ -28 }  /* index 6: 5 bits: 0001x */
  281. };
  282. static const int8_t f_huff_opd[][2] = {
  283.     { 1, /*0*/ -31 },         /* index 0: 1 bits: x */
  284.     { 2, 3 },                 /* index 1: 2 bits: 0x */
  285.     { /*7*/ -24, /*1*/ -30 }, /* index 2: 3 bits: 00x */
  286.     { 4, 5 },                 /* index 3: 3 bits: 01x */
  287.     { /*3*/ -28, /*6*/ -25 }, /* index 4: 4 bits: 010x */
  288.     { /*2*/ -29, 6 },         /* index 5: 4 bits: 011x */
  289.     { /*5*/ -26, /*4*/ -27 }  /* index 6: 5 bits: 0111x */
  290. };
  291. static const int8_t t_huff_opd[][2] = {
  292.     { 1, /*0*/ -31 },         /* index 0: 1 bits: x */
  293.     { 2, 3 },                 /* index 1: 2 bits: 0x */
  294.     { 4, 5 },                 /* index 2: 3 bits: 00x */
  295.     { /*1*/ -30, /*7*/ -24 }, /* index 3: 3 bits: 01x */
  296.     { /*5*/ -26, /*2*/ -29 }, /* index 4: 4 bits: 000x */
  297.     { /*6*/ -25, 6 },   /* index 5: 4 bits: 001x */
  298.     { /*4*/ -27, /*3*/ -28 }  /* index 6: 5 bits: 0001x */
  299. };
  300. /* static function declarations */
  301. static uint16_t ps_extension(ps_info *ps, bitfile *ld,
  302.                              const uint8_t ps_extension_id,
  303.                              const uint16_t num_bits_left);
  304. static void huff_data(bitfile *ld, const uint8_t dt, const uint8_t nr_par,
  305.                       ps_huff_tab t_huff, ps_huff_tab f_huff, int8_t *par);
  306. static INLINE int8_t ps_huff_dec(bitfile *ld, ps_huff_tab t_huff);
  307. uint16_t ps_data(ps_info *ps, bitfile *ld, uint8_t *header)
  308. {
  309.     uint8_t tmp, n;
  310.     uint16_t bits = (uint16_t)faad_get_processed_bits(ld);
  311.     *header = 0;
  312.     /* check for new PS header */
  313.     if (faad_get1bit(ld
  314.         DEBUGVAR(1,1000,"ps_data(): enable_ps_header")))
  315.     {
  316.         *header = 1;
  317.         ps->header_read = 1;
  318.         ps->use34hybrid_bands = 0;
  319.         /* Inter-channel Intensity Difference (IID) parameters enabled */
  320.         ps->enable_iid = (uint8_t)faad_get1bit(ld
  321.             DEBUGVAR(1,1001,"ps_data(): enable_iid"));
  322.         if (ps->enable_iid)
  323.         {
  324.             ps->iid_mode = (uint8_t)faad_getbits(ld, 3
  325.                 DEBUGVAR(1,1002,"ps_data(): iid_mode"));
  326.             ps->nr_iid_par = nr_iid_par_tab[ps->iid_mode];
  327.             ps->nr_ipdopd_par = nr_ipdopd_par_tab[ps->iid_mode];
  328.             if (ps->iid_mode == 2 || ps->iid_mode == 5)
  329.                 ps->use34hybrid_bands = 1;
  330.             /* IPD freq res equal to IID freq res */
  331.             ps->ipd_mode = ps->iid_mode;
  332.         }
  333.         /* Inter-channel Coherence (ICC) parameters enabled */
  334.         ps->enable_icc = (uint8_t)faad_get1bit(ld
  335.             DEBUGVAR(1,1003,"ps_data(): enable_icc"));
  336.         if (ps->enable_icc)
  337.         {
  338.             ps->icc_mode = (uint8_t)faad_getbits(ld, 3
  339.                 DEBUGVAR(1,1004,"ps_data(): icc_mode"));
  340.             ps->nr_icc_par = nr_icc_par_tab[ps->icc_mode];
  341.             if (ps->icc_mode == 2 || ps->icc_mode == 5)
  342.                 ps->use34hybrid_bands = 1;
  343.         }
  344.         /* PS extension layer enabled */
  345.         ps->enable_ext = (uint8_t)faad_get1bit(ld
  346.             DEBUGVAR(1,1005,"ps_data(): enable_ext"));
  347.     }
  348.     /* we are here, but no header has been read yet */
  349.     if (ps->header_read == 0)
  350.         return 1;
  351.     ps->frame_class = (uint8_t)faad_get1bit(ld
  352.         DEBUGVAR(1,1006,"ps_data(): frame_class"));
  353.     tmp = (uint8_t)faad_getbits(ld, 2
  354.         DEBUGVAR(1,1007,"ps_data(): num_env_idx"));
  355.     ps->num_env = num_env_tab[ps->frame_class][tmp];
  356.     if (ps->frame_class)
  357.     {
  358.         for (n = 1; n < ps->num_env+1; n++)
  359.         {
  360.             ps->border_position[n] = (uint8_t)faad_getbits(ld, 5
  361.                 DEBUGVAR(1,1008,"ps_data(): border_position"));
  362.         }
  363.     }
  364.     if (ps->enable_iid)
  365.     {
  366.         for (n = 0; n < ps->num_env; n++)
  367.         {
  368.             ps->iid_dt[n] = (uint8_t)faad_get1bit(ld
  369.                 DEBUGVAR(1,1009,"ps_data(): iid_dt"));
  370.             /* iid_data */
  371.             if (ps->iid_mode < 3)
  372.             {
  373.                 huff_data(ld, ps->iid_dt[n], ps->nr_iid_par, t_huff_iid_def,
  374.                     f_huff_iid_def, ps->iid_index[n]);
  375.             } else {
  376.                 huff_data(ld, ps->iid_dt[n], ps->nr_iid_par, t_huff_iid_fine,
  377.                     f_huff_iid_fine, ps->iid_index[n]);
  378.             }
  379.         }
  380.     }
  381.     if (ps->enable_icc)
  382.     {
  383.         for (n = 0; n < ps->num_env; n++)
  384.         {
  385.             ps->icc_dt[n] = (uint8_t)faad_get1bit(ld
  386.                 DEBUGVAR(1,1010,"ps_data(): icc_dt"));
  387.             /* icc_data */
  388.             huff_data(ld, ps->icc_dt[n], ps->nr_icc_par, t_huff_icc,
  389.                 f_huff_icc, ps->icc_index[n]);
  390.         }
  391.     }
  392.     if (ps->enable_ext)
  393.     {
  394.         uint16_t num_bits_left;
  395.         uint16_t cnt = (uint16_t)faad_getbits(ld, 4
  396.             DEBUGVAR(1,1011,"ps_data(): ps_extension_size"));
  397.         if (cnt == 15)
  398.         {
  399.             cnt += (uint16_t)faad_getbits(ld, 8
  400.                 DEBUGVAR(1,1012,"ps_data(): esc_count"));
  401.         }
  402.         num_bits_left = 8 * cnt;
  403.         while (num_bits_left > 7)
  404.         {
  405.             uint8_t ps_extension_id = (uint8_t)faad_getbits(ld, 2
  406.                 DEBUGVAR(1,1013,"ps_data(): ps_extension_size"));
  407.             num_bits_left -= 2;
  408.             num_bits_left -= ps_extension(ps, ld, ps_extension_id, num_bits_left);
  409.         }
  410.         faad_getbits(ld, num_bits_left
  411.             DEBUGVAR(1,1014,"ps_data(): fill_bits"));
  412.     }
  413.     bits = (uint16_t)faad_get_processed_bits(ld) - bits;
  414.     ps->ps_data_available = 1;
  415.     return bits;
  416. }
  417. static uint16_t ps_extension(ps_info *ps, bitfile *ld,
  418.                              const uint8_t ps_extension_id,
  419.                              const uint16_t num_bits_left)
  420. {
  421.     uint8_t n;
  422.     uint16_t bits = (uint16_t)faad_get_processed_bits(ld);
  423.     if (ps_extension_id == 0)
  424.     {
  425.         ps->enable_ipdopd = (uint8_t)faad_get1bit(ld
  426.             DEBUGVAR(1,1015,"ps_extension(): enable_ipdopd"));
  427.         if (ps->enable_ipdopd)
  428.         {
  429.             for (n = 0; n < ps->num_env; n++)
  430.             {
  431.                 ps->ipd_dt[n] = (uint8_t)faad_get1bit(ld
  432.                     DEBUGVAR(1,1016,"ps_extension(): ipd_dt"));
  433.                 /* ipd_data */
  434.                 huff_data(ld, ps->ipd_dt[n], ps->nr_ipdopd_par, t_huff_ipd,
  435.                     f_huff_ipd, ps->ipd_index[n]);
  436.                 ps->opd_dt[n] = (uint8_t)faad_get1bit(ld
  437.                     DEBUGVAR(1,1017,"ps_extension(): opd_dt"));
  438.                 /* opd_data */
  439.                 huff_data(ld, ps->opd_dt[n], ps->nr_ipdopd_par, t_huff_opd,
  440.                     f_huff_opd, ps->opd_index[n]);
  441.             }
  442.         }
  443.         faad_get1bit(ld
  444.             DEBUGVAR(1,1018,"ps_extension(): reserved_ps"));
  445.     }
  446.     /* return number of bits read */
  447.     bits = (uint16_t)faad_get_processed_bits(ld) - bits;
  448.     return bits;
  449. }
  450. /* read huffman data coded in either the frequency or the time direction */
  451. static void huff_data(bitfile *ld, const uint8_t dt, const uint8_t nr_par,
  452.                       ps_huff_tab t_huff, ps_huff_tab f_huff, int8_t *par)
  453. {
  454.     uint8_t n;
  455.     if (dt)
  456.     {
  457.         /* coded in time direction */
  458.         for (n = 0; n < nr_par; n++)
  459.         {
  460.             par[n] = ps_huff_dec(ld, t_huff);
  461.         }
  462.     } else {
  463.         /* coded in frequency direction */
  464.         par[0] = ps_huff_dec(ld, f_huff);
  465.         for (n = 1; n < nr_par; n++)
  466.         {
  467.             par[n] = ps_huff_dec(ld, f_huff);
  468.         }
  469.     }
  470. }
  471. /* binary search huffman decoding */
  472. static INLINE int8_t ps_huff_dec(bitfile *ld, ps_huff_tab t_huff)
  473. {
  474.     uint8_t bit;
  475.     int16_t index = 0;
  476.     while (index >= 0)
  477.     {
  478.         bit = (uint8_t)faad_get1bit(ld);
  479.         index = t_huff[index][bit];
  480.     }
  481.     return index + 31;
  482. }
  483. #endif