utils.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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 "internal.h"
  23. /**
  24. * @file
  25. * various utility functions
  26. */
  27. #include "libavutil/ffversion.h"
  28. const char av_util_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
  29. const char *av_version_info(void)
  30. {
  31. return FFMPEG_VERSION;
  32. }
  33. unsigned avutil_version(void)
  34. {
  35. static int checks_done;
  36. if (checks_done)
  37. return LIBAVUTIL_VERSION_INT;
  38. av_assert0(AV_SAMPLE_FMT_DBLP == 9);
  39. av_assert0(AVMEDIA_TYPE_ATTACHMENT == 4);
  40. av_assert0(AV_PICTURE_TYPE_BI == 7);
  41. av_assert0(LIBAVUTIL_VERSION_MICRO >= 100);
  42. av_assert0(HAVE_MMX2 == HAVE_MMXEXT);
  43. av_assert0(((size_t)-1) > 0); // C guarantees this but if false on a platform we care about revert at least b284e1ffe343d6697fb950d1ee517bafda8a9844
  44. if (av_sat_dadd32(1, 2) != 5) {
  45. av_log(NULL, AV_LOG_FATAL, "Libavutil has been built with a broken binutils, please upgrade binutils and rebuild\n");
  46. abort();
  47. }
  48. if (llrint(1LL<<60) != 1LL<<60) {
  49. av_log(NULL, AV_LOG_ERROR, "Libavutil has been linked to a broken llrint()\n");
  50. }
  51. checks_done = 1;
  52. return LIBAVUTIL_VERSION_INT;
  53. }
  54. const char *avutil_configuration(void)
  55. {
  56. return FFMPEG_CONFIGURATION;
  57. }
  58. const char *avutil_license(void)
  59. {
  60. #define LICENSE_PREFIX "libavutil license: "
  61. return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  62. }
  63. const char *av_get_media_type_string(enum AVMediaType media_type)
  64. {
  65. switch (media_type) {
  66. case AVMEDIA_TYPE_VIDEO: return "video";
  67. case AVMEDIA_TYPE_AUDIO: return "audio";
  68. case AVMEDIA_TYPE_DATA: return "data";
  69. case AVMEDIA_TYPE_SUBTITLE: return "subtitle";
  70. case AVMEDIA_TYPE_ATTACHMENT: return "attachment";
  71. default: return NULL;
  72. }
  73. }
  74. char av_get_picture_type_char(enum AVPictureType pict_type)
  75. {
  76. switch (pict_type) {
  77. case AV_PICTURE_TYPE_I: return 'I';
  78. case AV_PICTURE_TYPE_P: return 'P';
  79. case AV_PICTURE_TYPE_B: return 'B';
  80. case AV_PICTURE_TYPE_S: return 'S';
  81. case AV_PICTURE_TYPE_SI: return 'i';
  82. case AV_PICTURE_TYPE_SP: return 'p';
  83. case AV_PICTURE_TYPE_BI: return 'b';
  84. default: return '?';
  85. }
  86. }
  87. unsigned av_int_list_length_for_size(unsigned elsize,
  88. const void *list, uint64_t term)
  89. {
  90. unsigned i;
  91. if (!list)
  92. return 0;
  93. #define LIST_LENGTH(type) \
  94. { type t = term, *l = (type *)list; for (i = 0; l[i] != t; i++); }
  95. switch (elsize) {
  96. case 1: LIST_LENGTH(uint8_t); break;
  97. case 2: LIST_LENGTH(uint16_t); break;
  98. case 4: LIST_LENGTH(uint32_t); break;
  99. case 8: LIST_LENGTH(uint64_t); break;
  100. default: av_assert0(!"valid element size");
  101. }
  102. return i;
  103. }
  104. char *av_fourcc_make_string(char *buf, uint32_t fourcc)
  105. {
  106. int i;
  107. char *orig_buf = buf;
  108. size_t buf_size = AV_FOURCC_MAX_STRING_SIZE;
  109. for (i = 0; i < 4; i++) {
  110. const int c = fourcc & 0xff;
  111. const int print_chr = (c >= '0' && c <= '9') ||
  112. (c >= 'a' && c <= 'z') ||
  113. (c >= 'A' && c <= 'Z') ||
  114. (c && strchr(". -_", c));
  115. const int len = snprintf(buf, buf_size, print_chr ? "%c" : "[%d]", c);
  116. if (len < 0)
  117. break;
  118. buf += len;
  119. buf_size = buf_size > len ? buf_size - len : 0;
  120. fourcc >>= 8;
  121. }
  122. return orig_buf;
  123. }
  124. AVRational av_get_time_base_q(void)
  125. {
  126. return (AVRational){1, AV_TIME_BASE};
  127. }
  128. void av_assert0_fpu(void) {
  129. #if HAVE_MMX_INLINE
  130. uint16_t state[14];
  131. __asm__ volatile (
  132. "fstenv %0 \n\t"
  133. : "+m" (state)
  134. :
  135. : "memory"
  136. );
  137. av_assert0((state[4] & 3) == 3);
  138. #endif
  139. }