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/qtrle.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/qtrle.c') diff --git a/libavcodec/qtrle.c b/libavcodec/qtrle.c index 84482bac7b..a0952039ce 100644 --- a/libavcodec/qtrle.c +++ b/libavcodec/qtrle.c @@ -37,12 +37,10 @@ #include #include "avcodec.h" -#include "dsputil.h" typedef struct QtrleContext { AVCodecContext *avctx; - DSPContext dsp; AVFrame frame; const unsigned char *buf; @@ -521,7 +519,6 @@ static int qtrle_decode_init(AVCodecContext *avctx) avctx->bits_per_sample); break; } - dsputil_init(&s->dsp, avctx); s->frame.data[0] = NULL; -- cgit v1.2.3