# HG changeset patch # User diego # Date 1259229303 0 # Node ID f175e643acff51dafd264b53c182ff5d773c4fce # Parent ac49ab818d4db6fa537ff7d18c24608b9947fd68 Mark apply_mdct() function as static; it is only used within the file. diff -r ac49ab818d4d -r f175e643acff nellymoserenc.c --- a/nellymoserenc.c Thu Nov 26 00:33:19 2009 +0000 +++ b/nellymoserenc.c Thu Nov 26 09:55:03 2009 +0000 @@ -110,7 +110,7 @@ static const float quant_lut_add[7] = { 0.0, 0.0, 2.0, 7.0, 21.0, 56.0, 157.0 }; static const uint8_t quant_lut_offset[8] = { 0, 0, 1, 4, 11, 32, 81, 230 }; -void apply_mdct(NellyMoserEncodeContext *s) +static void apply_mdct(NellyMoserEncodeContext *s) { memcpy(s->in_buff, s->buf[s->bufsel], NELLY_BUF_LEN * sizeof(float)); s->dsp.vector_fmul(s->in_buff, ff_sine_128, NELLY_BUF_LEN);