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.

108 lines
3.2KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "config.h"
  19. #include "avutil.h"
  20. #include "avassert.h"
  21. #include "samplefmt.h"
  22. #include "pixdesc.h"
  23. /**
  24. * @file
  25. * various utility functions
  26. */
  27. unsigned avutil_version(void)
  28. {
  29. static int checks_done;
  30. if (checks_done)
  31. return LIBAVUTIL_VERSION_INT;
  32. av_assert0(AV_PIX_FMT_VDA_VLD == 81); //check if the pix fmt enum has not had anything inserted or removed by mistake
  33. av_assert0(AV_SAMPLE_FMT_DBLP == 9);
  34. av_assert0(AVMEDIA_TYPE_ATTACHMENT == 4);
  35. av_assert0(AV_PICTURE_TYPE_BI == 7);
  36. av_assert0(LIBAVUTIL_VERSION_MICRO >= 100);
  37. av_assert0(HAVE_MMX2 == HAVE_MMXEXT);
  38. if (av_sat_dadd32(1, 2) != 5) {
  39. av_log(NULL, AV_LOG_FATAL, "Libavutil has been build with a broken binutils, please upgrade binutils and rebuild\n");
  40. abort();
  41. }
  42. ff_check_pixfmt_descriptors();
  43. checks_done = 1;
  44. return LIBAVUTIL_VERSION_INT;
  45. }
  46. const char *avutil_configuration(void)
  47. {
  48. return FFMPEG_CONFIGURATION;
  49. }
  50. const char *avutil_license(void)
  51. {
  52. #define LICENSE_PREFIX "libavutil license: "
  53. return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  54. }
  55. const char *av_get_media_type_string(enum AVMediaType media_type)
  56. {
  57. switch (media_type) {
  58. case AVMEDIA_TYPE_VIDEO: return "video";
  59. case AVMEDIA_TYPE_AUDIO: return "audio";
  60. case AVMEDIA_TYPE_DATA: return "data";
  61. case AVMEDIA_TYPE_SUBTITLE: return "subtitle";
  62. case AVMEDIA_TYPE_ATTACHMENT: return "attachment";
  63. default: return NULL;
  64. }
  65. }
  66. char av_get_picture_type_char(enum AVPictureType pict_type)
  67. {
  68. switch (pict_type) {
  69. case AV_PICTURE_TYPE_I: return 'I';
  70. case AV_PICTURE_TYPE_P: return 'P';
  71. case AV_PICTURE_TYPE_B: return 'B';
  72. case AV_PICTURE_TYPE_S: return 'S';
  73. case AV_PICTURE_TYPE_SI: return 'i';
  74. case AV_PICTURE_TYPE_SP: return 'p';
  75. case AV_PICTURE_TYPE_BI: return 'b';
  76. default: return '?';
  77. }
  78. }
  79. unsigned av_int_list_length_for_size(unsigned elsize,
  80. const void *list, uint64_t term)
  81. {
  82. unsigned i;
  83. if (!list)
  84. return 0;
  85. #define LIST_LENGTH(type) \
  86. { type t = term, *l = list; for (i = 0; l[i] != t; i++); }
  87. switch (elsize) {
  88. case 1: LIST_LENGTH(uint8_t); break;
  89. case 2: LIST_LENGTH(uint16_t); break;
  90. case 4: LIST_LENGTH(uint32_t); break;
  91. case 8: LIST_LENGTH(uint64_t); break;
  92. default: av_assert0(!"valid element size");
  93. }
  94. return i;
  95. }