1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-02 09:09:59 +02:00

ffserver: improve error feedback in case of write_header() failure

This commit is contained in:
Stefano Sabatini 2013-11-29 12:10:20 +01:00
parent b133ec6244
commit 73b8730475

View File

@ -2321,9 +2321,10 @@ static int http_prepare_data(HTTPContext *c)
*/ */
c->fmt_ctx.max_delay = (int)(0.7*AV_TIME_BASE); c->fmt_ctx.max_delay = (int)(0.7*AV_TIME_BASE);
if (avformat_write_header(&c->fmt_ctx, NULL) < 0) { if ((ret = avformat_write_header(&c->fmt_ctx, NULL)) < 0) {
http_log("Error writing output header\n"); http_log("Error writing output header for stream '%s': %s\n",
return -1; c->stream->filename, av_err2str(ret));
return ret;
} }
av_dict_free(&c->fmt_ctx.metadata); av_dict_free(&c->fmt_ctx.metadata);