diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-11 20:54:48 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-11 20:54:48 +0000 |
commit | 8e981daf2b0339643be1e2d3003faf6414e752d8 (patch) | |
tree | d9365ec9b6b34b529ef204b78896f6a17f1c9285 /libavcodec/faac.c | |
parent | 7b0d75fc400e97e8aae7c5b02f3b3294e25db09a (diff) | |
download | ffmpeg-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/faac.c b/libavcodec/faac.c index 2dcf29b3f7..06e0b49207 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; |