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/idcinvideo.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/idcinvideo.c') diff --git a/libavcodec/idcinvideo.c b/libavcodec/idcinvideo.c index 79ed6fb170..a65648df0a 100644 --- a/libavcodec/idcinvideo.c +++ b/libavcodec/idcinvideo.c @@ -50,7 +50,6 @@ #include #include "avcodec.h" -#include "dsputil.h" #define HUFFMAN_TABLE_SIZE 64 * 1024 #define HUF_TOKENS 256 @@ -66,7 +65,6 @@ typedef struct typedef struct IdcinContext { AVCodecContext *avctx; - DSPContext dsp; AVFrame frame; const unsigned char *buf; @@ -153,7 +151,6 @@ static int idcin_decode_init(AVCodecContext *avctx) s->avctx = avctx; avctx->pix_fmt = PIX_FMT_PAL8; - dsputil_init(&s->dsp, avctx); /* make sure the Huffman tables make it */ if (s->avctx->extradata_size != HUFFMAN_TABLE_SIZE) { -- cgit v1.2.3