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.

172 lines
5.0KB

  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 "avdevice.h"
  23. #if FF_API_NEXT
  24. #include "libavformat/internal.h"
  25. #endif
  26. /* devices */
  27. extern AVInputFormat ff_alsa_demuxer;
  28. extern AVOutputFormat ff_alsa_muxer;
  29. extern AVInputFormat ff_android_camera_demuxer;
  30. extern AVInputFormat ff_avfoundation_demuxer;
  31. extern AVInputFormat ff_bktr_demuxer;
  32. extern AVOutputFormat ff_caca_muxer;
  33. extern AVInputFormat ff_decklink_demuxer;
  34. extern AVOutputFormat ff_decklink_muxer;
  35. extern AVInputFormat ff_libndi_newtek_demuxer;
  36. extern AVOutputFormat ff_libndi_newtek_muxer;
  37. extern AVInputFormat ff_dshow_demuxer;
  38. extern AVInputFormat ff_fbdev_demuxer;
  39. extern AVOutputFormat ff_fbdev_muxer;
  40. extern AVInputFormat ff_gdigrab_demuxer;
  41. extern AVInputFormat ff_iec61883_demuxer;
  42. extern AVInputFormat ff_jack_demuxer;
  43. extern AVInputFormat ff_kmsgrab_demuxer;
  44. extern AVInputFormat ff_lavfi_demuxer;
  45. extern AVInputFormat ff_openal_demuxer;
  46. extern AVOutputFormat ff_opengl_muxer;
  47. extern AVInputFormat ff_oss_demuxer;
  48. extern AVOutputFormat ff_oss_muxer;
  49. extern AVInputFormat ff_pulse_demuxer;
  50. extern AVOutputFormat ff_pulse_muxer;
  51. extern AVOutputFormat ff_sdl2_muxer;
  52. extern AVInputFormat ff_sndio_demuxer;
  53. extern AVOutputFormat ff_sndio_muxer;
  54. extern AVInputFormat ff_v4l2_demuxer;
  55. extern AVOutputFormat ff_v4l2_muxer;
  56. extern AVInputFormat ff_vfwcap_demuxer;
  57. extern AVInputFormat ff_xcbgrab_demuxer;
  58. extern AVOutputFormat ff_xv_muxer;
  59. /* external libraries */
  60. extern AVInputFormat ff_libcdio_demuxer;
  61. extern AVInputFormat ff_libdc1394_demuxer;
  62. #include "libavdevice/outdev_list.c"
  63. #include "libavdevice/indev_list.c"
  64. const AVOutputFormat *av_outdev_iterate(void **opaque)
  65. {
  66. uintptr_t i = (uintptr_t)*opaque;
  67. const AVOutputFormat *f = outdev_list[i];
  68. if (f)
  69. *opaque = (void*)(i + 1);
  70. return f;
  71. }
  72. const AVInputFormat *av_indev_iterate(void **opaque)
  73. {
  74. uintptr_t i = (uintptr_t)*opaque;
  75. const AVInputFormat *f = indev_list[i];
  76. if (f)
  77. *opaque = (void*)(i + 1);
  78. return f;
  79. }
  80. #if FF_API_NEXT
  81. FF_DISABLE_DEPRECATION_WARNINGS
  82. static AVOnce av_device_next_init = AV_ONCE_INIT;
  83. static void av_device_init_next(void)
  84. {
  85. AVOutputFormat *prevout = NULL, *out;
  86. AVInputFormat *previn = NULL, *in;
  87. void *i = 0;
  88. while ((out = (AVOutputFormat*)av_outdev_iterate(&i))) {
  89. if (prevout)
  90. prevout->next = out;
  91. prevout = out;
  92. }
  93. i = 0;
  94. while ((in = (AVInputFormat*)av_indev_iterate(&i))) {
  95. if (previn)
  96. previn->next = in;
  97. previn = in;
  98. }
  99. avpriv_register_devices(outdev_list, indev_list);
  100. }
  101. void avdevice_register_all(void)
  102. {
  103. ff_thread_once(&av_device_next_init, av_device_init_next);
  104. }
  105. static void *device_next(void *prev, int output,
  106. AVClassCategory c1, AVClassCategory c2)
  107. {
  108. const AVClass *pc;
  109. AVClassCategory category = AV_CLASS_CATEGORY_NA;
  110. ff_thread_once(&av_device_next_init, av_device_init_next);
  111. do {
  112. if (output) {
  113. if (!(prev = prev ? ((AVOutputFormat *)prev)->next : (void*)outdev_list[0]))
  114. break;
  115. pc = ((AVOutputFormat *)prev)->priv_class;
  116. } else {
  117. if (!(prev = prev ? ((AVInputFormat *)prev)->next : (void*)indev_list[0]))
  118. break;
  119. pc = ((AVInputFormat *)prev)->priv_class;
  120. }
  121. if (!pc)
  122. continue;
  123. category = pc->category;
  124. } while (category != c1 && category != c2);
  125. return prev;
  126. }
  127. AVInputFormat *av_input_audio_device_next(AVInputFormat *d)
  128. {
  129. return device_next(d, 0, AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT,
  130. AV_CLASS_CATEGORY_DEVICE_INPUT);
  131. }
  132. AVInputFormat *av_input_video_device_next(AVInputFormat *d)
  133. {
  134. return device_next(d, 0, AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT,
  135. AV_CLASS_CATEGORY_DEVICE_INPUT);
  136. }
  137. AVOutputFormat *av_output_audio_device_next(AVOutputFormat *d)
  138. {
  139. return device_next(d, 1, AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT,
  140. AV_CLASS_CATEGORY_DEVICE_OUTPUT);
  141. }
  142. AVOutputFormat *av_output_video_device_next(AVOutputFormat *d)
  143. {
  144. return device_next(d, 1, AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT,
  145. AV_CLASS_CATEGORY_DEVICE_OUTPUT);
  146. }
  147. FF_DISABLE_DEPRECATION_WARNINGS
  148. #endif