Commit 29cc1c23 authored by Benoit Fouet's avatar Benoit Fouet

Make globals static

Originally committed as revision 9433 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent dab57ec5
...@@ -204,12 +204,12 @@ static int dts_delta_threshold = 10; ...@@ -204,12 +204,12 @@ static int dts_delta_threshold = 10;
static int sws_flags = SWS_BICUBIC; static int sws_flags = SWS_BICUBIC;
const char **opt_names=NULL; static const char **opt_names;
int opt_name_count=0; static int opt_name_count;
AVCodecContext *avctx_opts[CODEC_TYPE_NB]; static AVCodecContext *avctx_opts[CODEC_TYPE_NB];
AVFormatContext *avformat_opts; static AVFormatContext *avformat_opts;
struct SwsContext *sws_opts; static struct SwsContext *sws_opts;
static int64_t timer_start = 0; static int64_t timer_start;
static AVBitStreamFilterContext *video_bitstream_filters=NULL; static AVBitStreamFilterContext *video_bitstream_filters=NULL;
static AVBitStreamFilterContext *audio_bitstream_filters=NULL; static AVBitStreamFilterContext *audio_bitstream_filters=NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment