diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-05-01 15:20:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-01 15:20:57 +0000 |
commit | 53e85f5fa49f022eb4813ff7b4ce5804de1cb44b (patch) | |
tree | eedc8d835ee20014f25eb86d894cd6eed628f87b | |
parent | 580a6c57a38513389f1fb81450784bc60cb69821 (diff) | |
download | ffmpeg-53e85f5fa49f022eb4813ff7b4ce5804de1cb44b.tar.gz |
Mark symbol as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com.
Originally committed as revision 13027 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/nellymoserdec.c | 4 |
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]; |