Mercurial > libavcodec.hg
comparison allcodecs.c @ 1613:0279c6c61f11 libavcodec
new audio/video parser API
author | bellard |
---|---|
date | Mon, 10 Nov 2003 15:29:20 +0000 |
parents | b0fe2a0adf49 |
children | 721a76648a4b |
comparison
equal
deleted
inserted
replaced
1612:0d2b59cf9f45 | 1613:0279c6c61f11 |
---|---|
191 PCM_CODEC(CODEC_ID_ADPCM_4XM, adpcm_4xm); | 191 PCM_CODEC(CODEC_ID_ADPCM_4XM, adpcm_4xm); |
192 PCM_CODEC(CODEC_ID_ADPCM_XA, adpcm_xa); | 192 PCM_CODEC(CODEC_ID_ADPCM_XA, adpcm_xa); |
193 PCM_CODEC(CODEC_ID_ADPCM_ADX, adpcm_adx); | 193 PCM_CODEC(CODEC_ID_ADPCM_ADX, adpcm_adx); |
194 | 194 |
195 #undef PCM_CODEC | 195 #undef PCM_CODEC |
196 | |
197 /* parsers */ | |
198 av_register_codec_parser(&mpegvideo_parser); | |
199 av_register_codec_parser(&mpeg4video_parser); | |
200 av_register_codec_parser(&h263_parser); | |
201 av_register_codec_parser(&h264_parser); | |
202 | |
203 av_register_codec_parser(&mpegaudio_parser); | |
204 #ifdef CONFIG_AC3 | |
205 av_register_codec_parser(&ac3_parser); | |
206 #endif | |
196 } | 207 } |
197 | 208 |