allformats.c 3.2 KB

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