utils.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. /**
  23. * @file
  24. * various utility functions
  25. */
  26. unsigned avutil_version(void)
  27. {
  28. av_assert0(PIX_FMT_VDA_VLD == 81); //check if the pix fmt enum has not had anything inserted or removed by mistake
  29. av_assert0(AV_SAMPLE_FMT_DBLP == 9);
  30. av_assert0(AVMEDIA_TYPE_ATTACHMENT == 4);
  31. av_assert0(AV_PICTURE_TYPE_BI == 7);
  32. av_assert0(LIBAVUTIL_VERSION_MICRO >= 100);
  33. return LIBAVUTIL_VERSION_INT;
  34. }
  35. const char *avutil_configuration(void)
  36. {
  37. return FFMPEG_CONFIGURATION;
  38. }
  39. const char *avutil_license(void)
  40. {
  41. #define LICENSE_PREFIX "libavutil license: "
  42. return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  43. }
  44. const char *av_get_media_type_string(enum AVMediaType media_type)
  45. {
  46. switch (media_type) {
  47. case AVMEDIA_TYPE_VIDEO: return "video";
  48. case AVMEDIA_TYPE_AUDIO: return "audio";
  49. case AVMEDIA_TYPE_DATA: return "data";
  50. case AVMEDIA_TYPE_SUBTITLE: return "subtitle";
  51. case AVMEDIA_TYPE_ATTACHMENT: return "attachment";
  52. default: return NULL;
  53. }
  54. }
  55. char av_get_picture_type_char(enum AVPictureType pict_type)
  56. {
  57. switch (pict_type) {
  58. case AV_PICTURE_TYPE_I: return 'I';
  59. case AV_PICTURE_TYPE_P: return 'P';
  60. case AV_PICTURE_TYPE_B: return 'B';
  61. case AV_PICTURE_TYPE_S: return 'S';
  62. case AV_PICTURE_TYPE_SI: return 'i';
  63. case AV_PICTURE_TYPE_SP: return 'p';
  64. case AV_PICTURE_TYPE_BI: return 'b';
  65. default: return '?';
  66. }
  67. }