Mark symbol as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com.

Originally committed as revision 13027 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Pettenò 2008-05-01 15:20:57 +00:00 committed by Diego Biurrun
parent 580a6c57a3
commit 53e85f5fa4

View File

@ -264,7 +264,9 @@ static void get_sample_bits(const float *buf, int *bits)
}
}
void nelly_decode_block(NellyMoserDecodeContext *s, const unsigned char block[NELLY_BLOCK_LEN], float audio[NELLY_SAMPLES])
static void nelly_decode_block(NellyMoserDecodeContext *s,
const unsigned char block[NELLY_BLOCK_LEN],
float audio[NELLY_SAMPLES])
{
int i,j;
float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN];