From 94bfdfd6f05a3ccbf048a3ea70694247c2929053 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Thu, 2 Aug 2012 19:15:51 +0200 Subject: [PATCH] g723_1: increase excitation storage by 4 Fixed codebook mode in 5300 rate may write up to SUBFRAME_LEN + 4 and that is considered normal by the reference decoder. Without that additional padding it might overwrite first elements of LPC history. --- libavcodec/g723_1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c index 883c9498a4..0b59f81ff6 100644 --- a/libavcodec/g723_1.c +++ b/libavcodec/g723_1.c @@ -87,7 +87,7 @@ typedef struct g723_1_context { int16_t prev_lsp[LPC_ORDER]; int16_t prev_excitation[PITCH_MAX]; - int16_t excitation[PITCH_MAX + FRAME_LEN]; + int16_t excitation[PITCH_MAX + FRAME_LEN + 4]; int16_t synth_mem[LPC_ORDER]; int16_t fir_mem[LPC_ORDER]; int iir_mem[LPC_ORDER];