Commit eac2c947 authored by diego's avatar diego

Mark symbols as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13026 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4cff38d7
...@@ -78,7 +78,7 @@ typedef struct AVMetaDataMap { ...@@ -78,7 +78,7 @@ typedef struct AVMetaDataMap {
int in_file; int in_file;
} AVMetaDataMap; } AVMetaDataMap;
extern const OptionDef options[]; static const OptionDef options[];
#define MAX_FILES 20 #define MAX_FILES 20
...@@ -2427,7 +2427,7 @@ static void opt_frame_pad_right(const char *arg) ...@@ -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; int i;
char pix_fmt_str[128]; char pix_fmt_str[128];
...@@ -3772,7 +3772,7 @@ static void opt_show_version(void) ...@@ -3772,7 +3772,7 @@ static void opt_show_version(void)
av_exit(0); av_exit(0);
} }
const OptionDef options[] = { static const OptionDef options[] = {
/* main options */ /* main options */
{ "L", 0, {(void*)opt_show_license}, "show license" }, { "L", 0, {(void*)opt_show_license}, "show license" },
{ "h", 0, {(void*)opt_show_help}, "show help" }, { "h", 0, {(void*)opt_show_help}, "show help" },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment