Commit 53e85f5f authored by Diego Pettenò's avatar Diego Pettenò Committed by Diego Biurrun

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

Originally committed as revision 13027 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 580a6c57
......@@ -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];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment