summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2008-05-01 15:12:00 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-01 15:12:00 +0000
commit580a6c57a38513389f1fb81450784bc60cb69821 (patch)
treee422314631c4d005dc6ebfbb98e2174e36639573 /ffmpeg.c
parent358061f62fa4dd20ffc13f52f2c5e884450ee964 (diff)
Mark symbols as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com
Originally committed as revision 13026 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 0cc339c209..733ff0d782 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" },