From 580a6c57a38513389f1fb81450784bc60cb69821 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Diego=20Petten=C3=B2?= Date: Thu, 1 May 2008 15:12:00 +0000 Subject: [PATCH] =?utf8?q?Mark=20symbols=20as=20static,=20patch=20by=20Die?= =?utf8?q?go=20'Flameeyes'=20Petten=C3=B2,=20flameeyes=20gmail=20com?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Originally committed as revision 13026 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 0cc339c20..733ff0d78 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -78,7 +78,7 @@ typedef struct AVMetaDataMap { int in_file; } AVMetaDataMap; -extern const OptionDef options[]; +static const OptionDef options[]; #define MAX_FILES 20 @@ -2427,7 +2427,7 @@ static void opt_frame_pad_right(const char *arg) } } -void list_pix_fmts(void) +static void list_pix_fmts(void) { int i; char pix_fmt_str[128]; @@ -3772,7 +3772,7 @@ static void opt_show_version(void) av_exit(0); } -const OptionDef options[] = { +static const OptionDef options[] = { /* main options */ { "L", 0, {(void*)opt_show_license}, "show license" }, { "h", 0, {(void*)opt_show_help}, "show help" }, -- 2.11.0