changeset 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 4c47bb2a0c8b
children 08bdfd7f3ab4
files nellymoserdec.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
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];