diff options
author | Dieter <freebsd@sopwith.solgatos.com> | 2006-01-28 16:05:06 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-01-28 16:05:06 +0000 |
commit | 1b47fafd9fa21a5bdafa41848dfdccd36623ee6c (patch) | |
tree | 2e7c4e1b0ee932f700f6eae90e5bec13887071bd /libavcodec/alac.c | |
parent | fdb52bccf609b88f81d3730ff88f8f784cd7be8a (diff) | |
download | ffmpeg-1b47fafd9fa21a5bdafa41848dfdccd36623ee6c.tar.gz |
make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)
Originally committed as revision 4905 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r-- | libavcodec/alac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c index cda4867f88..21457ab23f 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -84,7 +84,7 @@ static void allocate_buffers(ALACContext *alac) 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 @@ static int count_leading_zeros(int32_t input) 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 */ |