summaryrefslogtreecommitdiff
path: root/libavcodec/allcodecs.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-09-08 04:10:59 +0000
committerMike Melanson <mike@multimedia.cx>2003-09-08 04:10:59 +0000
commit9937e686fe86cc463577208d67431dabe74ad2ae (patch)
tree3ca4b5537f199c8f6c62a0e722793eaaf7cea286 /libavcodec/allcodecs.c
parent0a5f92a120118286961a28486cb2a1d96ca47627 (diff)
New fringe codecs: WC3/Xan video, Xan DPCM, DK3 & DK4 ADPCM
Originally committed as revision 2217 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r--libavcodec/allcodecs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index c687ecf5e2..4e792ba081 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -123,6 +123,7 @@ void avcodec_register_all(void)
register_avcodec(&mdec_decoder);
register_avcodec(&roq_decoder);
register_avcodec(&interplay_video_decoder);
+ register_avcodec(&xan_wc3_decoder);
#ifdef CONFIG_AC3
register_avcodec(&ac3_decoder);
#endif
@@ -130,6 +131,7 @@ void avcodec_register_all(void)
register_avcodec(&ra_288_decoder);
register_avcodec(&roq_dpcm_decoder);
register_avcodec(&interplay_dpcm_decoder);
+ register_avcodec(&xan_dpcm_decoder);
#endif /* CONFIG_DECODERS */
#ifdef AMR_NB
@@ -154,6 +156,8 @@ 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_IMA_DK3, adpcm_ima_dk3);
+PCM_CODEC(CODEC_ID_ADPCM_IMA_DK4, adpcm_ima_dk4);
PCM_CODEC(CODEC_ID_ADPCM_MS, adpcm_ms);
PCM_CODEC(CODEC_ID_ADPCM_4XM, adpcm_4xm);