summaryrefslogtreecommitdiff
path: root/libavcodec/ac3enc.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-14 03:12:29 +0000
committerMåns Rullgård <mans@mansr.com>2006-11-14 03:12:29 +0000
commitbe6ed6fff4cace79a2c17094ad716bc0944a4274 (patch)
tree7f152718973ecd354ebd9cde2bfc16ad9ed37c23 /libavcodec/ac3enc.c
parent8233b75041c4fca97dd71087ba888576be86a0f9 (diff)
move some CFLAGS settings away from config.* writing section
Originally committed as revision 7043 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3enc.c')
-rw-r--r--libavcodec/ac3enc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index bac703c101..15c7e552e5 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -119,6 +119,7 @@ static inline int calc_lowcomp(int a, int b0, int b1, int bin)
/* AC3 bit allocation. The algorithm is the one described in the AC3
spec. */
+static
void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
int8_t *exp, int start, int end,
int snroffset, int fgain, int is_lfe,
@@ -794,7 +795,7 @@ static int compute_bit_allocation(AC3EncodeContext *s,
return 0;
}
-void ac3_common_init(void)
+static void ac3_common_init(void)
{
int i, j, k, l, v;
/* compute bndtab and masktab from bandsz */