From f10d55ed88a1a2c96b10b80f969f8f9e5f77ffe3 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 25 Jun 2008 18:51:54 +0000 Subject: move logfile setup right after config parsing Originally committed as revision 13974 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'ffserver.c') diff --git a/ffserver.c b/ffserver.c index 59a0b99b32..c449a7f2fd 100644 --- a/ffserver.c +++ b/ffserver.c @@ -4480,6 +4480,15 @@ int main(int argc, char **argv) exit(1); } + /* open log file if needed */ + if (logfilename[0] != '\0') { + if (!strcmp(logfilename, "-")) + logfile = stderr; + else + logfile = fopen(logfilename, "a"); + av_log_set_callback(http_av_log); + } + build_file_streams(); build_feed_streams(); @@ -4514,15 +4523,6 @@ int main(int argc, char **argv) /* signal init */ signal(SIGPIPE, SIG_IGN); - /* open log file if needed */ - if (logfilename[0] != '\0') { - if (!strcmp(logfilename, "-")) - logfile = stderr; - else - logfile = fopen(logfilename, "a"); - av_log_set_callback(http_av_log); - } - if (ffserver_daemon) chdir("/"); -- cgit v1.2.3