Browse code

Make local variables static.

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit a6d1bd05c906fc7ad34fae1029a45ec3cbcc4fcc)

Diego Elio Pettenò authored on 2011/01/25 08:36:17
Showing 1 changed files
... ...
@@ -172,7 +172,7 @@ static int loop_output = AVFMT_NOOUTPUTLOOP;
172 172
 static int qp_hist = 0;
173 173
 #if CONFIG_AVFILTER
174 174
 static char *vfilters = NULL;
175
-AVFilterGraph *graph = NULL;
175
+static AVFilterGraph *graph = NULL;
176 176
 #endif
177 177
 
178 178
 static int intra_only = 0;
... ...
@@ -251,7 +251,7 @@ static int64_t timer_start;
251 251
 
252 252
 static uint8_t *audio_buf;
253 253
 static uint8_t *audio_out;
254
-unsigned int allocated_audio_out_size, allocated_audio_buf_size;
254
+static unsigned int allocated_audio_out_size, allocated_audio_buf_size;
255 255
 
256 256
 static short *samples;
257 257