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.

99 lines
3.2KB

  1. /*
  2. * Header file for hardcoded DV tables
  3. *
  4. * Copyright (c) 2010 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_DV_TABLEGEN_H
  23. #define AVCODEC_DV_TABLEGEN_H
  24. #include <stdint.h>
  25. #include "libavutil/attributes.h"
  26. #include "dv_vlc_data.h"
  27. #if CONFIG_SMALL
  28. #define DV_VLC_MAP_RUN_SIZE 15
  29. #define DV_VLC_MAP_LEV_SIZE 23
  30. #else
  31. #define DV_VLC_MAP_RUN_SIZE 64
  32. #define DV_VLC_MAP_LEV_SIZE 512 //FIXME sign was removed so this should be /2 but needs check
  33. #endif
  34. /* VLC encoding lookup table */
  35. typedef struct dv_vlc_pair {
  36. uint32_t vlc;
  37. uint32_t size;
  38. } dv_vlc_pair;
  39. #if CONFIG_HARDCODED_TABLES
  40. #define dv_vlc_map_tableinit()
  41. #include "libavcodec/dv_tables.h"
  42. #else
  43. static struct dv_vlc_pair dv_vlc_map[DV_VLC_MAP_RUN_SIZE][DV_VLC_MAP_LEV_SIZE];
  44. static void av_unused dv_vlc_map_tableinit(void)
  45. {
  46. int i, j;
  47. for (i = 0; i < NB_DV_VLC - 1; i++) {
  48. if (dv_vlc_run[i] >= DV_VLC_MAP_RUN_SIZE)
  49. continue;
  50. #if CONFIG_SMALL
  51. if (dv_vlc_level[i] >= DV_VLC_MAP_LEV_SIZE)
  52. continue;
  53. #endif
  54. if (dv_vlc_map[dv_vlc_run[i]][dv_vlc_level[i]].size != 0)
  55. continue;
  56. dv_vlc_map[dv_vlc_run[i]][dv_vlc_level[i]].vlc =
  57. dv_vlc_bits[i] << (!!dv_vlc_level[i]);
  58. dv_vlc_map[dv_vlc_run[i]][dv_vlc_level[i]].size =
  59. dv_vlc_len[i] + (!!dv_vlc_level[i]);
  60. }
  61. for (i = 0; i < DV_VLC_MAP_RUN_SIZE; i++) {
  62. #if CONFIG_SMALL
  63. for (j = 1; j < DV_VLC_MAP_LEV_SIZE; j++) {
  64. if (dv_vlc_map[i][j].size == 0) {
  65. dv_vlc_map[i][j].vlc = dv_vlc_map[0][j].vlc |
  66. (dv_vlc_map[i-1][0].vlc << (dv_vlc_map[0][j].size));
  67. dv_vlc_map[i][j].size = dv_vlc_map[i-1][0].size +
  68. dv_vlc_map[0][j].size;
  69. }
  70. }
  71. #else
  72. for (j = 1; j < DV_VLC_MAP_LEV_SIZE/2; j++) {
  73. if (dv_vlc_map[i][j].size == 0) {
  74. dv_vlc_map[i][j].vlc = dv_vlc_map[0][j].vlc |
  75. (dv_vlc_map[i-1][0].vlc << (dv_vlc_map[0][j].size));
  76. dv_vlc_map[i][j].size = dv_vlc_map[i-1][0].size +
  77. dv_vlc_map[0][j].size;
  78. }
  79. dv_vlc_map[i][((uint16_t)(-j))&0x1ff].vlc =
  80. dv_vlc_map[i][j].vlc | 1;
  81. dv_vlc_map[i][((uint16_t)(-j))&0x1ff].size =
  82. dv_vlc_map[i][j].size;
  83. }
  84. #endif
  85. }
  86. }
  87. #endif /* CONFIG_HARDCODED_TABLES */
  88. #endif /* AVCODEC_DV_TABLEGEN_H */