Commit ad24256e authored by James Almer's avatar James Almer Committed by Michael Niedermayer

diracdec: remove unused dsputil context

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e240d01c
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
*/ */
#include "avcodec.h" #include "avcodec.h"
#include "dsputil.h"
#include "get_bits.h" #include "get_bits.h"
#include "bytestream.h" #include "bytestream.h"
#include "internal.h" #include "internal.h"
...@@ -138,7 +137,6 @@ typedef struct Plane { ...@@ -138,7 +137,6 @@ typedef struct Plane {
typedef struct DiracContext { typedef struct DiracContext {
AVCodecContext *avctx; AVCodecContext *avctx;
DSPContext dsp;
MpegvideoEncDSPContext mpvencdsp; MpegvideoEncDSPContext mpvencdsp;
DiracDSPContext diracdsp; DiracDSPContext diracdsp;
GetBitContext gb; GetBitContext gb;
...@@ -425,7 +423,6 @@ static av_cold int dirac_decode_init(AVCodecContext *avctx) ...@@ -425,7 +423,6 @@ static av_cold int dirac_decode_init(AVCodecContext *avctx)
s->avctx = avctx; s->avctx = avctx;
s->frame_number = -1; s->frame_number = -1;
ff_dsputil_init(&s->dsp, avctx);
ff_diracdsp_init(&s->diracdsp); ff_diracdsp_init(&s->diracdsp);
ff_mpegvideoencdsp_init(&s->mpvencdsp, avctx); ff_mpegvideoencdsp_init(&s->mpvencdsp, avctx);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment