mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
Make local variables static.
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
f0a8676958
commit
a6d1bd05c9
4
ffmpeg.c
4
ffmpeg.c
@ -172,7 +172,7 @@ static int loop_output = AVFMT_NOOUTPUTLOOP;
|
|||||||
static int qp_hist = 0;
|
static int qp_hist = 0;
|
||||||
#if CONFIG_AVFILTER
|
#if CONFIG_AVFILTER
|
||||||
static char *vfilters = NULL;
|
static char *vfilters = NULL;
|
||||||
AVFilterGraph *graph = NULL;
|
static AVFilterGraph *graph = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int intra_only = 0;
|
static int intra_only = 0;
|
||||||
@ -251,7 +251,7 @@ static int64_t timer_start;
|
|||||||
|
|
||||||
static uint8_t *audio_buf;
|
static uint8_t *audio_buf;
|
||||||
static uint8_t *audio_out;
|
static uint8_t *audio_out;
|
||||||
unsigned int allocated_audio_out_size, allocated_audio_buf_size;
|
static unsigned int allocated_audio_out_size, allocated_audio_buf_size;
|
||||||
|
|
||||||
static short *samples;
|
static short *samples;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user