comparison ra288.c @ 7439:deea146537af libavcodec

Cosmetics: align comments
author vitor
date Mon, 28 Jul 2008 05:16:51 +0000
parents d9d070ff46bf
children 0ca4275b5c6f
comparison
equal deleted inserted replaced
7438:d9d070ff46bf 7439:deea146537af
23 #define ALT_BITSTREAM_READER_LE 23 #define ALT_BITSTREAM_READER_LE
24 #include "bitstream.h" 24 #include "bitstream.h"
25 #include "ra288.h" 25 #include "ra288.h"
26 26
27 typedef struct { 27 typedef struct {
28 float sp_lpc[36]; ///< LPC coefficients for speech data (spec: A) 28 float sp_lpc[36]; ///< LPC coefficients for speech data (spec: A)
29 float gain_lpc[10]; ///< LPC coefficients for gain (spec: GB) 29 float gain_lpc[10]; ///< LPC coefficients for gain (spec: GB)
30 int phase; 30 int phase;
31 31
32 float sp_hist[111]; ///< Speech data history (spec: SB) 32 float sp_hist[111]; ///< Speech data history (spec: SB)
33 33
34 /** Speech part of the gain autocorrelation (spec: REXP) */ 34 /** Speech part of the gain autocorrelation (spec: REXP) */
35 float sp_rec[37]; 35 float sp_rec[37];
36 36
37 float gain_hist[38]; ///< Log-gain history (spec: SBLG) 37 float gain_hist[38]; ///< Log-gain history (spec: SBLG)