Mercurial > libavcodec.hg
comparison allcodecs.c @ 2756:d8874c8749ec libavcodec
subtitle codec type support
| author | bellard |
|---|---|
| date | Fri, 03 Jun 2005 13:59:38 +0000 |
| parents | 26bf6f4e9945 |
| children | ed1ab1566353 |
comparison
equal
deleted
inserted
replaced
| 2755:975074f04b95 | 2756:d8874c8749ec |
|---|---|
| 549 PCM_CODEC(CODEC_ID_ADPCM_CT, adpcm_ct); | 549 PCM_CODEC(CODEC_ID_ADPCM_CT, adpcm_ct); |
| 550 PCM_CODEC(CODEC_ID_ADPCM_SWF, adpcm_swf); | 550 PCM_CODEC(CODEC_ID_ADPCM_SWF, adpcm_swf); |
| 551 | 551 |
| 552 #undef PCM_CODEC | 552 #undef PCM_CODEC |
| 553 | 553 |
| 554 /* subtitles */ | |
| 555 register_avcodec(&dvdsub_decoder); | |
| 556 register_avcodec(&dvbsub_encoder); | |
| 557 | |
| 554 /* parsers */ | 558 /* parsers */ |
| 555 av_register_codec_parser(&mpegvideo_parser); | 559 av_register_codec_parser(&mpegvideo_parser); |
| 556 av_register_codec_parser(&mpeg4video_parser); | 560 av_register_codec_parser(&mpeg4video_parser); |
| 557 #if defined(CONFIG_H261_DECODER) || defined(CONFIG_H261_ENCODER) | 561 #if defined(CONFIG_H261_DECODER) || defined(CONFIG_H261_ENCODER) |
| 558 av_register_codec_parser(&h261_parser); | 562 av_register_codec_parser(&h261_parser); |
| 566 | 570 |
| 567 av_register_codec_parser(&mpegaudio_parser); | 571 av_register_codec_parser(&mpegaudio_parser); |
| 568 #ifdef CONFIG_AC3 | 572 #ifdef CONFIG_AC3 |
| 569 av_register_codec_parser(&ac3_parser); | 573 av_register_codec_parser(&ac3_parser); |
| 570 #endif | 574 #endif |
| 575 av_register_codec_parser(&dvdsub_parser); | |
| 571 } | 576 } |
| 572 | 577 |
