diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-02-10 21:52:45 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-10 21:52:45 +0100 |
commit | 8f92edf6f86c1cfef16fe15a75bbea80f48e6df3 (patch) | |
tree | 95b3c7f1aaa6d3209cfc11da91f5e48479aa9579 /libavcodec/ra144enc.c | |
parent | c3390fd56cf55259ea7665ecea6c8aeddf56e2fc (diff) | |
download | ffmpeg-8f92edf6f86c1cfef16fe15a75bbea80f48e6df3.tar.gz |
avcodec/ra144: remove redundant AV_ZERO128
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ra144enc.c')
-rw-r--r-- | libavcodec/ra144enc.c | 1 |
1 files changed, 0 insertions, 1 deletions
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, |