From 91c1567beb606d20ec05d86226d869922d7e7eda Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st>
Date: Thu, 4 Oct 2012 15:28:30 +0300
Subject: [PATCH] segment: Add comments about calls that only are relevant for
 some muxers
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Martin Storsjö <martin@martin.st>
---
 libavformat/segment.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/segment.c b/libavformat/segment.c
index 1e928a7ebf7..375df583967 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -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);
-- 
GitLab