comparison alac.c @ 3347:82277c821113 libavcodec

Add const to (mostly) char* and make some functions static, which aren't used outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org
author diego
date Sun, 18 Jun 2006 11:33:14 +0000
parents 68721b62a528
children c8c591fe26f8
comparison
equal deleted inserted replaced
3346:052765f11f1c 3347:82277c821113
405 buffer_out++; 405 buffer_out++;
406 } 406 }
407 } 407 }
408 } 408 }
409 409
410 void deinterlace_16(int32_t *buffer_a, int32_t *buffer_b, 410 static void deinterlace_16(int32_t *buffer_a, int32_t *buffer_b,
411 int16_t *buffer_out, 411 int16_t *buffer_out,
412 int numchannels, int numsamples, 412 int numchannels, int numsamples,
413 uint8_t interlacing_shift, 413 uint8_t interlacing_shift,
414 uint8_t interlacing_leftweight) 414 uint8_t interlacing_leftweight)
415 { 415 {