Commit c4e87f7a authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13027 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent eac2c947
...@@ -264,7 +264,9 @@ static void get_sample_bits(const float *buf, int *bits) ...@@ -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; int i,j;
float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN]; 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