comparison 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
comparison
equal deleted inserted replaced
6724:4c47bb2a0c8b 6725:dc6bc48b0e17
262 for(; i < NELLY_FILL_LEN; i++) 262 for(; i < NELLY_FILL_LEN; i++)
263 bits[i] = 0; 263 bits[i] = 0;
264 } 264 }
265 } 265 }
266 266
267 void nelly_decode_block(NellyMoserDecodeContext *s, const unsigned char block[NELLY_BLOCK_LEN], float audio[NELLY_SAMPLES]) 267 static void nelly_decode_block(NellyMoserDecodeContext *s,
268 const unsigned char block[NELLY_BLOCK_LEN],
269 float audio[NELLY_SAMPLES])
268 { 270 {
269 int i,j; 271 int i,j;
270 float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN]; 272 float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN];
271 float *aptr, *bptr, *pptr, val, pval; 273 float *aptr, *bptr, *pptr, val, pval;
272 int bits[NELLY_BUF_LEN]; 274 int bits[NELLY_BUF_LEN];