Commit 0692d4c8 authored by Stefano Sabatini's avatar Stefano Sabatini

lavf/segment: add some debugging logs

parent 567eb9d3
......@@ -81,6 +81,8 @@ static int segment_start(AVFormatContext *s)
return 0;
fail:
av_log(oc, AV_LOG_ERROR, "Failure occurred when starting segment '%s'\n",
oc->filename);
avio_close(oc->pb);
av_freep(&oc->priv_data);
......@@ -94,6 +96,10 @@ static int segment_end(AVFormatContext *oc)
if (oc->oformat->write_trailer)
ret = oc->oformat->write_trailer(oc);
if (ret < 0)
av_log(oc, AV_LOG_ERROR, "Failure occurred when ending segment '%s'\n",
oc->filename);
avio_close(oc->pb);
if (oc->oformat->priv_class)
av_opt_free(oc->priv_data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment