summaryrefslogtreecommitdiffstats
path: root/libavcodec/faac.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-11 20:54:48 +0000
committerMåns Rullgård <mans@mansr.com>2006-11-11 20:54:48 +0000
commit8e981daf2b0339643be1e2d3003faf6414e752d8 (patch)
treed9365ec9b6b34b529ef204b78896f6a17f1c9285 /libavcodec/faac.c
parent7b0d75fc400e97e8aae7c5b02f3b3294e25db09a (diff)
downloadffmpeg-streaming-8e981daf2b0339643be1e2d3003faf6414e752d8.zip
ffmpeg-streaming-8e981daf2b0339643be1e2d3003faf6414e752d8.tar.gz
make some symbols static
Originally committed as revision 6972 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/faac.c')
-rw-r--r--libavcodec/faac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/faac.c b/libavcodec/faac.c
index 2dcf29b..06e0b49 100644
--- a/libavcodec/faac.c
+++ b/libavcodec/faac.c
@@ -95,8 +95,8 @@ static int Faac_encode_init(AVCodecContext *avctx)
return 0;
}
-int Faac_encode_frame(AVCodecContext *avctx,
- unsigned char *frame, int buf_size, void *data)
+static int Faac_encode_frame(AVCodecContext *avctx,
+ unsigned char *frame, int buf_size, void *data)
{
FaacAudioContext *s = avctx->priv_data;
int bytes_written;
@@ -110,7 +110,7 @@ int Faac_encode_frame(AVCodecContext *avctx,
return bytes_written;
}
-int Faac_encode_close(AVCodecContext *avctx)
+static int Faac_encode_close(AVCodecContext *avctx)
{
FaacAudioContext *s = avctx->priv_data;
OpenPOWER on IntegriCloud