Browse code

diracdec: remove unused dsputil context

Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

James Almer authored on 2014/07/16 07:10:09
Showing 1 changed files
... ...
@@ -27,7 +27,6 @@
27 27
  */
28 28
 
29 29
 #include "avcodec.h"
30
-#include "dsputil.h"
31 30
 #include "get_bits.h"
32 31
 #include "bytestream.h"
33 32
 #include "internal.h"
... ...
@@ -138,7 +137,6 @@ typedef struct Plane {
138 138
 
139 139
 typedef struct DiracContext {
140 140
     AVCodecContext *avctx;
141
-    DSPContext dsp;
142 141
     MpegvideoEncDSPContext mpvencdsp;
143 142
     DiracDSPContext diracdsp;
144 143
     GetBitContext gb;
... ...
@@ -425,7 +423,6 @@ static av_cold int dirac_decode_init(AVCodecContext *avctx)
425 425
     s->avctx = avctx;
426 426
     s->frame_number = -1;
427 427
 
428
-    ff_dsputil_init(&s->dsp, avctx);
429 428
     ff_diracdsp_init(&s->diracdsp);
430 429
     ff_mpegvideoencdsp_init(&s->mpvencdsp, avctx);
431 430