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