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.

147 lines
3.4KB

  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. 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_ENCODERS
  36. crc_init();
  37. img_init();
  38. img2_init();
  39. #endif //CONFIG_ENCODERS
  40. raw_init();
  41. mp3_init();
  42. rm_init();
  43. #ifdef CONFIG_RISKY
  44. asf_init();
  45. #endif
  46. #ifdef CONFIG_ENCODERS
  47. avienc_init();
  48. #endif //CONFIG_ENCODERS
  49. avidec_init();
  50. ff_wav_init();
  51. swf_init();
  52. au_init();
  53. #ifdef CONFIG_ENCODERS
  54. gif_init();
  55. #endif //CONFIG_ENCODERS
  56. mov_init();
  57. #ifdef CONFIG_ENCODERS
  58. movenc_init();
  59. jpeg_init();
  60. #endif //CONFIG_ENCODERS
  61. ff_dv_init();
  62. fourxm_init();
  63. #ifdef CONFIG_ENCODERS
  64. flvenc_init();
  65. #endif //CONFIG_ENCODERS
  66. flvdec_init();
  67. str_init();
  68. roq_init();
  69. ipmovie_init();
  70. wc3_init();
  71. westwood_init();
  72. film_init();
  73. idcin_init();
  74. flic_init();
  75. vmd_init();
  76. #if defined(AMR_NB) || defined(AMR_NB_FIXED) || defined(AMR_WB)
  77. amr_init();
  78. #endif
  79. yuv4mpeg_init();
  80. #ifdef CONFIG_VORBIS
  81. ogg_init();
  82. #endif
  83. #ifndef CONFIG_WIN32
  84. ffm_init();
  85. #endif
  86. #ifdef CONFIG_VIDEO4LINUX
  87. video_grab_init();
  88. #endif
  89. #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
  90. audio_init();
  91. #endif
  92. #ifdef CONFIG_DV1394
  93. dv1394_init();
  94. #endif
  95. #ifdef CONFIG_DC1394
  96. dc1394_init();
  97. #endif
  98. nut_init();
  99. matroska_init();
  100. sol_init();
  101. ea_init();
  102. #ifdef CONFIG_ENCODERS
  103. /* image formats */
  104. #if 0
  105. av_register_image_format(&pnm_image_format);
  106. av_register_image_format(&pbm_image_format);
  107. av_register_image_format(&pgm_image_format);
  108. av_register_image_format(&ppm_image_format);
  109. av_register_image_format(&pam_image_format);
  110. av_register_image_format(&pgmyuv_image_format);
  111. #endif
  112. av_register_image_format(&yuv_image_format);
  113. #if 0
  114. #ifdef CONFIG_ZLIB
  115. av_register_image_format(&png_image_format);
  116. #endif
  117. av_register_image_format(&jpeg_image_format);
  118. #endif
  119. av_register_image_format(&gif_image_format);
  120. av_register_image_format(&sgi_image_format);
  121. #endif //CONFIG_ENCODERS
  122. /* file protocols */
  123. register_protocol(&file_protocol);
  124. register_protocol(&pipe_protocol);
  125. #ifdef CONFIG_NETWORK
  126. rtsp_init();
  127. rtp_init();
  128. register_protocol(&udp_protocol);
  129. register_protocol(&rtp_protocol);
  130. register_protocol(&tcp_protocol);
  131. register_protocol(&http_protocol);
  132. #endif
  133. }