changeset 6967:c3446faee506 libavcodec

Yet more variable renaming
author vitor
date Sun, 01 Jun 2008 13:30:15 +0000
parents 9eee8f8ff9e6
children 50dd3a733f43
files ra144.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ra144.c	Sun Jun 01 13:28:41 2008 +0000
+++ b/ra144.c	Sun Jun 01 13:30:15 2008 +0000
@@ -206,7 +206,7 @@
 
 /* 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 @@
     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)