diff rpza.c @ 6484:814c8bd77d91 libavcodec

These video decoders do not need to include and initialize the DSP support functions.
author melanson
date Mon, 10 Mar 2008 03:07:44 +0000
parents 8705a4d4904f
children 48759bfbd073
line wrap: on
line diff
--- a/rpza.c	Mon Mar 10 03:07:15 2008 +0000
+++ b/rpza.c	Mon Mar 10 03:07:44 2008 +0000
@@ -40,12 +40,10 @@
 #include <unistd.h>
 
 #include "avcodec.h"
-#include "dsputil.h"
 
 typedef struct RpzaContext {
 
     AVCodecContext *avctx;
-    DSPContext dsp;
     AVFrame frame;
 
     const unsigned char *buf;
@@ -234,7 +232,6 @@
 
     s->avctx = avctx;
     avctx->pix_fmt = PIX_FMT_RGB555;
-    dsputil_init(&s->dsp, avctx);
 
     s->frame.data[0] = NULL;