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.

91 lines
2.3KB

  1. /*
  2. * Register all the formats and protocols
  3. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include "avformat.h"
  20. /* If you do not call this function, then you can select exactly which
  21. formats you want to support */
  22. char *video_device = "none";
  23. /**
  24. * Initialize libavcodec and register all the codecs and formats.
  25. */
  26. void av_register_all(void)
  27. {
  28. avcodec_init();
  29. avcodec_register_all();
  30. mpegps_init();
  31. mpegts_init();
  32. crc_init();
  33. img_init();
  34. raw_init();
  35. rm_init();
  36. asf_init();
  37. avienc_init();
  38. avidec_init();
  39. wav_init();
  40. swf_init();
  41. au_init();
  42. gif_init();
  43. mov_init();
  44. jpeg_init();
  45. dv_init();
  46. av_register_output_format(&yuv4mpegpipe_oformat);
  47. #ifdef CONFIG_VORBIS
  48. ogg_init();
  49. #endif
  50. #ifndef CONFIG_WIN32
  51. ffm_init();
  52. #endif
  53. #ifdef CONFIG_VIDEO4LINUX
  54. video_grab_init();
  55. #endif
  56. #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
  57. audio_init();
  58. #endif
  59. #ifdef CONFIG_DV1394
  60. dv1394_init();
  61. #endif
  62. /* image formats */
  63. av_register_image_format(&pnm_image_format);
  64. av_register_image_format(&pbm_image_format);
  65. av_register_image_format(&pgm_image_format);
  66. av_register_image_format(&ppm_image_format);
  67. av_register_image_format(&pgmyuv_image_format);
  68. av_register_image_format(&yuv_image_format);
  69. /* file protocols */
  70. register_protocol(&file_protocol);
  71. register_protocol(&pipe_protocol);
  72. #ifdef CONFIG_NETWORK
  73. rtsp_init();
  74. rtp_init();
  75. register_protocol(&udp_protocol);
  76. register_protocol(&rtp_protocol);
  77. register_protocol(&tcp_protocol);
  78. register_protocol(&http_protocol);
  79. #endif
  80. }