From 5c91a6755b6412c918e20ff4735ca30f38a12569 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 10 Feb 2003 09:35:32 +0000 Subject: * static,const,compiler warning cleanup Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegaudio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/mpegaudio.c') diff --git a/libavcodec/mpegaudio.c b/libavcodec/mpegaudio.c index 28329ded4b..dbf7a4b3da 100644 --- a/libavcodec/mpegaudio.c +++ b/libavcodec/mpegaudio.c @@ -54,7 +54,7 @@ typedef struct MpegAudioContext { #include "mpegaudiotab.h" -int MPA_encode_init(AVCodecContext *avctx) +static int MPA_encode_init(AVCodecContext *avctx) { MpegAudioContext *s = avctx->priv_data; int freq = avctx->sample_rate; @@ -737,8 +737,8 @@ static void encode_frame(MpegAudioContext *s, flush_put_bits(p); } -int MPA_encode_frame(AVCodecContext *avctx, - unsigned char *frame, int buf_size, void *data) +static int MPA_encode_frame(AVCodecContext *avctx, + unsigned char *frame, int buf_size, void *data) { MpegAudioContext *s = avctx->priv_data; short *samples = data; -- cgit v1.2.3