mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Make globals static
Originally committed as revision 9433 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dab57ec5f0
commit
29cc1c23d1
12
ffmpeg.c
12
ffmpeg.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user