From 53e85f5fa49f022eb4813ff7b4ce5804de1cb44b Mon Sep 17 00:00:00 2001 From: Diego Pettenò Date: Thu, 1 May 2008 15:20:57 +0000 Subject: Mark symbol as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 13027 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/nellymoserdec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libavcodec/nellymoserdec.c') diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index e1ec6e1fc0..37210cf42b 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -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]; -- cgit v1.2.3