mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avcodec/svq3: add initialization which was removed from h264 init
This is needed for the svq3 code to work Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
14d241b19d
commit
e6c710600e
@ -893,6 +893,12 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
|
|||||||
if ((ret = ff_h264_decode_init(avctx)) < 0)
|
if ((ret = ff_h264_decode_init(avctx)) < 0)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
|
ff_h264dsp_init(&h->h264dsp, 8, 1);
|
||||||
|
av_assert0(h->sps.bit_depth_chroma == 0);
|
||||||
|
ff_h264_pred_init(&h->hpc, h->avctx->codec_id, 8, 1);
|
||||||
|
ff_videodsp_init(&h->vdsp, 8);
|
||||||
|
h->sps.bit_depth_luma = avctx->bits_per_raw_sample = 8;
|
||||||
|
|
||||||
ff_hpeldsp_init(&s->hdsp, avctx->flags);
|
ff_hpeldsp_init(&s->hdsp, avctx->flags);
|
||||||
ff_tpeldsp_init(&s->tdsp);
|
ff_tpeldsp_init(&s->tdsp);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user