]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Mark symbol as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com.
authordiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 1 May 2008 15:20:57 +0000 (15:20 +0000)
committerdiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 1 May 2008 15:20:57 +0000 (15:20 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13027 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/nellymoserdec.c

index e1ec6e1fc03bfb59e15e17a3a3be3eeff43bf9b2..37210cf42b23cdf84c8c624c6ff44d4d50cdad86 100644 (file)
@@ -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];