mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffserver: improve error feedback in case of write_header() failure
This commit is contained in:
parent
b133ec6244
commit
73b8730475
@ -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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user