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.

142 lines
4.2KB

  1. /*
  2. * Register all the grabbing devices.
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "config.h"
  21. #include "libavutil/thread.h"
  22. #include "libavformat/internal.h"
  23. #include "avdevice.h"
  24. /* devices */
  25. extern AVInputFormat ff_alsa_demuxer;
  26. extern AVOutputFormat ff_alsa_muxer;
  27. extern AVInputFormat ff_android_camera_demuxer;
  28. extern AVOutputFormat ff_audiotoolbox_muxer;
  29. extern AVInputFormat ff_avfoundation_demuxer;
  30. extern AVInputFormat ff_bktr_demuxer;
  31. extern AVOutputFormat ff_caca_muxer;
  32. extern AVInputFormat ff_decklink_demuxer;
  33. extern AVOutputFormat ff_decklink_muxer;
  34. extern AVInputFormat ff_dshow_demuxer;
  35. extern AVInputFormat ff_fbdev_demuxer;
  36. extern AVOutputFormat ff_fbdev_muxer;
  37. extern AVInputFormat ff_gdigrab_demuxer;
  38. extern AVInputFormat ff_iec61883_demuxer;
  39. extern AVInputFormat ff_jack_demuxer;
  40. extern AVInputFormat ff_kmsgrab_demuxer;
  41. extern AVInputFormat ff_lavfi_demuxer;
  42. extern AVInputFormat ff_openal_demuxer;
  43. extern AVOutputFormat ff_opengl_muxer;
  44. extern AVInputFormat ff_oss_demuxer;
  45. extern AVOutputFormat ff_oss_muxer;
  46. extern AVInputFormat ff_pulse_demuxer;
  47. extern AVOutputFormat ff_pulse_muxer;
  48. extern AVOutputFormat ff_sdl2_muxer;
  49. extern AVInputFormat ff_sndio_demuxer;
  50. extern AVOutputFormat ff_sndio_muxer;
  51. extern AVInputFormat ff_v4l2_demuxer;
  52. extern AVOutputFormat ff_v4l2_muxer;
  53. extern AVInputFormat ff_vfwcap_demuxer;
  54. extern AVInputFormat ff_xcbgrab_demuxer;
  55. extern AVOutputFormat ff_xv_muxer;
  56. /* external libraries */
  57. extern AVInputFormat ff_libcdio_demuxer;
  58. extern AVInputFormat ff_libdc1394_demuxer;
  59. #include "libavdevice/outdev_list.c"
  60. #include "libavdevice/indev_list.c"
  61. void avdevice_register_all(void)
  62. {
  63. avpriv_register_devices(outdev_list, indev_list);
  64. }
  65. static void *next_input(const AVInputFormat *prev, AVClassCategory c2)
  66. {
  67. const AVClass *pc;
  68. const AVClassCategory c1 = AV_CLASS_CATEGORY_DEVICE_INPUT;
  69. AVClassCategory category = AV_CLASS_CATEGORY_NA;
  70. const AVInputFormat *fmt = NULL;
  71. int i = 0;
  72. while (prev && (fmt = indev_list[i])) {
  73. i++;
  74. if (prev == fmt)
  75. break;
  76. }
  77. do {
  78. fmt = indev_list[i++];
  79. if (!fmt)
  80. break;
  81. pc = fmt->priv_class;
  82. if (!pc)
  83. continue;
  84. category = pc->category;
  85. } while (category != c1 && category != c2);
  86. return (AVInputFormat *)fmt;
  87. }
  88. static void *next_output(const AVOutputFormat *prev, AVClassCategory c2)
  89. {
  90. const AVClass *pc;
  91. const AVClassCategory c1 = AV_CLASS_CATEGORY_DEVICE_OUTPUT;
  92. AVClassCategory category = AV_CLASS_CATEGORY_NA;
  93. const AVOutputFormat *fmt = NULL;
  94. int i = 0;
  95. while (prev && (fmt = outdev_list[i])) {
  96. i++;
  97. if (prev == fmt)
  98. break;
  99. }
  100. do {
  101. fmt = outdev_list[i++];
  102. if (!fmt)
  103. break;
  104. pc = fmt->priv_class;
  105. if (!pc)
  106. continue;
  107. category = pc->category;
  108. } while (category != c1 && category != c2);
  109. return (AVOutputFormat *)fmt;
  110. }
  111. AVInputFormat *av_input_audio_device_next(AVInputFormat *d)
  112. {
  113. return next_input(d, AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT);
  114. }
  115. AVInputFormat *av_input_video_device_next(AVInputFormat *d)
  116. {
  117. return next_input(d, AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT);
  118. }
  119. AVOutputFormat *av_output_audio_device_next(AVOutputFormat *d)
  120. {
  121. return next_output(d, AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT);
  122. }
  123. AVOutputFormat *av_output_video_device_next(AVOutputFormat *d)
  124. {
  125. return next_output(d, AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT);
  126. }