diff mp3lameaudio.c @ 4170:f97a2081b5b1 libavcodec

make some symbols static
author mru
date Sat, 11 Nov 2006 20:54:48 +0000
parents 85438e10d72d
children bff60ecc02f9
line wrap: on
line diff
--- a/mp3lameaudio.c	Sat Nov 11 19:46:53 2006 +0000
+++ b/mp3lameaudio.c	Sat Nov 11 20:54:48 2006 +0000
@@ -135,8 +135,8 @@
     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 @@
             return 0;
 }
 
-int MP3lame_encode_close(AVCodecContext *avctx)
+static int MP3lame_encode_close(AVCodecContext *avctx)
 {
     Mp3AudioContext *s = avctx->priv_data;