Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-02-11 00:52:45 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-02-11 00:52:45 +0400
commit8f92edf6f86c1cfef16fe15a75bbea80f48e6df3 (patch)
tree95b3c7f1aaa6d3209cfc11da91f5e48479aa9579 /libavcodec/ra144dec.c
parentc3390fd56cf55259ea7665ecea6c8aeddf56e2fc (diff)
avcodec/ra144: remove redundant AV_ZERO128
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ra144dec.c')
-rw-r--r--libavcodec/ra144dec.c2
1 files changed, 0 insertions, 2 deletions
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;