summaryrefslogtreecommitdiff
path: root/libavcodec/atrac1.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-06 22:36:41 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-06 22:36:41 +0000
commitda0ac0ee641904622c42ffbd18d4b7bb1522b1a0 (patch)
tree89668bff6bf8dace48be6661f1e0594c4bcbf779 /libavcodec/atrac1.c
parentc26e58e32cf430f060209e0d6088181f4426b3ce (diff)
Make some functions static
These functions are not used outside their respective files, and they lack a prototype in a header. Originally committed as revision 22259 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/atrac1.c')
-rw-r--r--libavcodec/atrac1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c
index dfdd9744a2..4954dd8bb5 100644
--- a/libavcodec/atrac1.c
+++ b/libavcodec/atrac1.c
@@ -252,7 +252,7 @@ static int at1_unpack_dequant(GetBitContext* gb, AT1SUCtx* su,
}
-void at1_subband_synthesis(AT1Ctx *q, AT1SUCtx* su, float *pOut)
+static void at1_subband_synthesis(AT1Ctx *q, AT1SUCtx* su, float *pOut)
{
float temp[256];
float iqmf_temp[512 + 46];