]> git.sesse.net Git - ffmpeg/commitdiff
segment: Add comments about calls that only are relevant for some muxers
authorMartin Storsjö <martin@martin.st>
Thu, 4 Oct 2012 12:28:30 +0000 (15:28 +0300)
committerMartin Storsjö <martin@martin.st>
Thu, 4 Oct 2012 15:22:47 +0000 (18:22 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/segment.c

index 1e928a7ebf7e772a4436fc84dfeba199d1f4cef9..375df583967da892310b407ebee0284cbd261e6b 100644 (file)
@@ -98,7 +98,7 @@ static int segment_start(AVFormatContext *s, int write_header)
         return err;
 
     if (oc->oformat->priv_class && oc->priv_data)
-        av_opt_set(oc->priv_data, "resend_headers", "1", 0);
+        av_opt_set(oc->priv_data, "resend_headers", "1", 0); /* mpegts specific */
 
     if (write_header) {
         if ((err = avformat_write_header(oc, NULL)) < 0)
@@ -112,7 +112,7 @@ static int segment_end(AVFormatContext *oc, int write_trailer)
 {
     int ret = 0;
 
-    av_write_frame(oc, NULL); /* Flush any buffered data */
+    av_write_frame(oc, NULL); /* Flush any buffered data (fragmented mp4) */
     if (write_trailer)
         av_write_trailer(oc);
     avio_close(oc->pb);