[FFmpeg-cvslog] r13954 - trunk/ffserver.c
stefano
subversion
Tue Jun 24 23:35:27 CEST 2008
Author: stefano
Date: Tue Jun 24 23:35:27 2008
New Revision: 13954
Log:
Use http_log() rather than printing on stdout to show the launched
commandlines.
Modified:
trunk/ffserver.c
Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c (original)
+++ trunk/ffserver.c Tue Jun 24 23:35:27 2008
@@ -417,11 +417,11 @@ static void start_children(FFStream *fee
strcpy(slash, "ffmpeg");
if (ffserver_debug) {
- fprintf(stdout, "Launch commandline: ");
- fprintf(stdout, "%s ", pathname);
+ http_log("Launch commandline: ");
+ http_log("%s ", pathname);
for (i = 1; feed->child_argv[i] && feed->child_argv[i][0]; i++)
- fprintf(stdout, "%s ", feed->child_argv[i]);
- fprintf(stdout, "\n");
+ http_log("%s ", feed->child_argv[i]);
+ http_log("\n");
}
for (i = 3; i < 256; i++)
More information about the ffmpeg-cvslog
mailing list