Commit 3bee286a authored by Stefano Sabatini's avatar Stefano Sabatini

lavf/segment: pass the top level chained muxer format context to segment_end()

Consistent with segment_start() and less confusing.
parent 91ce7c21
...@@ -89,15 +89,17 @@ fail: ...@@ -89,15 +89,17 @@ fail:
return err; return err;
} }
static int segment_end(AVFormatContext *oc) static int segment_end(AVFormatContext *s)
{ {
SegmentContext *seg = s->priv_data;
AVFormatContext *oc = seg->avf;
int ret = 0; int ret = 0;
if (oc->oformat->write_trailer) if (oc->oformat->write_trailer)
ret = oc->oformat->write_trailer(oc); ret = oc->oformat->write_trailer(oc);
if (ret < 0) if (ret < 0)
av_log(oc, AV_LOG_ERROR, "Failure occurred when ending segment '%s'\n", av_log(s, AV_LOG_ERROR, "Failure occurred when ending segment '%s'\n",
oc->filename); oc->filename);
avio_close(oc->pb); avio_close(oc->pb);
...@@ -204,7 +206,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -204,7 +206,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
av_log(s, AV_LOG_DEBUG, "Next segment starts at %d %"PRId64"\n", av_log(s, AV_LOG_DEBUG, "Next segment starts at %d %"PRId64"\n",
pkt->stream_index, pkt->pts); pkt->stream_index, pkt->pts);
ret = segment_end(oc); ret = segment_end(s);
if (!ret) if (!ret)
ret = segment_start(s); ret = segment_start(s);
...@@ -242,7 +244,7 @@ static int seg_write_trailer(struct AVFormatContext *s) ...@@ -242,7 +244,7 @@ static int seg_write_trailer(struct AVFormatContext *s)
{ {
SegmentContext *seg = s->priv_data; SegmentContext *seg = s->priv_data;
AVFormatContext *oc = seg->avf; AVFormatContext *oc = seg->avf;
int ret = segment_end(oc); int ret = segment_end(s);
if (seg->list) if (seg->list)
avio_close(seg->pb); avio_close(seg->pb);
oc->streams = NULL; oc->streams = NULL;
......
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