diff 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
line wrap: on
line diff
--- a/alac.c	Sat Jun 17 18:46:06 2006 +0000
+++ b/alac.c	Sun Jun 18 11:33:14 2006 +0000
@@ -407,7 +407,7 @@
     }
 }
 
-void deinterlace_16(int32_t *buffer_a, int32_t *buffer_b,
+static void deinterlace_16(int32_t *buffer_a, int32_t *buffer_b,
                     int16_t *buffer_out,
                     int numchannels, int numsamples,
                     uint8_t interlacing_shift,