2002-07-25 18:03:55 +02:00
|
|
|
/*
|
|
|
|
* Register all the formats and protocols
|
|
|
|
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-01-12 23:43:26 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-07-25 18:03:55 +02:00
|
|
|
*/
|
|
|
|
#include "avformat.h"
|
|
|
|
|
|
|
|
/* If you do not call this function, then you can select exactly which
|
|
|
|
formats you want to support */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize libavcodec and register all the codecs and formats.
|
|
|
|
*/
|
|
|
|
void av_register_all(void)
|
|
|
|
{
|
2004-10-07 23:11:08 +02:00
|
|
|
static int inited = 0;
|
2005-12-17 19:14:38 +01:00
|
|
|
|
2004-10-07 23:11:08 +02:00
|
|
|
if (inited != 0)
|
|
|
|
return;
|
|
|
|
inited = 1;
|
|
|
|
|
2002-07-25 18:03:55 +02:00
|
|
|
avcodec_init();
|
|
|
|
avcodec_register_all();
|
|
|
|
|
|
|
|
mpegps_init();
|
|
|
|
mpegts_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#ifdef CONFIG_MUXERS
|
2002-07-25 18:03:55 +02:00
|
|
|
crc_init();
|
|
|
|
img_init();
|
2004-07-15 20:32:54 +02:00
|
|
|
img2_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#endif //CONFIG_MUXERS
|
2002-07-25 18:03:55 +02:00
|
|
|
raw_init();
|
2003-09-09 00:34:28 +02:00
|
|
|
mp3_init();
|
2002-07-25 18:03:55 +02:00
|
|
|
rm_init();
|
|
|
|
asf_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#ifdef CONFIG_MUXERS
|
2002-07-25 18:03:55 +02:00
|
|
|
avienc_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#endif //CONFIG_MUXERS
|
2002-07-25 18:03:55 +02:00
|
|
|
avidec_init();
|
2004-03-14 00:04:37 +01:00
|
|
|
ff_wav_init();
|
2005-07-15 14:50:00 +02:00
|
|
|
ff_mmf_init();
|
2002-07-25 18:03:55 +02:00
|
|
|
swf_init();
|
|
|
|
au_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#ifdef CONFIG_MUXERS
|
2002-07-25 18:03:55 +02:00
|
|
|
gif_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#endif //CONFIG_MUXERS
|
2002-07-25 18:03:55 +02:00
|
|
|
mov_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#ifdef CONFIG_MUXERS
|
2003-08-26 22:23:13 +02:00
|
|
|
movenc_init();
|
2002-07-25 18:03:55 +02:00
|
|
|
jpeg_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#endif //CONFIG_MUXERS
|
2004-03-14 00:04:37 +01:00
|
|
|
ff_dv_init();
|
2003-05-25 07:18:30 +02:00
|
|
|
fourxm_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#ifdef CONFIG_MUXERS
|
2003-07-10 01:10:59 +02:00
|
|
|
flvenc_init();
|
2005-09-23 02:25:41 +02:00
|
|
|
#endif //CONFIG_MUXERS
|
2003-07-10 01:10:59 +02:00
|
|
|
flvdec_init();
|
2003-09-01 17:55:38 +02:00
|
|
|
str_init();
|
2003-09-02 06:32:02 +02:00
|
|
|
roq_init();
|
|
|
|
ipmovie_init();
|
2003-09-08 06:14:34 +02:00
|
|
|
wc3_init();
|
2003-10-01 06:39:38 +02:00
|
|
|
westwood_init();
|
|
|
|
film_init();
|
2003-10-03 07:43:03 +02:00
|
|
|
idcin_init();
|
2003-11-14 06:42:14 +01:00
|
|
|
flic_init();
|
2004-01-02 05:47:02 +01:00
|
|
|
vmd_init();
|
2003-01-11 06:02:14 +01:00
|
|
|
|
2003-09-28 22:34:11 +02:00
|
|
|
#if defined(AMR_NB) || defined(AMR_NB_FIXED) || defined(AMR_WB)
|
2003-06-05 16:30:52 +02:00
|
|
|
amr_init();
|
|
|
|
#endif
|
2003-08-05 11:32:31 +02:00
|
|
|
yuv4mpeg_init();
|
2005-04-09 17:32:58 +02:00
|
|
|
|
2002-09-01 20:07:56 +02:00
|
|
|
ogg_init();
|
2005-04-09 17:32:58 +02:00
|
|
|
#ifdef CONFIG_LIBOGG
|
|
|
|
libogg_init();
|
2002-09-01 20:07:56 +02:00
|
|
|
#endif
|
|
|
|
|
2002-07-25 18:03:55 +02:00
|
|
|
ffm_init();
|
2005-06-25 11:04:08 +02:00
|
|
|
#if defined(CONFIG_VIDEO4LINUX) || defined(CONFIG_BKTR)
|
2002-07-25 18:03:55 +02:00
|
|
|
video_grab_init();
|
|
|
|
#endif
|
2002-11-05 01:38:06 +01:00
|
|
|
#if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
|
2002-07-25 18:03:55 +02:00
|
|
|
audio_init();
|
|
|
|
#endif
|
|
|
|
|
2003-01-22 23:40:52 +01:00
|
|
|
#ifdef CONFIG_DV1394
|
|
|
|
dv1394_init();
|
|
|
|
#endif
|
|
|
|
|
2004-10-22 04:04:30 +02:00
|
|
|
#ifdef CONFIG_DC1394
|
|
|
|
dc1394_init();
|
|
|
|
#endif
|
|
|
|
|
2003-09-05 20:45:32 +02:00
|
|
|
nut_init();
|
2004-03-11 17:26:42 +01:00
|
|
|
matroska_init();
|
2004-09-28 05:09:49 +02:00
|
|
|
sol_init();
|
2004-10-16 21:33:57 +02:00
|
|
|
ea_init();
|
2004-11-21 00:10:07 +01:00
|
|
|
nsvdec_init();
|
2005-09-02 21:18:59 +02:00
|
|
|
daud_init();
|
2003-09-05 20:45:32 +02:00
|
|
|
|
2005-09-23 02:25:41 +02:00
|
|
|
#ifdef CONFIG_MUXERS
|
2003-01-11 06:02:14 +01:00
|
|
|
/* image formats */
|
2004-11-14 23:30:44 +01:00
|
|
|
#if 0
|
2003-01-11 06:02:14 +01:00
|
|
|
av_register_image_format(&pnm_image_format);
|
|
|
|
av_register_image_format(&pbm_image_format);
|
|
|
|
av_register_image_format(&pgm_image_format);
|
|
|
|
av_register_image_format(&ppm_image_format);
|
2003-04-19 17:18:00 +02:00
|
|
|
av_register_image_format(&pam_image_format);
|
2003-01-11 06:02:14 +01:00
|
|
|
av_register_image_format(&pgmyuv_image_format);
|
|
|
|
av_register_image_format(&yuv_image_format);
|
2003-02-27 18:32:56 +01:00
|
|
|
#ifdef CONFIG_ZLIB
|
2003-02-01 21:53:57 +01:00
|
|
|
av_register_image_format(&png_image_format);
|
2003-02-27 18:32:56 +01:00
|
|
|
#endif
|
2003-02-02 20:18:09 +01:00
|
|
|
av_register_image_format(&jpeg_image_format);
|
2004-11-14 23:30:44 +01:00
|
|
|
#endif
|
2005-12-17 19:14:38 +01:00
|
|
|
av_register_image_format(&gif_image_format);
|
2005-01-08 15:21:33 +01:00
|
|
|
// av_register_image_format(&sgi_image_format); heap corruption, dont enable
|
2005-09-23 02:25:41 +02:00
|
|
|
#endif //CONFIG_MUXERS
|
2003-01-11 06:02:14 +01:00
|
|
|
|
2002-07-25 18:03:55 +02:00
|
|
|
/* file protocols */
|
|
|
|
register_protocol(&file_protocol);
|
|
|
|
register_protocol(&pipe_protocol);
|
|
|
|
#ifdef CONFIG_NETWORK
|
|
|
|
rtsp_init();
|
|
|
|
rtp_init();
|
|
|
|
register_protocol(&udp_protocol);
|
|
|
|
register_protocol(&rtp_protocol);
|
|
|
|
register_protocol(&tcp_protocol);
|
|
|
|
register_protocol(&http_protocol);
|
|
|
|
#endif
|
|
|
|
}
|