summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-07 05:12:07 +0000
committerods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-07 05:12:07 +0000
commit5cba0a4078c5535f2d9ef142bc23d6660ade4ed9 (patch)
tree63f01898558e113b3791b586dcb2d35baaaf0776 /mencoder.c
parent17a576b53d9e300a62acdb0019b0d33ba04e146b (diff)
downloadmpv-5cba0a4078c5535f2d9ef142bc23d6660ade4ed9.tar.bz2
mpv-5cba0a4078c5535f2d9ef142bc23d6660ade4ed9.tar.xz
Some more cola for msglevel, codec-cfg can't even call mp_msg_init or it'll
print bogus stuff. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17121 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mencoder.c b/mencoder.c
index ec27dacc25..63d7dc129f 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -129,7 +129,7 @@ int out_file_format=MUXER_TYPE_AVI; // default to AVI
//void skip_audio_frame(sh_audio_t *sh_audio){}
//void resync_audio_stream(sh_audio_t *sh_audio){}
-int verbose=0; // must be global!
+extern int verbose; // must be global!
int identify=0;
int quiet=0;
double video_time_usage=0;
@@ -140,8 +140,8 @@ double cur_video_time_usage=0;
double cur_vout_time_usage=0;
int benchmark=0;
-int mp_msg_levels[MSGT_MAX]; // inited to -2
-int mp_msg_level_all = MSGL_STATUS;
+extern int mp_msg_levels[MSGT_MAX];
+extern int mp_msg_level_all;
#ifdef WIN32
char * proc_priority=NULL;