1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

diracdec: remove unused dsputil context

Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
James Almer
2014-07-15 19:10:09 -03:00
committed by Michael Niedermayer
parent e240d01c12
commit ad24256e7e

View File

@@ -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 {
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)
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);