summaryrefslogtreecommitdiff
path: root/libavcodec/nellymoserdec.c
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2008-05-01 15:20:57 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-01 15:20:57 +0000
commit53e85f5fa49f022eb4813ff7b4ce5804de1cb44b (patch)
treeeedc8d835ee20014f25eb86d894cd6eed628f87b /libavcodec/nellymoserdec.c
parent580a6c57a38513389f1fb81450784bc60cb69821 (diff)
Mark symbol as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com.
Originally committed as revision 13027 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/nellymoserdec.c')
-rw-r--r--libavcodec/nellymoserdec.c4
1 files changed, 3 insertions, 1 deletions
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];