diff --git a/libavcodec/ra144dec.c b/libavcodec/ra144dec.c index 03ab9f58c4..ab7cc68306 100644 --- a/libavcodec/ra144dec.c +++ b/libavcodec/ra144dec.c @@ -39,8 +39,6 @@ static av_cold int ra144_decode_init(AVCodecContext * avctx) ractx->lpc_coef[0] = ractx->lpc_tables[0]; ractx->lpc_coef[1] = ractx->lpc_tables[1]; - AV_ZERO128(ractx->buffer_a+BLOCKSIZE); - avctx->channels = 1; avctx->channel_layout = AV_CH_LAYOUT_MONO; avctx->sample_fmt = AV_SAMPLE_FMT_S16; diff --git a/libavcodec/ra144enc.c b/libavcodec/ra144enc.c index 71f206fda3..0db6032615 100644 --- a/libavcodec/ra144enc.c +++ b/libavcodec/ra144enc.c @@ -60,7 +60,6 @@ static av_cold int ra144_encode_init(AVCodecContext * avctx) ractx = avctx->priv_data; ractx->lpc_coef[0] = ractx->lpc_tables[0]; ractx->lpc_coef[1] = ractx->lpc_tables[1]; - AV_ZERO128(ractx->buffer_a+BLOCKSIZE); ractx->avctx = avctx; ff_dsputil_init(&ractx->dsp, avctx); ret = ff_lpc_init(&ractx->lpc_ctx, avctx->frame_size, LPC_ORDER,