avdevice.c 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 "libavutil/avassert.h"
  19. #include "avdevice.h"
  20. #include "config.h"
  21. #include "libavutil/ffversion.h"
  22. const char av_device_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
  23. unsigned avdevice_version(void)
  24. {
  25. av_assert0(LIBAVDEVICE_VERSION_MICRO >= 100);
  26. return LIBAVDEVICE_VERSION_INT;
  27. }
  28. const char * avdevice_configuration(void)
  29. {
  30. return FFMPEG_CONFIGURATION;
  31. }
  32. const char * avdevice_license(void)
  33. {
  34. #define LICENSE_PREFIX "libavdevice license: "
  35. return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  36. }
  37. int avdevice_app_to_dev_control_message(struct AVFormatContext *s, enum AVAppToDevMessageType type,
  38. void *data, size_t data_size)
  39. {
  40. if (!s->oformat || !s->oformat->control_message)
  41. return AVERROR(ENOSYS);
  42. return s->oformat->control_message(s, type, data, data_size);
  43. }
  44. int avdevice_dev_to_app_control_message(struct AVFormatContext *s, enum AVDevToAppMessageType type,
  45. void *data, size_t data_size)
  46. {
  47. if (!av_format_get_control_message_cb(s))
  48. return AVERROR(ENOSYS);
  49. return av_format_get_control_message_cb(s)(s, type, data, data_size);
  50. }
  51. int avdevice_list_devices(AVFormatContext *s, AVDeviceInfoList **device_list)
  52. {
  53. av_assert0(s);
  54. av_assert0(device_list);
  55. av_assert0(s->oformat || s->iformat);
  56. if ((s->oformat && !s->oformat->get_device_list) ||
  57. (s->iformat && !s->iformat->get_device_list)) {
  58. *device_list = NULL;
  59. return AVERROR(ENOSYS);
  60. }
  61. *device_list = av_mallocz(sizeof(AVDeviceInfoList));
  62. if (!(*device_list))
  63. return AVERROR(ENOMEM);
  64. if (s->oformat)
  65. return s->oformat->get_device_list(s, *device_list);
  66. return s->iformat->get_device_list(s, *device_list);
  67. }
  68. void avdevice_free_list_devices(AVDeviceInfoList **device_list)
  69. {
  70. AVDeviceInfoList *list;
  71. AVDeviceInfo *dev;
  72. int i;
  73. av_assert0(device_list);
  74. list = *device_list;
  75. if (!list)
  76. return;
  77. for (i = 0; i < list->nb_devices; i++) {
  78. dev = list->devices[i];
  79. if (dev) {
  80. av_free(dev->device_name);
  81. av_free(dev->device_description);
  82. av_free(dev);
  83. }
  84. }
  85. av_free(list->devices);
  86. av_freep(device_list);
  87. }