diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-25 00:58:07 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-19 19:16:23 +0200 |
commit | 9cc38cc636badb675b2757fc665d9b8d2f28870f (patch) | |
tree | d484b92de50d42ed7d01844a6c591f497c7cd0e7 | |
parent | 6e5acb6c88e00335a60b235a45d49e03424046ac (diff) | |
download | ffmpeg-9cc38cc636badb675b2757fc665d9b8d2f28870f.tar.gz |
avcodec/mss2: Remove write-only QpelDSPContext
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/mss2.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mss2.c b/libavcodec/mss2.c index ab42d12217..228f66afc0 100644 --- a/libavcodec/mss2.c +++ b/libavcodec/mss2.c @@ -42,7 +42,6 @@ typedef struct MSS2Context { AVFrame *last_pic; MSS12Context c; MSS2DSPContext dsp; - QpelDSPContext qdsp; SliceContext sc[2]; } MSS2Context; @@ -837,7 +836,6 @@ static av_cold int mss2_decode_init(AVCodecContext *avctx) return ret; } ff_mss2dsp_init(&ctx->dsp); - ff_qpeldsp_init(&ctx->qdsp); avctx->pix_fmt = c->free_colours == 127 ? AV_PIX_FMT_RGB555 : AV_PIX_FMT_RGB24; |