diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-04-07 16:59:57 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-04-07 16:59:57 +0000 |
commit | fd7b1991999d0dca96ee8fbd2f6a5f218accc6ae (patch) | |
tree | 308799f65af772c14962d2955283bc62ba917f05 /libavcodec/allcodecs.c | |
parent | a01e08ee5c1bff665133885fb680472ab0702a12 (diff) | |
download | ffmpeg-fd7b1991999d0dca96ee8fbd2f6a5f218accc6ae.tar.gz |
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
Originally committed as revision 5273 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 92af677c4f..69df8178e3 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -289,6 +289,9 @@ void avcodec_register_all(void) #ifdef CONFIG_LOCO_DECODER register_avcodec(&loco_decoder); #endif //CONFIG_LOCO_DECODER +#ifdef CONFIG_KMVC_DECODER + register_avcodec(&kmvc_decoder); +#endif //CONFIG_KMVC_DECODER #ifdef CONFIG_WNV1_DECODER register_avcodec(&wnv1_decoder); #endif //CONFIG_WNV1_DECODER |