[FFmpeg-cvslog] r20618 - trunk/libavcodec/nellymoserenc.c
diego
subversion
Thu Nov 26 10:55:03 CET 2009
Author: diego
Date: Thu Nov 26 10:55:03 2009
New Revision: 20618
Log:
Mark function only used within the file as static.
Modified:
trunk/libavcodec/nellymoserenc.c
Modified: trunk/libavcodec/nellymoserenc.c
==============================================================================
--- trunk/libavcodec/nellymoserenc.c Thu Nov 26 01:33:19 2009 (r20617)
+++ trunk/libavcodec/nellymoserenc.c Thu Nov 26 10:55:03 2009 (r20618)
@@ -110,7 +110,7 @@ static const float quant_lut_mul[7] = {
static const float quant_lut_add[7] = { 0.0, 0.0, 2.0, 7.0, 21.0, 56.0, 157.0 };
static const uint8_t quant_lut_offset[8] = { 0, 0, 1, 4, 11, 32, 81, 230 };
-void apply_mdct(NellyMoserEncodeContext *s)
+static void apply_mdct(NellyMoserEncodeContext *s)
{
memcpy(s->in_buff, s->buf[s->bufsel], NELLY_BUF_LEN * sizeof(float));
s->dsp.vector_fmul(s->in_buff, ff_sine_128, NELLY_BUF_LEN);
More information about the ffmpeg-cvslog
mailing list