diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2004-03-24 23:32:48 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2004-03-24 23:32:48 +0000 |
commit | 7906085fcc33feb5a0c617f5e01065bb9d0caa86 (patch) | |
tree | 830c3feb8c2c6333c5581ab5ae54d06ff267cc7d /libavformat/mpeg.c | |
parent | d957696f173ab3c9f222ab097669ed8f0b3951c2 (diff) | |
download | ffmpeg-7906085fcc33feb5a0c617f5e01065bb9d0caa86.tar.gz |
warning patrol
Originally committed as revision 2925 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r-- | libavformat/mpeg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index a5cd8dfae1..092790c69a 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -82,10 +82,10 @@ typedef struct { static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 }; #ifdef CONFIG_ENCODERS -extern AVOutputFormat mpeg1system_mux; -extern AVOutputFormat mpeg1vcd_mux; -extern AVOutputFormat mpeg2vob_mux; -extern AVOutputFormat mpeg2svcd_mux; +static AVOutputFormat mpeg1system_mux; +static AVOutputFormat mpeg1vcd_mux; +static AVOutputFormat mpeg2vob_mux; +static AVOutputFormat mpeg2svcd_mux; static int put_pack_header(AVFormatContext *ctx, uint8_t *buf, int64_t timestamp) |