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.

113 lines
2.8KB

  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. /**
  23. * Initialize libavcodec and register all the codecs and formats.
  24. */
  25. void av_register_all(void)
  26. {
  27. avcodec_init();
  28. avcodec_register_all();
  29. mpegps_init();
  30. mpegts_init();
  31. crc_init();
  32. img_init();
  33. raw_init();
  34. mp3_init();
  35. rm_init();
  36. #ifdef CONFIG_RISKY
  37. asf_init();
  38. #endif
  39. avienc_init();
  40. avidec_init();
  41. wav_init();
  42. swf_init();
  43. au_init();
  44. gif_init();
  45. mov_init();
  46. movenc_init();
  47. jpeg_init();
  48. dv_init();
  49. fourxm_init();
  50. flvenc_init();
  51. flvdec_init();
  52. str_init();
  53. roq_init();
  54. ipmovie_init();
  55. wc3_init();
  56. westwood_init();
  57. film_init();
  58. #if defined(AMR_NB) || defined(AMR_NB_FIXED) || defined(AMR_WB)
  59. amr_init();
  60. #endif
  61. yuv4mpeg_init();
  62. #ifdef CONFIG_VORBIS
  63. ogg_init();
  64. #endif
  65. #ifndef CONFIG_WIN32
  66. ffm_init();
  67. #endif
  68. #ifdef CONFIG_VIDEO4LINUX
  69. video_grab_init();
  70. #endif
  71. #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
  72. audio_init();
  73. #endif
  74. #ifdef CONFIG_DV1394
  75. dv1394_init();
  76. #endif
  77. nut_init();
  78. /* image formats */
  79. av_register_image_format(&pnm_image_format);
  80. av_register_image_format(&pbm_image_format);
  81. av_register_image_format(&pgm_image_format);
  82. av_register_image_format(&ppm_image_format);
  83. av_register_image_format(&pam_image_format);
  84. av_register_image_format(&pgmyuv_image_format);
  85. av_register_image_format(&yuv_image_format);
  86. #ifdef CONFIG_ZLIB
  87. av_register_image_format(&png_image_format);
  88. #endif
  89. av_register_image_format(&jpeg_image_format);
  90. av_register_image_format(&gif_image_format);
  91. /* file protocols */
  92. register_protocol(&file_protocol);
  93. register_protocol(&pipe_protocol);
  94. #ifdef CONFIG_NETWORK
  95. rtsp_init();
  96. rtp_init();
  97. register_protocol(&udp_protocol);
  98. register_protocol(&rtp_protocol);
  99. register_protocol(&tcp_protocol);
  100. register_protocol(&http_protocol);
  101. #endif
  102. }