2002-07-25 16:03:55 +00: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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#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 21:11:08 +00:00
|
|
|
static int inited = 0;
|
|
|
|
|
|
|
|
if (inited != 0)
|
|
|
|
return;
|
|
|
|
inited = 1;
|
|
|
|
|
2002-07-25 16:03:55 +00:00
|
|
|
avcodec_init();
|
|
|
|
avcodec_register_all();
|
|
|
|
|
|
|
|
mpegps_init();
|
|
|
|
mpegts_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#ifdef CONFIG_ENCODERS
|
2002-07-25 16:03:55 +00:00
|
|
|
crc_init();
|
|
|
|
img_init();
|
2004-07-15 18:32:54 +00:00
|
|
|
img2_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#endif //CONFIG_ENCODERS
|
2002-07-25 16:03:55 +00:00
|
|
|
raw_init();
|
2003-09-08 22:34:28 +00:00
|
|
|
mp3_init();
|
2002-07-25 16:03:55 +00:00
|
|
|
rm_init();
|
2003-01-29 12:00:11 +00:00
|
|
|
#ifdef CONFIG_RISKY
|
2002-07-25 16:03:55 +00:00
|
|
|
asf_init();
|
2003-01-29 12:00:11 +00:00
|
|
|
#endif
|
2003-10-14 04:15:53 +00:00
|
|
|
#ifdef CONFIG_ENCODERS
|
2002-07-25 16:03:55 +00:00
|
|
|
avienc_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#endif //CONFIG_ENCODERS
|
2002-07-25 16:03:55 +00:00
|
|
|
avidec_init();
|
2004-03-13 23:04:37 +00:00
|
|
|
ff_wav_init();
|
2002-07-25 16:03:55 +00:00
|
|
|
swf_init();
|
|
|
|
au_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#ifdef CONFIG_ENCODERS
|
2002-07-25 16:03:55 +00:00
|
|
|
gif_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#endif //CONFIG_ENCODERS
|
2002-07-25 16:03:55 +00:00
|
|
|
mov_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#ifdef CONFIG_ENCODERS
|
2003-08-26 20:23:13 +00:00
|
|
|
movenc_init();
|
2002-07-25 16:03:55 +00:00
|
|
|
jpeg_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#endif //CONFIG_ENCODERS
|
2004-03-13 23:04:37 +00:00
|
|
|
ff_dv_init();
|
2003-05-25 05:18:30 +00:00
|
|
|
fourxm_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#ifdef CONFIG_ENCODERS
|
2003-07-09 23:10:59 +00:00
|
|
|
flvenc_init();
|
2003-10-14 04:15:53 +00:00
|
|
|
#endif //CONFIG_ENCODERS
|
2003-07-09 23:10:59 +00:00
|
|
|
flvdec_init();
|
2003-09-01 15:55:38 +00:00
|
|
|
str_init();
|
2003-09-02 04:32:02 +00:00
|
|
|
roq_init();
|
|
|
|
ipmovie_init();
|
2003-09-08 04:14:34 +00:00
|
|
|
wc3_init();
|
2003-10-01 04:39:38 +00:00
|
|
|
westwood_init();
|
|
|
|
film_init();
|
2003-10-03 05:43:03 +00:00
|
|
|
idcin_init();
|
2003-11-14 05:42:14 +00:00
|
|
|
flic_init();
|
2004-01-02 04:47:02 +00:00
|
|
|
vmd_init();
|
2003-01-11 05:02:14 +00:00
|
|
|
|
2003-09-28 20:34:11 +00:00
|
|
|
#if defined(AMR_NB) || defined(AMR_NB_FIXED) || defined(AMR_WB)
|
2003-06-05 14:30:52 +00:00
|
|
|
amr_init();
|
|
|
|
#endif
|
2003-08-05 09:32:31 +00:00
|
|
|
yuv4mpeg_init();
|
2002-10-08 17:58:36 +00:00
|
|
|
|
2002-09-01 18:07:56 +00:00
|
|
|
#ifdef CONFIG_VORBIS
|
|
|
|
ogg_init();
|
|
|
|
#endif
|
|
|
|
|
2002-07-25 16:03:55 +00:00
|
|
|
#ifndef CONFIG_WIN32
|
|
|
|
ffm_init();
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_VIDEO4LINUX
|
|
|
|
video_grab_init();
|
|
|
|
#endif
|
2002-11-05 00:38:06 +00:00
|
|
|
#if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
|
2002-07-25 16:03:55 +00:00
|
|
|
audio_init();
|
|
|
|
#endif
|
|
|
|
|
2003-01-22 22:40:52 +00:00
|
|
|
#ifdef CONFIG_DV1394
|
|
|
|
dv1394_init();
|
|
|
|
#endif
|
|
|
|
|
2004-10-22 02:04:30 +00:00
|
|
|
#ifdef CONFIG_DC1394
|
|
|
|
dc1394_init();
|
|
|
|
#endif
|
|
|
|
|
2003-09-05 18:45:32 +00:00
|
|
|
nut_init();
|
2004-03-11 16:26:42 +00:00
|
|
|
matroska_init();
|
2004-09-28 03:09:49 +00:00
|
|
|
sol_init();
|
2004-10-16 19:33:57 +00:00
|
|
|
ea_init();
|
2004-11-20 23:10:07 +00:00
|
|
|
nsvdec_init();
|
2003-09-05 18:45:32 +00:00
|
|
|
|
2003-10-14 04:15:53 +00:00
|
|
|
#ifdef CONFIG_ENCODERS
|
2003-01-11 05:02:14 +00:00
|
|
|
/* image formats */
|
2004-11-14 22:30:44 +00:00
|
|
|
#if 0
|
2003-01-11 05:02:14 +00: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 15:18:00 +00:00
|
|
|
av_register_image_format(&pam_image_format);
|
2003-01-11 05:02:14 +00:00
|
|
|
av_register_image_format(&pgmyuv_image_format);
|
2004-11-14 22:30:44 +00:00
|
|
|
#endif
|
2003-01-11 05:02:14 +00:00
|
|
|
av_register_image_format(&yuv_image_format);
|
2004-11-14 22:30:44 +00:00
|
|
|
#if 0
|
2003-02-27 17:32:56 +00:00
|
|
|
#ifdef CONFIG_ZLIB
|
2003-02-01 20:53:57 +00:00
|
|
|
av_register_image_format(&png_image_format);
|
2003-02-27 17:32:56 +00:00
|
|
|
#endif
|
2003-02-02 19:18:09 +00:00
|
|
|
av_register_image_format(&jpeg_image_format);
|
2004-11-14 22:30:44 +00:00
|
|
|
#endif
|
2003-02-03 22:53:10 +00:00
|
|
|
av_register_image_format(&gif_image_format);
|
2004-03-13 17:30:37 +00:00
|
|
|
av_register_image_format(&sgi_image_format);
|
2003-10-14 04:15:53 +00:00
|
|
|
#endif //CONFIG_ENCODERS
|
2003-01-11 05:02:14 +00:00
|
|
|
|
2002-07-25 16:03:55 +00: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
|
|
|
|
}
|