diff options
author | Mike Melanson <mike@multimedia.cx> | 2006-02-12 08:53:29 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2006-02-12 08:53:29 +0000 |
commit | 9c8d8e84e0f4534d58be6b66f6ec1eef51e1d89c (patch) | |
tree | 04088d086300e11fcbbfcc94a0b0db6986a76e39 /libavcodec/allcodecs.c | |
parent | 4e114829b1d03ce4714c45f5d8628d46cc873cc0 (diff) | |
download | ffmpeg-9c8d8e84e0f4534d58be6b66f6ec1eef51e1d89c.tar.gz |
dosbox native ZMBV decoder, courtesy of Kostya
Originally committed as revision 5000 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 89ff990c55..f3238f2874 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -444,6 +444,9 @@ void avcodec_register_all(void) #ifdef CONFIG_ZLIB_DECODER register_avcodec(&zlib_decoder); #endif //CONFIG_ZLIB_DECODER +#ifdef CONFIG_ZMBV_DECODER + register_avcodec(&zmbv_decoder); +#endif //CONFIG_ZMBV_DECODER #ifdef CONFIG_SONIC_DECODER register_avcodec(&sonic_decoder); #endif //CONFIG_SONIC_DECODER |