Skip to content
Snippets Groups Projects
Commit 91c1567b authored by Martin Storsjö's avatar Martin Storsjö
Browse files

segment: Add comments about calls that only are relevant for some muxers

parent c864c396
No related branches found
No related tags found
No related merge requests found
...@@ -98,7 +98,7 @@ static int segment_start(AVFormatContext *s, int write_header) ...@@ -98,7 +98,7 @@ static int segment_start(AVFormatContext *s, int write_header)
return err; return err;
if (oc->oformat->priv_class && oc->priv_data) 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 (write_header) {
if ((err = avformat_write_header(oc, NULL)) < 0) if ((err = avformat_write_header(oc, NULL)) < 0)
...@@ -112,7 +112,7 @@ static int segment_end(AVFormatContext *oc, int write_trailer) ...@@ -112,7 +112,7 @@ static int segment_end(AVFormatContext *oc, int write_trailer)
{ {
int ret = 0; 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) if (write_trailer)
av_write_trailer(oc); av_write_trailer(oc);
avio_close(oc->pb); avio_close(oc->pb);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment