diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-24 23:36:17 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-25 00:02:41 +0000 |
commit | a6d1bd05c906fc7ad34fae1029a45ec3cbcc4fcc (patch) | |
tree | 995ff765bce0b7a5c74f22d3c8d5775b3ba9dfe8 | |
parent | f0a8676958c8e11c49cf9dd1127cb8937d2a7108 (diff) | |
download | ffmpeg-a6d1bd05c906fc7ad34fae1029a45ec3cbcc4fcc.tar.gz |
Make local variables static.
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -172,7 +172,7 @@ static int loop_output = AVFMT_NOOUTPUTLOOP; static int qp_hist = 0; #if CONFIG_AVFILTER static char *vfilters = NULL; -AVFilterGraph *graph = NULL; +static AVFilterGraph *graph = NULL; #endif static int intra_only = 0; @@ -251,7 +251,7 @@ static int64_t timer_start; static uint8_t *audio_buf; 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; |