summaryrefslogtreecommitdiffstats
path: root/libavcodec/g723_1.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-08-11 20:19:39 +0100
committerMans Rullgard <mans@mansr.com>2012-08-13 01:03:25 +0100
commitcbcf1b411fac6aabf731e14e4f48bca3d956f868 (patch)
treed8f2f6bdbfcf5f6131467fbd83ecba2ceeb7987e /libavcodec/g723_1.c
parent35b533e4dede0b1abe3ddbe927c893819006ee75 (diff)
downloadffmpeg-streaming-cbcf1b411fac6aabf731e14e4f48bca3d956f868.zip
ffmpeg-streaming-cbcf1b411fac6aabf731e14e4f48bca3d956f868.tar.gz
g723.1: declare a variable in the block it is used
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/g723_1.c')
-rw-r--r--libavcodec/g723_1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c
index c0cea19..657c144 100644
--- a/libavcodec/g723_1.c
+++ b/libavcodec/g723_1.c
@@ -1006,7 +1006,6 @@ static int g723_1_decode_frame(AVCodecContext *avctx, void *data,
int16_t cur_lsp[LPC_ORDER];
int16_t lpc[SUBFRAMES * LPC_ORDER];
int16_t acb_vector[SUBFRAME_LEN];
- int16_t *vector_ptr;
int16_t *out;
int bad_frame = 0, i, j, ret;
int16_t *audio = p->audio;
@@ -1051,8 +1050,9 @@ static int g723_1_decode_frame(AVCodecContext *avctx, void *data,
/* Generate the excitation for the frame */
memcpy(p->excitation, p->prev_excitation,
PITCH_MAX * sizeof(*p->excitation));
- vector_ptr = p->excitation + PITCH_MAX;
if (!p->erased_frames) {
+ int16_t *vector_ptr = p->excitation + PITCH_MAX;
+
/* Update interpolation gain memory */
p->interp_gain = fixed_cb_gain[(p->subframe[2].amp_index +
p->subframe[3].amp_index) >> 1];
OpenPOWER on IntegriCloud