diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2007-06-26 15:52:54 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-06-26 15:52:54 +0000 |
commit | 29cc1c23d14a4e708f5106e1703b4939a25c514b (patch) | |
tree | 05079ce1b6d5f4831bd245596e5b0b8470242963 /ffmpeg.c | |
parent | dab57ec5f07af1a408cdb0452513e5526c491d41 (diff) | |
download | ffmpeg-29cc1c23d14a4e708f5106e1703b4939a25c514b.tar.gz |
Make globals static
Originally committed as revision 9433 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -204,12 +204,12 @@ static int dts_delta_threshold = 10; static int sws_flags = SWS_BICUBIC; -const char **opt_names=NULL; -int opt_name_count=0; -AVCodecContext *avctx_opts[CODEC_TYPE_NB]; -AVFormatContext *avformat_opts; -struct SwsContext *sws_opts; -static int64_t timer_start = 0; +static const char **opt_names; +static int opt_name_count; +static AVCodecContext *avctx_opts[CODEC_TYPE_NB]; +static AVFormatContext *avformat_opts; +static struct SwsContext *sws_opts; +static int64_t timer_start; static AVBitStreamFilterContext *video_bitstream_filters=NULL; static AVBitStreamFilterContext *audio_bitstream_filters=NULL; |