diff options
author | Mike Melanson <mike@multimedia.cx> | 2008-03-10 03:07:44 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2008-03-10 03:07:44 +0000 |
commit | 32c3047cac9294bb56d23c89a40a22409db5cc70 (patch) | |
tree | 1fbe55a04642f1be708937e3632aa62e803ed103 /libavcodec/vmdav.c | |
parent | d61af67aa14222093f29adf6bed31ae5ef6bbbb1 (diff) | |
download | ffmpeg-32c3047cac9294bb56d23c89a40a22409db5cc70.tar.gz |
These video decoders do not need to include and initialize the DSP
support functions.
Originally committed as revision 12406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vmdav.c')
-rw-r--r-- | libavcodec/vmdav.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/vmdav.c b/libavcodec/vmdav.c index d39ae91e39..4c632621a8 100644 --- a/libavcodec/vmdav.c +++ b/libavcodec/vmdav.c @@ -45,7 +45,6 @@ #include <unistd.h> #include "avcodec.h" -#include "dsputil.h" #define VMD_HEADER_SIZE 0x330 #define PALETTE_COUNT 256 @@ -57,7 +56,6 @@ typedef struct VmdVideoContext { AVCodecContext *avctx; - DSPContext dsp; AVFrame frame; AVFrame prev_frame; @@ -336,7 +334,6 @@ static int vmdvideo_decode_init(AVCodecContext *avctx) s->avctx = avctx; avctx->pix_fmt = PIX_FMT_PAL8; - dsputil_init(&s->dsp, avctx); /* make sure the VMD header made it */ if (s->avctx->extradata_size != VMD_HEADER_SIZE) { |