diff roqvideodec.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 de5d97b6c25b
children 48759bfbd073
line wrap: on
line diff
--- a/roqvideodec.c	Mon Mar 10 03:07:15 2008 +0000
+++ b/roqvideodec.c	Mon Mar 10 03:07:44 2008 +0000
@@ -32,7 +32,6 @@
 
 #include "avcodec.h"
 #include "bytestream.h"
-#include "dsputil.h"
 #include "roqvideo.h"
 
 static void roqvideo_decode_frame(RoqContext *ri)
@@ -164,7 +163,6 @@
     s->last_frame    = &s->frames[0];
     s->current_frame = &s->frames[1];
     avctx->pix_fmt = PIX_FMT_YUV444P;
-    dsputil_init(&s->dsp, avctx);
 
     return 0;
 }