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/msvideo1.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libavcodec/msvideo1.c') diff --git a/libavcodec/msvideo1.c b/libavcodec/msvideo1.c index baac48a..3377ce8 100644 --- a/libavcodec/msvideo1.c +++ b/libavcodec/msvideo1.c @@ -36,7 +36,6 @@ #include #include "avcodec.h" -#include "dsputil.h" #define PALETTE_COUNT 256 #define CHECK_STREAM_PTR(n) \ @@ -49,7 +48,6 @@ typedef struct Msvideo1Context { AVCodecContext *avctx; - DSPContext dsp; AVFrame frame; const unsigned char *buf; @@ -74,8 +72,6 @@ static int msvideo1_decode_init(AVCodecContext *avctx) avctx->pix_fmt = PIX_FMT_RGB555; } - dsputil_init(&s->dsp, avctx); - s->frame.data[0] = NULL; return 0; -- cgit v1.1