mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mss2: Remove write-only QpelDSPContext
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
6e5acb6c88
commit
9cc38cc636
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue