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.

61 lines
2.2KB

  1. /*
  2. * Generate a file for hardcoded tables
  3. *
  4. * Copyright (c) 2009 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_TABLEPRINT_H
  23. #define AVCODEC_TABLEPRINT_H
  24. #include <stdint.h>
  25. /**
  26. * \defgroup printfuncs Predefined functions for printing tables
  27. *
  28. * \{
  29. */
  30. void write_int8_array (const void *, int, int);
  31. void write_uint32_array (const void *, int, int);
  32. void write_float_array (const void *, int, int);
  33. void write_int8_2d_array (const void *, int, int);
  34. void write_uint32_2d_array(const void *, int, int);
  35. /** \} */ // end of printfuncs group
  36. struct tabledef {
  37. /** String that declares the array. Adding " = { ..." after it should
  38. * make a valid initializer, adding "extern" before and ";" if possible
  39. * should make a valid extern declaration. */
  40. const char *declaration;
  41. /** Function used to print the table data (i.e. the part in {}).
  42. * Should be one of the predefined write_*_array functions. */
  43. void (*printfunc)(const void *, int, int);
  44. /** Pointer passed to the printfunc, usually a pointer to the start
  45. * of the array to be printed. */
  46. const void *data;
  47. int size; ///< size of the first dimension of the array
  48. int size2; ///< size of the second dimension of the array if any
  49. };
  50. /** Initializes all the tables described in the tables array */
  51. void tableinit(void);
  52. /** Describes the tables that should be printed */
  53. extern const struct tabledef tables[];
  54. #endif /* AVCODEC_TABLEPRINT_H */