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.

70 lines
2.4KB

  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. }