From 32c3047cac9294bb56d23c89a40a22409db5cc70 Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Mon, 10 Mar 2008 03:07:44 +0000 Subject: 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 --- libavcodec/vqavideo.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/vqavideo.c') diff --git a/libavcodec/vqavideo.c b/libavcodec/vqavideo.c index 8e70143f47..d2beb15d71 100644 --- a/libavcodec/vqavideo.c +++ b/libavcodec/vqavideo.c @@ -69,7 +69,6 @@ #include #include "avcodec.h" -#include "dsputil.h" #define PALETTE_COUNT 256 #define VQA_HEADER_SIZE 0x2A @@ -101,7 +100,6 @@ static inline void vqa_debug(const char *format, ...) { } typedef struct VqaContext { AVCodecContext *avctx; - DSPContext dsp; AVFrame frame; const unsigned char *buf; @@ -137,7 +135,6 @@ static int vqa_decode_init(AVCodecContext *avctx) s->avctx = avctx; avctx->pix_fmt = PIX_FMT_PAL8; - dsputil_init(&s->dsp, avctx); /* make sure the extradata made it */ if (s->avctx->extradata_size != VQA_HEADER_SIZE) { -- cgit v1.2.3