summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-21 03:29:59 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-21 03:29:59 +0000
commitb4befb99c20a6398c6d162cbb0dd87371a69db36 (patch)
treee943b8218354728c616b5534aff27dd881e6f3c7 /ffserver.c
parent0dc17c21ecb31831f3a1a89bbd400d3e1fb5b96d (diff)
use http_log when log file is setup
Originally committed as revision 13843 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/ffserver.c b/ffserver.c
index 864f150b1b..15b815f41a 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -378,7 +378,7 @@ static void start_children(FFStream *feed)
feed->pid = fork();
if (feed->pid < 0) {
- fprintf(stderr, "Unable to create children\n");
+ http_log("Unable to create children\n");
exit(1);
}
if (!feed->pid) {
@@ -486,8 +486,8 @@ static void start_multicast(void)
continue;
if (open_input_stream(rtp_c, "") < 0) {
- fprintf(stderr, "Could not open input stream for stream '%s'\n",
- stream->filename);
+ http_log("Could not open input stream for stream '%s'\n",
+ stream->filename);
continue;
}
@@ -497,8 +497,8 @@ static void start_multicast(void)
dest_addr.sin_port = htons(stream->multicast_port +
2 * stream_index);
if (rtp_new_av_stream(rtp_c, stream_index, &dest_addr, NULL) < 0) {
- fprintf(stderr, "Could not open output stream '%s/streamid=%d'\n",
- stream->filename, stream_index);
+ http_log("Could not open output stream '%s/streamid=%d'\n",
+ stream->filename, stream_index);
exit(1);
}
}
@@ -3463,8 +3463,8 @@ static void build_feed_streams(void)
/* only write the header of the ffm file */
if (url_fopen(&s->pb, feed->feed_filename, URL_WRONLY) < 0) {
- fprintf(stderr, "Could not open output feed file '%s'\n",
- feed->feed_filename);
+ http_log("Could not open output feed file '%s'\n",
+ feed->feed_filename);
exit(1);
}
s->oformat = feed->fmt;
@@ -3476,7 +3476,7 @@ static void build_feed_streams(void)
}
av_set_parameters(s, NULL);
if (av_write_header(s) < 0) {
- fprintf(stderr, "Container doesn't supports the required parameters\n");
+ http_log("Container doesn't supports the required parameters\n");
exit(1);
}
/* XXX: need better api */
@@ -3486,7 +3486,7 @@ static void build_feed_streams(void)
/* get feed size and write index */
fd = open(feed->feed_filename, O_RDONLY);
if (fd < 0) {
- fprintf(stderr, "Could not open output feed file '%s'\n",
+ http_log("Could not open output feed file '%s'\n",
feed->feed_filename);
exit(1);
}