dv_tablegen.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 "dvdata.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 av_cold void dv_vlc_map_tableinit(void)
  45. {
  46. int i, j;
  47. for (i = 0; i < NB_DV_VLC - 1; i++) {
  48. if (ff_dv_vlc_run[i] >= DV_VLC_MAP_RUN_SIZE)
  49. continue;
  50. #if CONFIG_SMALL
  51. if (ff_dv_vlc_level[i] >= DV_VLC_MAP_LEV_SIZE)
  52. continue;
  53. #endif
  54. if (dv_vlc_map[ff_dv_vlc_run[i]][ff_dv_vlc_level[i]].size != 0)
  55. continue;
  56. dv_vlc_map[ff_dv_vlc_run[i]][ff_dv_vlc_level[i]].vlc =
  57. ff_dv_vlc_bits[i] << (!!ff_dv_vlc_level[i]);
  58. dv_vlc_map[ff_dv_vlc_run[i]][ff_dv_vlc_level[i]].size =
  59. ff_dv_vlc_len[i] + (!!ff_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 <<
  67. dv_vlc_map[0][j].size);
  68. dv_vlc_map[i][j].size = dv_vlc_map[i - 1][0].size +
  69. dv_vlc_map[0][j].size;
  70. }
  71. }
  72. #else
  73. for (j = 1; j < DV_VLC_MAP_LEV_SIZE / 2; j++) {
  74. if (dv_vlc_map[i][j].size == 0) {
  75. dv_vlc_map[i][j].vlc = dv_vlc_map[0][j].vlc |
  76. (dv_vlc_map[i - 1][0].vlc <<
  77. dv_vlc_map[0][j].size);
  78. dv_vlc_map[i][j].size = dv_vlc_map[i - 1][0].size +
  79. dv_vlc_map[0][j].size;
  80. }
  81. dv_vlc_map[i][((uint16_t) (-j)) & 0x1ff].vlc = dv_vlc_map[i][j].vlc | 1;
  82. dv_vlc_map[i][((uint16_t) (-j)) & 0x1ff].size = dv_vlc_map[i][j].size;
  83. }
  84. #endif
  85. }
  86. }
  87. #endif /* CONFIG_HARDCODED_TABLES */
  88. #endif /* AVCODEC_DV_TABLEGEN_H */