dosbox native ZMBV decoder, courtesy of Kostya

Originally committed as revision 5000 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Mike Melanson
2006-02-12 08:53:29 +00:00
parent 4e114829b1
commit 9c8d8e84e0
7 changed files with 483 additions and 2 deletions

View File

@@ -21,8 +21,8 @@ extern "C" {
#define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s
#define LIBAVCODEC_VERSION_INT ((51<<16)+(2<<8)+0)
#define LIBAVCODEC_VERSION 51.2.0
#define LIBAVCODEC_VERSION_INT ((51<<16)+(4<<8)+0)
#define LIBAVCODEC_VERSION 51.4.0
#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
@@ -116,6 +116,7 @@ enum CodecID {
CODEC_ID_BMP,
CODEC_ID_CSCD,
CODEC_ID_MMVIDEO,
CODEC_ID_ZMBV,
/* various pcm "codecs" */
CODEC_ID_PCM_S16LE= 0x10000,
@@ -2228,6 +2229,7 @@ extern AVCodec libgsm_encoder;
extern AVCodec libgsm_decoder;
extern AVCodec bmp_decoder;
extern AVCodec mmvideo_decoder;
extern AVCodec zmbv_decoder;
/* pcm codecs */
#define PCM_CODEC(id, name) \