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/mp3lameaudio.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/mp3lameaudio.c')
-rw-r--r-- | libavcodec/mp3lameaudio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mp3lameaudio.c b/libavcodec/mp3lameaudio.c index e4806e758a..d133502657 100644 --- a/libavcodec/mp3lameaudio.c +++ b/libavcodec/mp3lameaudio.c @@ -135,8 +135,8 @@ static int mp3len(void *data, int *samplesPerFrame, int *sampleRate) return *samplesPerFrame * bitRate / (bitsPerSlot * *sampleRate) + isPadded; } -int MP3lame_encode_frame(AVCodecContext *avctx, - unsigned char *frame, int buf_size, void *data) +static int MP3lame_encode_frame(AVCodecContext *avctx, + unsigned char *frame, int buf_size, void *data) { Mp3AudioContext *s = avctx->priv_data; int len; @@ -198,7 +198,7 @@ int MP3lame_encode_frame(AVCodecContext *avctx, return 0; } -int MP3lame_encode_close(AVCodecContext *avctx) +static int MP3lame_encode_close(AVCodecContext *avctx) { Mp3AudioContext *s = avctx->priv_data; |