[FFmpeg-cvslog] r13599 - trunk/libavcodec/ra144.c
vitor
subversion
Sun Jun 1 15:30:15 CEST 2008
Author: vitor
Date: Sun Jun 1 15:30:15 2008
New Revision: 13599
Log:
Yet more variable renaming
Modified:
trunk/libavcodec/ra144.c
Modified: trunk/libavcodec/ra144.c
==============================================================================
--- trunk/libavcodec/ra144.c (original)
+++ trunk/libavcodec/ra144.c Sun Jun 1 15:30:15 2008
@@ -206,7 +206,7 @@ static unsigned int rms(const int *data,
/* do quarter-block output */
static void do_output_subblock(RA144Context *ractx,
- const uint16_t *gsp, unsigned int gval,
+ const uint16_t *lpc_coefs, unsigned int gval,
int16_t *output_buffer, GetBitContext *gb)
{
uint16_t buffer_a[40];
@@ -236,7 +236,7 @@ static void do_output_subblock(RA144Cont
add_wav(gain, cba_idx, m, buffer_a, etable1[cb1_idx], etable2[cb2_idx],
block);
- final(gsp, block, output_buffer, ractx->buffer, BLOCKSIZE);
+ final(lpc_coefs, block, output_buffer, ractx->buffer, BLOCKSIZE);
}
static int dec1(int16_t *decsp, const int *data, const int *inp, int f)
More information about the ffmpeg-cvslog
mailing list