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.

96 lines
4.3KB

  1. /*
  2. * ALS header file for common data
  3. * Copyright (c) 2009 Thilo Borgmann <thilo.borgmann _at_ googlemail.com>
  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_ALS_DATA_H
  22. #define AVCODEC_ALS_DATA_H
  23. /**
  24. * @file libavcodec/als_data.h
  25. * MPEG-4 ALS common data tables
  26. * @author Thilo Borgmann <thilo.borgmann _at_ googlemail.com>
  27. */
  28. #include <stdint.h>
  29. /** Rice parameters and corresponding index offsets for decoding the
  30. * indices of scaled PARCOR values. The table choosen is set globally
  31. * by the encoder and stored in ALSSpecificConfig.
  32. */
  33. static const int8_t parcor_rice_table[3][20][2] = {
  34. { {-52, 4}, {-29, 5}, {-31, 4}, { 19, 4}, {-16, 4},
  35. { 12, 3}, { -7, 3}, { 9, 3}, { -5, 3}, { 6, 3},
  36. { -4, 3}, { 3, 3}, { -3, 2}, { 3, 2}, { -2, 2},
  37. { 3, 2}, { -1, 2}, { 2, 2}, { -1, 2}, { 2, 2} },
  38. { {-58, 3}, {-42, 4}, {-46, 4}, { 37, 5}, {-36, 4},
  39. { 29, 4}, {-29, 4}, { 25, 4}, {-23, 4}, { 20, 4},
  40. {-17, 4}, { 16, 4}, {-12, 4}, { 12, 3}, {-10, 4},
  41. { 7, 3}, { -4, 4}, { 3, 3}, { -1, 3}, { 1, 3} },
  42. { {-59, 3}, {-45, 5}, {-50, 4}, { 38, 4}, {-39, 4},
  43. { 32, 4}, {-30, 4}, { 25, 3}, {-23, 3}, { 20, 3},
  44. {-20, 3}, { 16, 3}, {-13, 3}, { 10, 3}, { -7, 3},
  45. { 3, 3}, { 0, 3}, { -1, 3}, { 2, 3}, { -1, 2} }
  46. };
  47. /** Scaled PARCOR values used for the first two PARCOR coefficients.
  48. * To be indexed by the Rice coded indices.
  49. * Generated by: parcor_scaled_values[i] = 32 + ((i * (i+1)) << 7) - (1 << 20)
  50. * Actual values are divided by 32 in order to be stored in 16 bits.
  51. */
  52. static const int16_t parcor_scaled_values[] = {
  53. -1048544 / 32, -1048288 / 32, -1047776 / 32, -1047008 / 32,
  54. -1045984 / 32, -1044704 / 32, -1043168 / 32, -1041376 / 32,
  55. -1039328 / 32, -1037024 / 32, -1034464 / 32, -1031648 / 32,
  56. -1028576 / 32, -1025248 / 32, -1021664 / 32, -1017824 / 32,
  57. -1013728 / 32, -1009376 / 32, -1004768 / 32, -999904 / 32,
  58. -994784 / 32, -989408 / 32, -983776 / 32, -977888 / 32,
  59. -971744 / 32, -965344 / 32, -958688 / 32, -951776 / 32,
  60. -944608 / 32, -937184 / 32, -929504 / 32, -921568 / 32,
  61. -913376 / 32, -904928 / 32, -896224 / 32, -887264 / 32,
  62. -878048 / 32, -868576 / 32, -858848 / 32, -848864 / 32,
  63. -838624 / 32, -828128 / 32, -817376 / 32, -806368 / 32,
  64. -795104 / 32, -783584 / 32, -771808 / 32, -759776 / 32,
  65. -747488 / 32, -734944 / 32, -722144 / 32, -709088 / 32,
  66. -695776 / 32, -682208 / 32, -668384 / 32, -654304 / 32,
  67. -639968 / 32, -625376 / 32, -610528 / 32, -595424 / 32,
  68. -580064 / 32, -564448 / 32, -548576 / 32, -532448 / 32,
  69. -516064 / 32, -499424 / 32, -482528 / 32, -465376 / 32,
  70. -447968 / 32, -430304 / 32, -412384 / 32, -394208 / 32,
  71. -375776 / 32, -357088 / 32, -338144 / 32, -318944 / 32,
  72. -299488 / 32, -279776 / 32, -259808 / 32, -239584 / 32,
  73. -219104 / 32, -198368 / 32, -177376 / 32, -156128 / 32,
  74. -134624 / 32, -112864 / 32, -90848 / 32, -68576 / 32,
  75. -46048 / 32, -23264 / 32, -224 / 32, 23072 / 32,
  76. 46624 / 32, 70432 / 32, 94496 / 32, 118816 / 32,
  77. 143392 / 32, 168224 / 32, 193312 / 32, 218656 / 32,
  78. 244256 / 32, 270112 / 32, 296224 / 32, 322592 / 32,
  79. 349216 / 32, 376096 / 32, 403232 / 32, 430624 / 32,
  80. 458272 / 32, 486176 / 32, 514336 / 32, 542752 / 32,
  81. 571424 / 32, 600352 / 32, 629536 / 32, 658976 / 32,
  82. 688672 / 32, 718624 / 32, 748832 / 32, 779296 / 32,
  83. 810016 / 32, 840992 / 32, 872224 / 32, 903712 / 32,
  84. 935456 / 32, 967456 / 32, 999712 / 32, 1032224 / 32
  85. };
  86. #endif /* AVCODEC_ALS_DATA_H */