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.

158 lines
3.7KB

  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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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. static int inited = 0;
  28. if (inited != 0)
  29. return;
  30. inited = 1;
  31. avcodec_init();
  32. avcodec_register_all();
  33. mpegps_init();
  34. mpegts_init();
  35. #ifdef CONFIG_MUXERS
  36. crc_init();
  37. img_init();
  38. img2_init();
  39. #endif //CONFIG_MUXERS
  40. raw_init();
  41. mp3_init();
  42. rm_init();
  43. asf_init();
  44. #ifdef CONFIG_MUXERS
  45. avienc_init();
  46. #endif //CONFIG_MUXERS
  47. avidec_init();
  48. ff_wav_init();
  49. ff_mmf_init();
  50. swf_init();
  51. au_init();
  52. ff_aiff_init();
  53. #ifdef CONFIG_MUXERS
  54. ff_adts_init();
  55. gif_init();
  56. #endif //CONFIG_MUXERS
  57. mov_init();
  58. #ifdef CONFIG_MUXERS
  59. movenc_init();
  60. jpeg_init();
  61. #endif //CONFIG_MUXERS
  62. ff_dv_init();
  63. fourxm_init();
  64. #ifdef CONFIG_MUXERS
  65. flvenc_init();
  66. #endif //CONFIG_MUXERS
  67. flvdec_init();
  68. str_init();
  69. roq_init();
  70. ipmovie_init();
  71. wc3_init();
  72. westwood_init();
  73. film_init();
  74. idcin_init();
  75. flic_init();
  76. vmd_init();
  77. mm_init();
  78. smacker_init();
  79. #if defined(AMR_NB) || defined(AMR_NB_FIXED) || defined(AMR_WB)
  80. amr_init();
  81. #endif
  82. yuv4mpeg_init();
  83. ogg_init();
  84. #ifdef CONFIG_LIBOGG
  85. libogg_init();
  86. #endif
  87. ffm_init();
  88. #if defined(CONFIG_VIDEO4LINUX2)
  89. v4l2_init();
  90. #endif
  91. #if defined(CONFIG_VIDEO4LINUX) || defined(CONFIG_BKTR)
  92. video_grab_init();
  93. #endif
  94. #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
  95. audio_init();
  96. #endif
  97. #ifdef CONFIG_DV1394
  98. dv1394_init();
  99. #endif
  100. #ifdef CONFIG_DC1394
  101. dc1394_init();
  102. #endif
  103. nut_init();
  104. matroska_init();
  105. sol_init();
  106. ea_init();
  107. nsvdec_init();
  108. daud_init();
  109. voc_init();
  110. tta_init();
  111. avs_init();
  112. nuv_init();
  113. #ifdef CONFIG_MUXERS
  114. /* image formats */
  115. #if 0
  116. av_register_image_format(&pnm_image_format);
  117. av_register_image_format(&pbm_image_format);
  118. av_register_image_format(&pgm_image_format);
  119. av_register_image_format(&ppm_image_format);
  120. av_register_image_format(&pam_image_format);
  121. av_register_image_format(&pgmyuv_image_format);
  122. av_register_image_format(&yuv_image_format);
  123. #ifdef CONFIG_ZLIB
  124. av_register_image_format(&png_image_format);
  125. #endif
  126. av_register_image_format(&jpeg_image_format);
  127. #endif
  128. av_register_image_format(&gif_image_format);
  129. // av_register_image_format(&sgi_image_format); heap corruption, dont enable
  130. #endif //CONFIG_MUXERS
  131. #ifdef CONFIG_PROTOCOLS
  132. /* file protocols */
  133. register_protocol(&file_protocol);
  134. register_protocol(&pipe_protocol);
  135. #ifdef CONFIG_NETWORK
  136. rtsp_init();
  137. rtp_init();
  138. register_protocol(&udp_protocol);
  139. register_protocol(&rtp_protocol);
  140. register_protocol(&tcp_protocol);
  141. register_protocol(&http_protocol);
  142. #endif
  143. #endif
  144. }