[FFmpeg-cvslog] lavf/segment: pass the top level chained muxer format context to segment_end()

Stefano Sabatini git at videolan.org
Sun Jul 1 18:38:27 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Fri Jan 13 23:24:13 2012 +0100| [3bee286ad280059e5aaf07d8f8a45f61964d5d79] | committer: Stefano Sabatini

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

Consistent with segment_start() and less confusing.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3bee286ad280059e5aaf07d8f8a45f61964d5d79
---

 libavformat/segment.c |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/libavformat/segment.c b/libavformat/segment.c
index da23626..4480e4d 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -89,15 +89,17 @@ fail:
     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;
 
     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",
+        av_log(s, AV_LOG_ERROR, "Failure occurred when ending segment '%s'\n",
                oc->filename);
 
     avio_close(oc->pb);
@@ -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",
                pkt->stream_index, pkt->pts);
 
-        ret = segment_end(oc);
+        ret = segment_end(s);
 
         if (!ret)
             ret = segment_start(s);
@@ -242,7 +244,7 @@ static int seg_write_trailer(struct AVFormatContext *s)
 {
     SegmentContext *seg = s->priv_data;
     AVFormatContext *oc = seg->avf;
-    int ret = segment_end(oc);
+    int ret = segment_end(s);
     if (seg->list)
         avio_close(seg->pb);
     oc->streams = NULL;



More information about the ffmpeg-cvslog mailing list