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/msvideo1.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/msvideo1.c')
-rw-r--r-- | libavcodec/msvideo1.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/msvideo1.c b/libavcodec/msvideo1.c index baac48a851..3377ce8789 100644 --- a/libavcodec/msvideo1.c +++ b/libavcodec/msvideo1.c @@ -36,7 +36,6 @@ #include <unistd.h> #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; |