mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 12:40:01 +00:00
0147f19856
* Some BeOS fixes: - errno stuff - nanosleep() replacement - added a doc/README.beos * mov reader still has problems with most videos (skips many chunks), - It should now read .mov files with zlib-compressed moov headers (aka cmov) - added SVQ1 support. - removed mapping 'raw ' and 'yuv2' to h263, was my mistake. - added IMA4 support. (tested) - fixed frame rate (it reported 0 fps or something before) - extended file probing ('wide' and 'free' atoms) - improved .mov/.mp4 detection (or so I think) * adpcm * added zlib support, with header file and lib check Originally committed as revision 780 to svn://svn.ffmpeg.org/ffmpeg/trunk
100 lines
3.0 KiB
C
100 lines
3.0 KiB
C
/*
|
|
* Utils for libavcodec
|
|
* Copyright (c) 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 "avcodec.h"
|
|
|
|
/* If you do not call this function, then you can select exactly which
|
|
formats you want to support */
|
|
|
|
/**
|
|
* simple call to register all the codecs.
|
|
*/
|
|
void avcodec_register_all(void)
|
|
{
|
|
static int inited = 0;
|
|
|
|
if (inited != 0)
|
|
return;
|
|
inited = 1;
|
|
|
|
/* encoders */
|
|
#ifdef CONFIG_ENCODERS
|
|
register_avcodec(&ac3_encoder);
|
|
register_avcodec(&mp2_encoder);
|
|
#ifdef CONFIG_MP3LAME
|
|
register_avcodec(&mp3lame_encoder);
|
|
#endif
|
|
register_avcodec(&mpeg1video_encoder);
|
|
register_avcodec(&h263_encoder);
|
|
register_avcodec(&h263p_encoder);
|
|
register_avcodec(&rv10_encoder);
|
|
register_avcodec(&mjpeg_encoder);
|
|
register_avcodec(&mpeg4_encoder);
|
|
register_avcodec(&msmpeg4v1_encoder);
|
|
register_avcodec(&msmpeg4v2_encoder);
|
|
register_avcodec(&msmpeg4v3_encoder);
|
|
register_avcodec(&wmv1_encoder);
|
|
register_avcodec(&wmv2_encoder);
|
|
#endif /* CONFIG_ENCODERS */
|
|
register_avcodec(&rawvideo_codec);
|
|
|
|
/* decoders */
|
|
#ifdef CONFIG_DECODERS
|
|
register_avcodec(&h263_decoder);
|
|
register_avcodec(&mpeg4_decoder);
|
|
register_avcodec(&msmpeg4v1_decoder);
|
|
register_avcodec(&msmpeg4v2_decoder);
|
|
register_avcodec(&msmpeg4v3_decoder);
|
|
register_avcodec(&wmv1_decoder);
|
|
register_avcodec(&wmv2_decoder);
|
|
register_avcodec(&mpeg_decoder);
|
|
register_avcodec(&h263i_decoder);
|
|
register_avcodec(&rv10_decoder);
|
|
register_avcodec(&svq1_decoder);
|
|
register_avcodec(&mjpeg_decoder);
|
|
register_avcodec(&mp2_decoder);
|
|
register_avcodec(&mp3_decoder);
|
|
#ifdef CONFIG_AC3
|
|
register_avcodec(&ac3_decoder);
|
|
#endif
|
|
#endif /* CONFIG_DECODERS */
|
|
|
|
/* pcm codecs */
|
|
|
|
#define PCM_CODEC(id, name) \
|
|
register_avcodec(& name ## _encoder); \
|
|
register_avcodec(& name ## _decoder); \
|
|
|
|
PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le);
|
|
PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be);
|
|
PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le);
|
|
PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be);
|
|
PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8);
|
|
PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8);
|
|
PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw);
|
|
PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw);
|
|
|
|
/* adpcm codecs */
|
|
PCM_CODEC(CODEC_ID_ADPCM_IMA_QT, adpcm_ima_qt);
|
|
PCM_CODEC(CODEC_ID_ADPCM_IMA_WAV, adpcm_ima_wav);
|
|
PCM_CODEC(CODEC_ID_ADPCM_MS, adpcm_ms);
|
|
|
|
#undef PCM_CODEC
|
|
}
|
|
|