[FFmpeg-devel] [PATCH 14/22] ffserver.c: Add some logging contexts.
Stephan Holljes
klaxa1337 at googlemail.com
Fri Jun 1 01:24:07 EEST 2018
Signed-off-by: Stephan Holljes <klaxa1337 at googlemail.com>
---
ffserver.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/ffserver.c b/ffserver.c
index c6e8516..6f76c3e 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -224,14 +224,14 @@ void write_segment(struct Client *c)
avio_buffer = (unsigned char*) av_malloc(AV_BUFSIZE);
if (!avio_buffer) {
- av_log(NULL, AV_LOG_ERROR, "Could not allocate avio_buffer\n");
+ av_log(fmt_ctx, AV_LOG_ERROR, "Could not allocate avio_buffer\n");
avformat_free_context(fmt_ctx);
client_disconnect(c, 0);
return;
}
avio_ctx = avio_alloc_context(avio_buffer, AV_BUFSIZE, 0, &info, &segment_read, NULL, NULL);
if (!avio_ctx) {
- av_log(NULL, AV_LOG_ERROR, "Could not allocate avio_ctx\n");
+ av_log(fmt_ctx, AV_LOG_ERROR, "Could not allocate avio_ctx\n");
avformat_free_context(fmt_ctx);
av_free(avio_buffer);
client_disconnect(c, 0);
@@ -380,14 +380,14 @@ void *accept_thread(void *arg)
avio_buffer = av_malloc(AV_BUFSIZE);
if (!avio_buffer) {
- av_log(NULL, AV_LOG_ERROR, "Could not allocate output format context.\n");
+ av_log(client_ctx, AV_LOG_ERROR, "Could not allocate output format context.\n");
publisher_cancel_reserve(pub);
info->httpd->close(server, client);
continue;
}
ffinfo = av_malloc(sizeof(*ffinfo));
if (!ffinfo) {
- av_log(NULL, AV_LOG_ERROR, "Could not allocate FFServerInfo struct.\n");
+ av_log(client_ctx, AV_LOG_ERROR, "Could not allocate FFServerInfo struct.\n");
publisher_cancel_reserve(pub);
info->httpd->close(server, client);
continue;
--
2.16.2
More information about the ffmpeg-devel
mailing list