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.

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