diff nellymoserdec.c @ 6725:dc6bc48b0e17 libavcodec

Mark symbol as static, patch by Diego 'Flameeyes' Petten, flameeyes gmail com.
author diego
date Thu, 01 May 2008 15:20:57 +0000
parents a4104482ceef
children 998990a4cccd
line wrap: on
line diff
--- a/nellymoserdec.c	Wed Apr 30 16:33:58 2008 +0000
+++ b/nellymoserdec.c	Thu May 01 15:20:57 2008 +0000
@@ -264,7 +264,9 @@
     }
 }
 
-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];