diff alac.c @ 3071:cc0357a90e8f libavcodec

make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)
author aurel
date Sat, 28 Jan 2006 16:05:06 +0000
parents 0b546eab515d
children 41a01cea8885
line wrap: on
line diff
--- a/alac.c	Sat Jan 28 00:57:59 2006 +0000
+++ b/alac.c	Sat Jan 28 16:05:06 2006 +0000
@@ -84,7 +84,7 @@
     alac->outputsamples_buffer_b = av_malloc(alac->setinfo_max_samples_per_frame * 4);
 }
 
-void alac_set_info(ALACContext *alac)
+static void alac_set_info(ALACContext *alac)
 {
     unsigned char *ptr = alac->avctx->extradata;
 
@@ -125,7 +125,7 @@
     return i;
 }
 
-void bastardized_rice_decompress(ALACContext *alac,
+static void bastardized_rice_decompress(ALACContext *alac,
                                  int32_t *output_buffer,
                                  int output_size,
                                  int readsamplesize, /* arg_10 */