[Ffmpeg-devel] [PATCH] part 1 - portability fixes (ILP32 vs LP64)
Dieter
freebsd
Fri Jan 27 11:18:26 CET 2006
Split up into small pieces in hopes of getting at least
some small improvements checked in.
Diffs for file: libavcodec/alac.c
===================================================================
RCS file: RCS/alac.c,v
retrieving revision 1.1
diff -u -r1.1 alac.c
--- alac.c 2006/01/26 21:20:29 1.1
+++ alac.c 2006/01/26 21:21:18
@@ -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 */
More information about the ffmpeg-devel
mailing list