]> git.sesse.net Git - ffmpeg/blob - libavformat/dashenc.c
9a8dde98e90f643a9e2070c1d440014c034abe6d
[ffmpeg] / libavformat / dashenc.c
1 /*
2  * MPEG-DASH ISO BMFF segmenter
3  * Copyright (c) 2014 Martin Storsjo
4  * Copyright (c) 2018 Akamai Technologies, Inc.
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "config.h"
24 #if HAVE_UNISTD_H
25 #include <unistd.h>
26 #endif
27
28 #include "libavutil/avassert.h"
29 #include "libavutil/avutil.h"
30 #include "libavutil/avstring.h"
31 #include "libavutil/intreadwrite.h"
32 #include "libavutil/mathematics.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/parseutils.h"
35 #include "libavutil/rational.h"
36 #include "libavutil/time.h"
37 #include "libavutil/time_internal.h"
38
39 #include "av1.h"
40 #include "avc.h"
41 #include "avformat.h"
42 #include "avio_internal.h"
43 #include "hlsplaylist.h"
44 #if CONFIG_HTTP_PROTOCOL
45 #include "http.h"
46 #endif
47 #include "internal.h"
48 #include "isom.h"
49 #include "os_support.h"
50 #include "url.h"
51 #include "vpcc.h"
52 #include "dash.h"
53
54 typedef enum {
55     SEGMENT_TYPE_AUTO = 0,
56     SEGMENT_TYPE_MP4,
57     SEGMENT_TYPE_WEBM,
58     SEGMENT_TYPE_NB
59 } SegmentType;
60
61 enum {
62     FRAG_TYPE_NONE = 0,
63     FRAG_TYPE_EVERY_FRAME,
64     FRAG_TYPE_DURATION,
65     FRAG_TYPE_PFRAMES,
66     FRAG_TYPE_NB
67 };
68
69 #define MPD_PROFILE_DASH 1
70 #define MPD_PROFILE_DVB  2
71
72 typedef struct Segment {
73     char file[1024];
74     int64_t start_pos;
75     int range_length, index_length;
76     int64_t time;
77     double prog_date_time;
78     int64_t duration;
79     int n;
80 } Segment;
81
82 typedef struct AdaptationSet {
83     char id[10];
84     char *descriptor;
85     int64_t seg_duration;
86     int64_t frag_duration;
87     int frag_type;
88     enum AVMediaType media_type;
89     AVDictionary *metadata;
90     AVRational min_frame_rate, max_frame_rate;
91     int ambiguous_frame_rate;
92     int64_t max_frag_duration;
93     int max_width, max_height;
94     int nb_streams;
95     AVRational par;
96 } AdaptationSet;
97
98 typedef struct OutputStream {
99     AVFormatContext *ctx;
100     int ctx_inited, as_idx;
101     AVIOContext *out;
102     AVCodecParserContext *parser;
103     AVCodecContext *parser_avctx;
104     int packets_written;
105     char initfile[1024];
106     int64_t init_start_pos, pos;
107     int init_range_length;
108     int nb_segments, segments_size, segment_index;
109     int64_t seg_duration;
110     int64_t frag_duration;
111     int64_t last_duration;
112     Segment **segments;
113     int64_t first_pts, start_pts, max_pts;
114     int64_t last_dts, last_pts;
115     int last_flags;
116     int bit_rate;
117     SegmentType segment_type;  /* segment type selected for this particular stream */
118     const char *format_name;
119     const char *extension_name;
120     const char *single_file_name;  /* file names selected for this particular stream */
121     const char *init_seg_name;
122     const char *media_seg_name;
123
124     char codec_str[100];
125     int written_len;
126     char filename[1024];
127     char full_path[1024];
128     char temp_path[1024];
129     double availability_time_offset;
130     int64_t producer_reference_time;
131     char producer_reference_time_str[100];
132     int total_pkt_size;
133     int64_t total_pkt_duration;
134     int muxer_overhead;
135     int frag_type;
136     int64_t gop_size;
137     AVRational sar;
138 } OutputStream;
139
140 typedef struct DASHContext {
141     const AVClass *class;  /* Class for private options. */
142     char *adaptation_sets;
143     AdaptationSet *as;
144     int nb_as;
145     int window_size;
146     int extra_window_size;
147 #if FF_API_DASH_MIN_SEG_DURATION
148     int min_seg_duration;
149 #endif
150     int64_t seg_duration;
151     int64_t frag_duration;
152     int remove_at_exit;
153     int use_template;
154     int use_timeline;
155     int single_file;
156     OutputStream *streams;
157     int has_video;
158     int64_t last_duration;
159     int64_t total_duration;
160     char availability_start_time[100];
161     time_t start_time_s;
162     int64_t presentation_time_offset;
163     char dirname[1024];
164     const char *single_file_name;  /* file names as specified in options */
165     const char *init_seg_name;
166     const char *media_seg_name;
167     const char *utc_timing_url;
168     const char *method;
169     const char *user_agent;
170     AVDictionary *http_opts;
171     int hls_playlist;
172     int http_persistent;
173     int master_playlist_created;
174     AVIOContext *mpd_out;
175     AVIOContext *m3u8_out;
176     int streaming;
177     int64_t timeout;
178     int index_correction;
179     AVDictionary *format_options;
180     int global_sidx;
181     SegmentType segment_type_option;  /* segment type as specified in options */
182     int ignore_io_errors;
183     int lhls;
184     int ldash;
185     int master_publish_rate;
186     int nr_of_streams_to_flush;
187     int nr_of_streams_flushed;
188     int frag_type;
189     int write_prft;
190     int64_t max_gop_size;
191     int profile;
192     int64_t target_latency;
193     int target_latency_refid;
194 } DASHContext;
195
196 static struct codec_string {
197     int id;
198     const char *str;
199 } codecs[] = {
200     { AV_CODEC_ID_VP8, "vp8" },
201     { AV_CODEC_ID_VP9, "vp9" },
202     { AV_CODEC_ID_VORBIS, "vorbis" },
203     { AV_CODEC_ID_OPUS, "opus" },
204     { AV_CODEC_ID_FLAC, "flac" },
205     { 0, NULL }
206 };
207
208 static struct format_string {
209     SegmentType segment_type;
210     const char *str;
211 } formats[] = {
212     { SEGMENT_TYPE_AUTO, "auto" },
213     { SEGMENT_TYPE_MP4, "mp4" },
214     { SEGMENT_TYPE_WEBM, "webm" },
215     { 0, NULL }
216 };
217
218 static int dashenc_io_open(AVFormatContext *s, AVIOContext **pb, char *filename,
219                            AVDictionary **options) {
220     DASHContext *c = s->priv_data;
221     int http_base_proto = filename ? ff_is_http_proto(filename) : 0;
222     int err = AVERROR_MUXER_NOT_FOUND;
223     if (!*pb || !http_base_proto || !c->http_persistent) {
224         err = s->io_open(s, pb, filename, AVIO_FLAG_WRITE, options);
225 #if CONFIG_HTTP_PROTOCOL
226     } else {
227         URLContext *http_url_context = ffio_geturlcontext(*pb);
228         av_assert0(http_url_context);
229         err = ff_http_do_new_request(http_url_context, filename);
230         if (err < 0)
231             ff_format_io_close(s, pb);
232 #endif
233     }
234     return err;
235 }
236
237 static void dashenc_io_close(AVFormatContext *s, AVIOContext **pb, char *filename) {
238     DASHContext *c = s->priv_data;
239     int http_base_proto = filename ? ff_is_http_proto(filename) : 0;
240
241     if (!*pb)
242         return;
243
244     if (!http_base_proto || !c->http_persistent) {
245         ff_format_io_close(s, pb);
246 #if CONFIG_HTTP_PROTOCOL
247     } else {
248         URLContext *http_url_context = ffio_geturlcontext(*pb);
249         av_assert0(http_url_context);
250         avio_flush(*pb);
251         ffurl_shutdown(http_url_context, AVIO_FLAG_WRITE);
252 #endif
253     }
254 }
255
256 static const char *get_format_str(SegmentType segment_type) {
257     int i;
258     for (i = 0; i < SEGMENT_TYPE_NB; i++)
259         if (formats[i].segment_type == segment_type)
260             return formats[i].str;
261     return NULL;
262 }
263
264 static const char *get_extension_str(SegmentType type, int single_file)
265 {
266     switch (type) {
267
268     case SEGMENT_TYPE_MP4:  return single_file ? "mp4" : "m4s";
269     case SEGMENT_TYPE_WEBM: return "webm";
270     default: return NULL;
271     }
272 }
273
274 static int handle_io_open_error(AVFormatContext *s, int err, char *url) {
275     DASHContext *c = s->priv_data;
276     char errbuf[AV_ERROR_MAX_STRING_SIZE];
277     av_strerror(err, errbuf, sizeof(errbuf));
278     av_log(s, c->ignore_io_errors ? AV_LOG_WARNING : AV_LOG_ERROR,
279            "Unable to open %s for writing: %s\n", url, errbuf);
280     return c->ignore_io_errors ? 0 : err;
281 }
282
283 static inline SegmentType select_segment_type(SegmentType segment_type, enum AVCodecID codec_id)
284 {
285     if (segment_type == SEGMENT_TYPE_AUTO) {
286         if (codec_id == AV_CODEC_ID_OPUS || codec_id == AV_CODEC_ID_VORBIS ||
287             codec_id == AV_CODEC_ID_VP8 || codec_id == AV_CODEC_ID_VP9) {
288             segment_type = SEGMENT_TYPE_WEBM;
289         } else {
290             segment_type = SEGMENT_TYPE_MP4;
291         }
292     }
293
294     return segment_type;
295 }
296
297 static int init_segment_types(AVFormatContext *s)
298 {
299     DASHContext *c = s->priv_data;
300     int has_mp4_streams = 0;
301     for (int i = 0; i < s->nb_streams; ++i) {
302         OutputStream *os = &c->streams[i];
303         SegmentType segment_type = select_segment_type(
304             c->segment_type_option, s->streams[i]->codecpar->codec_id);
305         os->segment_type = segment_type;
306         os->format_name = get_format_str(segment_type);
307         if (!os->format_name) {
308             av_log(s, AV_LOG_ERROR, "Could not select DASH segment type for stream %d\n", i);
309             return AVERROR_MUXER_NOT_FOUND;
310         }
311         os->extension_name = get_extension_str(segment_type, c->single_file);
312         if (!os->extension_name) {
313             av_log(s, AV_LOG_ERROR, "Could not get extension type for stream %d\n", i);
314             return AVERROR_MUXER_NOT_FOUND;
315         }
316
317         has_mp4_streams |= segment_type == SEGMENT_TYPE_MP4;
318     }
319
320     if (c->hls_playlist && !has_mp4_streams) {
321          av_log(s, AV_LOG_WARNING, "No mp4 streams, disabling HLS manifest generation\n");
322          c->hls_playlist = 0;
323     }
324
325     return 0;
326 }
327
328 static int check_file_extension(const char *filename, const char *extension) {
329     char *dot;
330     if (!filename || !extension)
331         return -1;
332     dot = strrchr(filename, '.');
333     if (dot && !strcmp(dot + 1, extension))
334         return 0;
335     return -1;
336 }
337
338 static void set_vp9_codec_str(AVFormatContext *s, AVCodecParameters *par,
339                               AVRational *frame_rate, char *str, int size) {
340     VPCC vpcc;
341     int ret = ff_isom_get_vpcc_features(s, par, frame_rate, &vpcc);
342     if (ret == 0) {
343         av_strlcatf(str, size, "vp09.%02d.%02d.%02d",
344                     vpcc.profile, vpcc.level, vpcc.bitdepth);
345     } else {
346         // Default to just vp9 in case of error while finding out profile or level
347         av_log(s, AV_LOG_WARNING, "Could not find VP9 profile and/or level\n");
348         av_strlcpy(str, "vp9", size);
349     }
350     return;
351 }
352
353 static void set_codec_str(AVFormatContext *s, AVCodecParameters *par,
354                           AVRational *frame_rate, char *str, int size)
355 {
356     const AVCodecTag *tags[2] = { NULL, NULL };
357     uint32_t tag;
358     int i;
359
360     // common Webm codecs are not part of RFC 6381
361     for (i = 0; codecs[i].id; i++)
362         if (codecs[i].id == par->codec_id) {
363             if (codecs[i].id == AV_CODEC_ID_VP9) {
364                 set_vp9_codec_str(s, par, frame_rate, str, size);
365             } else {
366                 av_strlcpy(str, codecs[i].str, size);
367             }
368             return;
369         }
370
371     // for codecs part of RFC 6381
372     if (par->codec_type == AVMEDIA_TYPE_VIDEO)
373         tags[0] = ff_codec_movvideo_tags;
374     else if (par->codec_type == AVMEDIA_TYPE_AUDIO)
375         tags[0] = ff_codec_movaudio_tags;
376     else
377         return;
378
379     tag = par->codec_tag;
380     if (!tag)
381         tag = av_codec_get_tag(tags, par->codec_id);
382     if (!tag)
383         return;
384     if (size < 5)
385         return;
386
387     AV_WL32(str, tag);
388     str[4] = '\0';
389     if (!strcmp(str, "mp4a") || !strcmp(str, "mp4v")) {
390         uint32_t oti;
391         tags[0] = ff_mp4_obj_type;
392         oti = av_codec_get_tag(tags, par->codec_id);
393         if (oti)
394             av_strlcatf(str, size, ".%02"PRIx32, oti);
395         else
396             return;
397
398         if (tag == MKTAG('m', 'p', '4', 'a')) {
399             if (par->extradata_size >= 2) {
400                 int aot = par->extradata[0] >> 3;
401                 if (aot == 31)
402                     aot = ((AV_RB16(par->extradata) >> 5) & 0x3f) + 32;
403                 av_strlcatf(str, size, ".%d", aot);
404             }
405         } else if (tag == MKTAG('m', 'p', '4', 'v')) {
406             // Unimplemented, should output ProfileLevelIndication as a decimal number
407             av_log(s, AV_LOG_WARNING, "Incomplete RFC 6381 codec string for mp4v\n");
408         }
409     } else if (!strcmp(str, "avc1")) {
410         uint8_t *tmpbuf = NULL;
411         uint8_t *extradata = par->extradata;
412         int extradata_size = par->extradata_size;
413         if (!extradata_size)
414             return;
415         if (extradata[0] != 1) {
416             AVIOContext *pb;
417             if (avio_open_dyn_buf(&pb) < 0)
418                 return;
419             if (ff_isom_write_avcc(pb, extradata, extradata_size) < 0) {
420                 ffio_free_dyn_buf(&pb);
421                 return;
422             }
423             extradata_size = avio_close_dyn_buf(pb, &extradata);
424             tmpbuf = extradata;
425         }
426
427         if (extradata_size >= 4)
428             av_strlcatf(str, size, ".%02x%02x%02x",
429                         extradata[1], extradata[2], extradata[3]);
430         av_free(tmpbuf);
431     } else if (!strcmp(str, "av01")) {
432         AV1SequenceParameters seq;
433         if (!par->extradata_size)
434             return;
435         if (ff_av1_parse_seq_header(&seq, par->extradata, par->extradata_size) < 0)
436             return;
437
438         av_strlcatf(str, size, ".%01u.%02u%s.%02u",
439                     seq.profile, seq.level, seq.tier ? "H" : "M", seq.bitdepth);
440         if (seq.color_description_present_flag)
441             av_strlcatf(str, size, ".%01u.%01u%01u%01u.%02u.%02u.%02u.%01u",
442                         seq.monochrome,
443                         seq.chroma_subsampling_x, seq.chroma_subsampling_y, seq.chroma_sample_position,
444                         seq.color_primaries, seq.transfer_characteristics, seq.matrix_coefficients,
445                         seq.color_range);
446     }
447 }
448
449 static int flush_dynbuf(DASHContext *c, OutputStream *os, int *range_length)
450 {
451     uint8_t *buffer;
452
453     if (!os->ctx->pb) {
454         return AVERROR(EINVAL);
455     }
456
457     // flush
458     av_write_frame(os->ctx, NULL);
459     avio_flush(os->ctx->pb);
460
461     if (!c->single_file) {
462         // write out to file
463         *range_length = avio_close_dyn_buf(os->ctx->pb, &buffer);
464         os->ctx->pb = NULL;
465         if (os->out)
466             avio_write(os->out, buffer + os->written_len, *range_length - os->written_len);
467         os->written_len = 0;
468         av_free(buffer);
469
470         // re-open buffer
471         return avio_open_dyn_buf(&os->ctx->pb);
472     } else {
473         *range_length = avio_tell(os->ctx->pb) - os->pos;
474         return 0;
475     }
476 }
477
478 static void set_http_options(AVDictionary **options, DASHContext *c)
479 {
480     if (c->method)
481         av_dict_set(options, "method", c->method, 0);
482     av_dict_copy(options, c->http_opts, 0);
483     if (c->user_agent)
484         av_dict_set(options, "user_agent", c->user_agent, 0);
485     if (c->http_persistent)
486         av_dict_set_int(options, "multiple_requests", 1, 0);
487     if (c->timeout >= 0)
488         av_dict_set_int(options, "timeout", c->timeout, 0);
489 }
490
491 static void get_hls_playlist_name(char *playlist_name, int string_size,
492                                   const char *base_url, int id) {
493     if (base_url)
494         snprintf(playlist_name, string_size, "%smedia_%d.m3u8", base_url, id);
495     else
496         snprintf(playlist_name, string_size, "media_%d.m3u8", id);
497 }
498
499 static void get_start_index_number(OutputStream *os, DASHContext *c,
500                                    int *start_index, int *start_number) {
501     *start_index = 0;
502     *start_number = 1;
503     if (c->window_size) {
504         *start_index  = FFMAX(os->nb_segments   - c->window_size, 0);
505         *start_number = FFMAX(os->segment_index - c->window_size, 1);
506     }
507 }
508
509 static void write_hls_media_playlist(OutputStream *os, AVFormatContext *s,
510                                      int representation_id, int final,
511                                      char *prefetch_url) {
512     DASHContext *c = s->priv_data;
513     int timescale = os->ctx->streams[0]->time_base.den;
514     char temp_filename_hls[1024];
515     char filename_hls[1024];
516     AVDictionary *http_opts = NULL;
517     int target_duration = 0;
518     int ret = 0;
519     const char *proto = avio_find_protocol_name(c->dirname);
520     int use_rename = proto && !strcmp(proto, "file");
521     int i, start_index, start_number;
522     double prog_date_time = 0;
523
524     get_start_index_number(os, c, &start_index, &start_number);
525
526     if (!c->hls_playlist || start_index >= os->nb_segments ||
527         os->segment_type != SEGMENT_TYPE_MP4)
528         return;
529
530     get_hls_playlist_name(filename_hls, sizeof(filename_hls),
531                           c->dirname, representation_id);
532
533     snprintf(temp_filename_hls, sizeof(temp_filename_hls), use_rename ? "%s.tmp" : "%s", filename_hls);
534
535     set_http_options(&http_opts, c);
536     ret = dashenc_io_open(s, &c->m3u8_out, temp_filename_hls, &http_opts);
537     av_dict_free(&http_opts);
538     if (ret < 0) {
539         handle_io_open_error(s, ret, temp_filename_hls);
540         return;
541     }
542     for (i = start_index; i < os->nb_segments; i++) {
543         Segment *seg = os->segments[i];
544         double duration = (double) seg->duration / timescale;
545         if (target_duration <= duration)
546             target_duration = lrint(duration);
547     }
548
549     ff_hls_write_playlist_header(c->m3u8_out, 6, -1, target_duration,
550                                  start_number, PLAYLIST_TYPE_NONE, 0);
551
552     ff_hls_write_init_file(c->m3u8_out, os->initfile, c->single_file,
553                            os->init_range_length, os->init_start_pos);
554
555     for (i = start_index; i < os->nb_segments; i++) {
556         Segment *seg = os->segments[i];
557
558         if (prog_date_time == 0) {
559             if (os->nb_segments == 1)
560                 prog_date_time = c->start_time_s;
561             else
562                 prog_date_time = seg->prog_date_time;
563         }
564         seg->prog_date_time = prog_date_time;
565
566         ret = ff_hls_write_file_entry(c->m3u8_out, 0, c->single_file,
567                                 (double) seg->duration / timescale, 0,
568                                 seg->range_length, seg->start_pos, NULL,
569                                 c->single_file ? os->initfile : seg->file,
570                                 &prog_date_time, 0, 0, 0);
571         if (ret < 0) {
572             av_log(os->ctx, AV_LOG_WARNING, "ff_hls_write_file_entry get error\n");
573         }
574     }
575
576     if (prefetch_url)
577         avio_printf(c->m3u8_out, "#EXT-X-PREFETCH:%s\n", prefetch_url);
578
579     if (final)
580         ff_hls_write_end_list(c->m3u8_out);
581
582     dashenc_io_close(s, &c->m3u8_out, temp_filename_hls);
583
584     if (use_rename)
585         ff_rename(temp_filename_hls, filename_hls, os->ctx);
586 }
587
588 static int flush_init_segment(AVFormatContext *s, OutputStream *os)
589 {
590     DASHContext *c = s->priv_data;
591     int ret, range_length;
592
593     ret = flush_dynbuf(c, os, &range_length);
594     if (ret < 0)
595         return ret;
596
597     os->pos = os->init_range_length = range_length;
598     if (!c->single_file) {
599         char filename[1024];
600         snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
601         dashenc_io_close(s, &os->out, filename);
602     }
603     return 0;
604 }
605
606 static void dash_free(AVFormatContext *s)
607 {
608     DASHContext *c = s->priv_data;
609     int i, j;
610
611     if (c->as) {
612         for (i = 0; i < c->nb_as; i++) {
613             av_dict_free(&c->as[i].metadata);
614             av_freep(&c->as[i].descriptor);
615         }
616         av_freep(&c->as);
617         c->nb_as = 0;
618     }
619
620     if (!c->streams)
621         return;
622     for (i = 0; i < s->nb_streams; i++) {
623         OutputStream *os = &c->streams[i];
624         if (os->ctx && os->ctx->pb) {
625             if (!c->single_file)
626                 ffio_free_dyn_buf(&os->ctx->pb);
627             else
628                 avio_close(os->ctx->pb);
629         }
630         ff_format_io_close(s, &os->out);
631         avformat_free_context(os->ctx);
632         avcodec_free_context(&os->parser_avctx);
633         av_parser_close(os->parser);
634         for (j = 0; j < os->nb_segments; j++)
635             av_free(os->segments[j]);
636         av_free(os->segments);
637         av_freep(&os->single_file_name);
638         av_freep(&os->init_seg_name);
639         av_freep(&os->media_seg_name);
640     }
641     av_freep(&c->streams);
642
643     ff_format_io_close(s, &c->mpd_out);
644     ff_format_io_close(s, &c->m3u8_out);
645 }
646
647 static void output_segment_list(OutputStream *os, AVIOContext *out, AVFormatContext *s,
648                                 int representation_id, int final)
649 {
650     DASHContext *c = s->priv_data;
651     int i, start_index, start_number;
652     get_start_index_number(os, c, &start_index, &start_number);
653
654     if (c->use_template) {
655         int timescale = c->use_timeline ? os->ctx->streams[0]->time_base.den : AV_TIME_BASE;
656         avio_printf(out, "\t\t\t\t<SegmentTemplate timescale=\"%d\" ", timescale);
657         if (!c->use_timeline) {
658             avio_printf(out, "duration=\"%"PRId64"\" ", os->seg_duration);
659             if (c->streaming && os->availability_time_offset)
660                 avio_printf(out, "availabilityTimeOffset=\"%.3f\" ",
661                             os->availability_time_offset);
662         }
663         if (c->ldash && !final && os->frag_type != FRAG_TYPE_NONE &&
664             (os->frag_type != FRAG_TYPE_DURATION || os->frag_duration != os->seg_duration))
665             avio_printf(out, "availabilityTimeComplete=\"false\" ");
666
667         avio_printf(out, "initialization=\"%s\" media=\"%s\" startNumber=\"%d\"", os->init_seg_name, os->media_seg_name, c->use_timeline ? start_number : 1);
668         if (c->presentation_time_offset)
669             avio_printf(out, " presentationTimeOffset=\"%"PRId64"\"", c->presentation_time_offset);
670         avio_printf(out, ">\n");
671         if (c->use_timeline) {
672             int64_t cur_time = 0;
673             avio_printf(out, "\t\t\t\t\t<SegmentTimeline>\n");
674             for (i = start_index; i < os->nb_segments; ) {
675                 Segment *seg = os->segments[i];
676                 int repeat = 0;
677                 avio_printf(out, "\t\t\t\t\t\t<S ");
678                 if (i == start_index || seg->time != cur_time) {
679                     cur_time = seg->time;
680                     avio_printf(out, "t=\"%"PRId64"\" ", seg->time);
681                 }
682                 avio_printf(out, "d=\"%"PRId64"\" ", seg->duration);
683                 while (i + repeat + 1 < os->nb_segments &&
684                        os->segments[i + repeat + 1]->duration == seg->duration &&
685                        os->segments[i + repeat + 1]->time == os->segments[i + repeat]->time + os->segments[i + repeat]->duration)
686                     repeat++;
687                 if (repeat > 0)
688                     avio_printf(out, "r=\"%d\" ", repeat);
689                 avio_printf(out, "/>\n");
690                 i += 1 + repeat;
691                 cur_time += (1 + repeat) * seg->duration;
692             }
693             avio_printf(out, "\t\t\t\t\t</SegmentTimeline>\n");
694         }
695         avio_printf(out, "\t\t\t\t</SegmentTemplate>\n");
696     } else if (c->single_file) {
697         avio_printf(out, "\t\t\t\t<BaseURL>%s</BaseURL>\n", os->initfile);
698         avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, FFMIN(os->seg_duration, os->last_duration), start_number);
699         avio_printf(out, "\t\t\t\t\t<Initialization range=\"%"PRId64"-%"PRId64"\" />\n", os->init_start_pos, os->init_start_pos + os->init_range_length - 1);
700         for (i = start_index; i < os->nb_segments; i++) {
701             Segment *seg = os->segments[i];
702             avio_printf(out, "\t\t\t\t\t<SegmentURL mediaRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->range_length - 1);
703             if (seg->index_length)
704                 avio_printf(out, "indexRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->index_length - 1);
705             avio_printf(out, "/>\n");
706         }
707         avio_printf(out, "\t\t\t\t</SegmentList>\n");
708     } else {
709         avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, FFMIN(os->seg_duration, os->last_duration), start_number);
710         avio_printf(out, "\t\t\t\t\t<Initialization sourceURL=\"%s\" />\n", os->initfile);
711         for (i = start_index; i < os->nb_segments; i++) {
712             Segment *seg = os->segments[i];
713             avio_printf(out, "\t\t\t\t\t<SegmentURL media=\"%s\" />\n", seg->file);
714         }
715         avio_printf(out, "\t\t\t\t</SegmentList>\n");
716     }
717     if (!c->lhls || final) {
718         write_hls_media_playlist(os, s, representation_id, final, NULL);
719     }
720
721 }
722
723 static char *xmlescape(const char *str) {
724     int outlen = strlen(str)*3/2 + 6;
725     char *out = av_realloc(NULL, outlen + 1);
726     int pos = 0;
727     if (!out)
728         return NULL;
729     for (; *str; str++) {
730         if (pos + 6 > outlen) {
731             char *tmp;
732             outlen = 2 * outlen + 6;
733             tmp = av_realloc(out, outlen + 1);
734             if (!tmp) {
735                 av_free(out);
736                 return NULL;
737             }
738             out = tmp;
739         }
740         if (*str == '&') {
741             memcpy(&out[pos], "&amp;", 5);
742             pos += 5;
743         } else if (*str == '<') {
744             memcpy(&out[pos], "&lt;", 4);
745             pos += 4;
746         } else if (*str == '>') {
747             memcpy(&out[pos], "&gt;", 4);
748             pos += 4;
749         } else if (*str == '\'') {
750             memcpy(&out[pos], "&apos;", 6);
751             pos += 6;
752         } else if (*str == '\"') {
753             memcpy(&out[pos], "&quot;", 6);
754             pos += 6;
755         } else {
756             out[pos++] = *str;
757         }
758     }
759     out[pos] = '\0';
760     return out;
761 }
762
763 static void write_time(AVIOContext *out, int64_t time)
764 {
765     int seconds = time / AV_TIME_BASE;
766     int fractions = time % AV_TIME_BASE;
767     int minutes = seconds / 60;
768     int hours = minutes / 60;
769     seconds %= 60;
770     minutes %= 60;
771     avio_printf(out, "PT");
772     if (hours)
773         avio_printf(out, "%dH", hours);
774     if (hours || minutes)
775         avio_printf(out, "%dM", minutes);
776     avio_printf(out, "%d.%dS", seconds, fractions / (AV_TIME_BASE / 10));
777 }
778
779 static void format_date(char *buf, int size, int64_t time_us)
780 {
781     struct tm *ptm, tmbuf;
782     int64_t time_ms = time_us / 1000;
783     const time_t time_s = time_ms / 1000;
784     int millisec = time_ms - (time_s * 1000);
785     ptm = gmtime_r(&time_s, &tmbuf);
786     if (ptm) {
787         int len;
788         if (!strftime(buf, size, "%Y-%m-%dT%H:%M:%S", ptm)) {
789             buf[0] = '\0';
790             return;
791         }
792         len = strlen(buf);
793         snprintf(buf + len, size - len, ".%03dZ", millisec);
794     }
795 }
796
797 static int write_adaptation_set(AVFormatContext *s, AVIOContext *out, int as_index,
798                                 int final)
799 {
800     DASHContext *c = s->priv_data;
801     AdaptationSet *as = &c->as[as_index];
802     AVDictionaryEntry *lang, *role;
803     int i;
804
805     avio_printf(out, "\t\t<AdaptationSet id=\"%s\" contentType=\"%s\" segmentAlignment=\"true\" bitstreamSwitching=\"true\"",
806                 as->id, as->media_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio");
807     if (as->media_type == AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && av_cmp_q(as->min_frame_rate, as->max_frame_rate) < 0)
808         avio_printf(out, " maxFrameRate=\"%d/%d\"", as->max_frame_rate.num, as->max_frame_rate.den);
809     else if (as->media_type == AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && !av_cmp_q(as->min_frame_rate, as->max_frame_rate))
810         avio_printf(out, " frameRate=\"%d/%d\"", as->max_frame_rate.num, as->max_frame_rate.den);
811     if (as->media_type == AVMEDIA_TYPE_VIDEO) {
812         avio_printf(out, " maxWidth=\"%d\" maxHeight=\"%d\"", as->max_width, as->max_height);
813         avio_printf(out, " par=\"%d:%d\"", as->par.num, as->par.den);
814     }
815     lang = av_dict_get(as->metadata, "language", NULL, 0);
816     if (lang)
817         avio_printf(out, " lang=\"%s\"", lang->value);
818     avio_printf(out, ">\n");
819
820     if (!final && c->ldash && as->max_frag_duration)
821         avio_printf(out, "\t\t\t<Resync dT=\"%"PRId64"\" type=\"0\"/>\n", as->max_frag_duration);
822     role = av_dict_get(as->metadata, "role", NULL, 0);
823     if (role)
824         avio_printf(out, "\t\t\t<Role schemeIdUri=\"urn:mpeg:dash:role:2011\" value=\"%s\"/>\n", role->value);
825     if (as->descriptor)
826         avio_printf(out, "\t\t\t%s\n", as->descriptor);
827     for (i = 0; i < s->nb_streams; i++) {
828         AVStream *st = s->streams[i];
829         OutputStream *os = &c->streams[i];
830         char bandwidth_str[64] = {'\0'};
831
832         if (os->as_idx - 1 != as_index)
833             continue;
834
835         if (os->bit_rate > 0)
836             snprintf(bandwidth_str, sizeof(bandwidth_str), " bandwidth=\"%d\"",
837                      os->bit_rate);
838
839         if (as->media_type == AVMEDIA_TYPE_VIDEO) {
840             avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"video/%s\" codecs=\"%s\"%s width=\"%d\" height=\"%d\"",
841                 i, os->format_name, os->codec_str, bandwidth_str, s->streams[i]->codecpar->width, s->streams[i]->codecpar->height);
842             if (st->codecpar->field_order == AV_FIELD_UNKNOWN)
843                 avio_printf(out, " scanType=\"unknown\"");
844             else if (st->codecpar->field_order != AV_FIELD_PROGRESSIVE)
845                 avio_printf(out, " scanType=\"interlaced\"");
846             avio_printf(out, " sar=\"%d:%d\"", os->sar.num, os->sar.den);
847             if (st->avg_frame_rate.num && av_cmp_q(as->min_frame_rate, as->max_frame_rate) < 0)
848                 avio_printf(out, " frameRate=\"%d/%d\"", st->avg_frame_rate.num, st->avg_frame_rate.den);
849             avio_printf(out, ">\n");
850         } else {
851             avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"audio/%s\" codecs=\"%s\"%s audioSamplingRate=\"%d\">\n",
852                 i, os->format_name, os->codec_str, bandwidth_str, s->streams[i]->codecpar->sample_rate);
853             avio_printf(out, "\t\t\t\t<AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"%d\" />\n",
854                 s->streams[i]->codecpar->channels);
855         }
856         if (!final && c->write_prft && os->producer_reference_time_str[0]) {
857             avio_printf(out, "\t\t\t\t<ProducerReferenceTime id=\"%d\" inband=\"true\" type=\"encoder\" wallclockTime=\"%s\" presentationTime=\"%"PRId64"\">\n",
858                         i, os->producer_reference_time_str, c->presentation_time_offset);
859             avio_printf(out, "\t\t\t\t\t<UTCTiming schemeIdUri=\"urn:mpeg:dash:utc:http-xsdate:2014\" value=\"%s\"/>\n", c->utc_timing_url);
860             avio_printf(out, "\t\t\t\t</ProducerReferenceTime>\n");
861         }
862         if (!final && c->ldash && os->gop_size && os->frag_type != FRAG_TYPE_NONE &&
863             (os->frag_type != FRAG_TYPE_DURATION || os->frag_duration != os->seg_duration))
864             avio_printf(out, "\t\t\t\t<Resync dT=\"%"PRId64"\" type=\"1\"/>\n", os->gop_size);
865         output_segment_list(os, out, s, i, final);
866         avio_printf(out, "\t\t\t</Representation>\n");
867     }
868     avio_printf(out, "\t\t</AdaptationSet>\n");
869
870     return 0;
871 }
872
873 static int add_adaptation_set(AVFormatContext *s, AdaptationSet **as, enum AVMediaType type)
874 {
875     DASHContext *c = s->priv_data;
876     void *mem;
877
878     if (c->profile & MPD_PROFILE_DVB && (c->nb_as + 1) > 16) {
879         av_log(s, AV_LOG_ERROR, "DVB-DASH profile allows a max of 16 Adaptation Sets\n");
880         return AVERROR(EINVAL);
881     }
882     mem = av_realloc(c->as, sizeof(*c->as) * (c->nb_as + 1));
883     if (!mem)
884         return AVERROR(ENOMEM);
885     c->as = mem;
886     ++c->nb_as;
887
888     *as = &c->as[c->nb_as - 1];
889     memset(*as, 0, sizeof(**as));
890     (*as)->media_type = type;
891     (*as)->frag_type = -1;
892
893     return 0;
894 }
895
896 static int adaptation_set_add_stream(AVFormatContext *s, int as_idx, int i)
897 {
898     DASHContext *c = s->priv_data;
899     AdaptationSet *as = &c->as[as_idx - 1];
900     OutputStream *os = &c->streams[i];
901
902     if (as->media_type != s->streams[i]->codecpar->codec_type) {
903         av_log(s, AV_LOG_ERROR, "Codec type of stream %d doesn't match AdaptationSet's media type\n", i);
904         return AVERROR(EINVAL);
905     } else if (os->as_idx) {
906         av_log(s, AV_LOG_ERROR, "Stream %d is already assigned to an AdaptationSet\n", i);
907         return AVERROR(EINVAL);
908     }
909     if (c->profile & MPD_PROFILE_DVB && (as->nb_streams + 1) > 16) {
910         av_log(s, AV_LOG_ERROR, "DVB-DASH profile allows a max of 16 Representations per Adaptation Set\n");
911         return AVERROR(EINVAL);
912     }
913     os->as_idx = as_idx;
914     ++as->nb_streams;
915
916     return 0;
917 }
918
919 static int parse_adaptation_sets(AVFormatContext *s)
920 {
921     DASHContext *c = s->priv_data;
922     const char *p = c->adaptation_sets;
923     enum { new_set, parse_default, parsing_streams, parse_seg_duration, parse_frag_duration } state;
924     AdaptationSet *as;
925     int i, n, ret;
926
927     // default: one AdaptationSet for each stream
928     if (!p) {
929         for (i = 0; i < s->nb_streams; i++) {
930             if ((ret = add_adaptation_set(s, &as, s->streams[i]->codecpar->codec_type)) < 0)
931                 return ret;
932             snprintf(as->id, sizeof(as->id), "%d", i);
933
934             c->streams[i].as_idx = c->nb_as;
935             ++as->nb_streams;
936         }
937         goto end;
938     }
939
940     // syntax id=0,streams=0,1,2 id=1,streams=3,4 and so on
941     // option id=0,descriptor=descriptor_str,streams=0,1,2 and so on
942     // option id=0,seg_duration=2.5,frag_duration=0.5,streams=0,1,2 and so on
943     // descriptor is useful to the scheme defined by ISO/IEC 23009-1:2014/Amd.2:2015
944     // descriptor_str should be a self-closing xml tag.
945     // seg_duration and frag_duration have the same syntax as the global options of
946     // the same name, and the former have precedence over them if set.
947     state = new_set;
948     while (*p) {
949         if (*p == ' ') {
950             p++;
951             continue;
952         } else if (state == new_set && av_strstart(p, "id=", &p)) {
953
954             if ((ret = add_adaptation_set(s, &as, AVMEDIA_TYPE_UNKNOWN)) < 0)
955                 return ret;
956
957             n = strcspn(p, ",");
958             snprintf(as->id, sizeof(as->id), "%.*s", n, p);
959
960             p += n;
961             if (*p)
962                 p++;
963             state = parse_default;
964         } else if (state != new_set && av_strstart(p, "seg_duration=", &p)) {
965             state = parse_seg_duration;
966         } else if (state != new_set && av_strstart(p, "frag_duration=", &p)) {
967             state = parse_frag_duration;
968         } else if (state == parse_seg_duration || state == parse_frag_duration) {
969             char str[32];
970             int64_t usecs = 0;
971
972             n = strcspn(p, ",");
973             snprintf(str, sizeof(str), "%.*s", n, p);
974             p += n;
975             if (*p)
976                 p++;
977
978             ret = av_parse_time(&usecs, str, 1);
979             if (ret < 0) {
980                 av_log(s, AV_LOG_ERROR, "Unable to parse option value \"%s\" as duration\n", str);
981                 return ret;
982             }
983
984             if (state == parse_seg_duration)
985                 as->seg_duration = usecs;
986             else
987                 as->frag_duration = usecs;
988             state = parse_default;
989         } else if (state != new_set && av_strstart(p, "frag_type=", &p)) {
990             char type_str[16];
991
992             n = strcspn(p, ",");
993             snprintf(type_str, sizeof(type_str), "%.*s", n, p);
994             p += n;
995             if (*p)
996                 p++;
997
998             if (!strcmp(type_str, "duration"))
999                 as->frag_type = FRAG_TYPE_DURATION;
1000             else if (!strcmp(type_str, "pframes"))
1001                 as->frag_type = FRAG_TYPE_PFRAMES;
1002             else if (!strcmp(type_str, "every_frame"))
1003                 as->frag_type = FRAG_TYPE_EVERY_FRAME;
1004             else if (!strcmp(type_str, "none"))
1005                 as->frag_type = FRAG_TYPE_NONE;
1006             else {
1007                 av_log(s, AV_LOG_ERROR, "Unable to parse option value \"%s\" as fragment type\n", type_str);
1008                 return ret;
1009             }
1010             state = parse_default;
1011         } else if (state != new_set && av_strstart(p, "descriptor=", &p)) {
1012             n = strcspn(p, ">") + 1; //followed by one comma, so plus 1
1013             if (n < strlen(p)) {
1014                 as->descriptor = av_strndup(p, n);
1015             } else {
1016                 av_log(s, AV_LOG_ERROR, "Parse error, descriptor string should be a self-closing xml tag\n");
1017                 return AVERROR(EINVAL);
1018             }
1019             p += n;
1020             if (*p)
1021                 p++;
1022             state = parse_default;
1023         } else if ((state != new_set) && av_strstart(p, "streams=", &p)) { //descriptor and durations are optional
1024             state = parsing_streams;
1025         } else if (state == parsing_streams) {
1026             AdaptationSet *as = &c->as[c->nb_as - 1];
1027             char idx_str[8], *end_str;
1028
1029             n = strcspn(p, " ,");
1030             snprintf(idx_str, sizeof(idx_str), "%.*s", n, p);
1031             p += n;
1032
1033             // if value is "a" or "v", map all streams of that type
1034             if (as->media_type == AVMEDIA_TYPE_UNKNOWN && (idx_str[0] == 'v' || idx_str[0] == 'a')) {
1035                 enum AVMediaType type = (idx_str[0] == 'v') ? AVMEDIA_TYPE_VIDEO : AVMEDIA_TYPE_AUDIO;
1036                 av_log(s, AV_LOG_DEBUG, "Map all streams of type %s\n", idx_str);
1037
1038                 for (i = 0; i < s->nb_streams; i++) {
1039                     if (s->streams[i]->codecpar->codec_type != type)
1040                         continue;
1041
1042                     as->media_type = s->streams[i]->codecpar->codec_type;
1043
1044                     if ((ret = adaptation_set_add_stream(s, c->nb_as, i)) < 0)
1045                         return ret;
1046                 }
1047             } else { // select single stream
1048                 i = strtol(idx_str, &end_str, 10);
1049                 if (idx_str == end_str || i < 0 || i >= s->nb_streams) {
1050                     av_log(s, AV_LOG_ERROR, "Selected stream \"%s\" not found!\n", idx_str);
1051                     return AVERROR(EINVAL);
1052                 }
1053                 av_log(s, AV_LOG_DEBUG, "Map stream %d\n", i);
1054
1055                 if (as->media_type == AVMEDIA_TYPE_UNKNOWN) {
1056                     as->media_type = s->streams[i]->codecpar->codec_type;
1057                 }
1058
1059                 if ((ret = adaptation_set_add_stream(s, c->nb_as, i)) < 0)
1060                     return ret;
1061             }
1062
1063             if (*p == ' ')
1064                 state = new_set;
1065             if (*p)
1066                 p++;
1067         } else {
1068             return AVERROR(EINVAL);
1069         }
1070     }
1071
1072 end:
1073     // check for unassigned streams
1074     for (i = 0; i < s->nb_streams; i++) {
1075         OutputStream *os = &c->streams[i];
1076         if (!os->as_idx) {
1077             av_log(s, AV_LOG_ERROR, "Stream %d is not mapped to an AdaptationSet\n", i);
1078             return AVERROR(EINVAL);
1079         }
1080     }
1081     return 0;
1082 }
1083
1084 static int write_manifest(AVFormatContext *s, int final)
1085 {
1086     DASHContext *c = s->priv_data;
1087     AVIOContext *out;
1088     char temp_filename[1024];
1089     int ret, i;
1090     const char *proto = avio_find_protocol_name(s->url);
1091     int use_rename = proto && !strcmp(proto, "file");
1092     static unsigned int warned_non_file = 0;
1093     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
1094     AVDictionary *opts = NULL;
1095
1096     if (!use_rename && !warned_non_file++)
1097         av_log(s, AV_LOG_ERROR, "Cannot use rename on non file protocol, this may lead to races and temporary partial files\n");
1098
1099     snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", s->url);
1100     set_http_options(&opts, c);
1101     ret = dashenc_io_open(s, &c->mpd_out, temp_filename, &opts);
1102     av_dict_free(&opts);
1103     if (ret < 0) {
1104         return handle_io_open_error(s, ret, temp_filename);
1105     }
1106     out = c->mpd_out;
1107     avio_printf(out, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
1108     avio_printf(out, "<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
1109                 "\txmlns=\"urn:mpeg:dash:schema:mpd:2011\"\n"
1110                 "\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n"
1111                 "\txsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd\"\n"
1112                 "\tprofiles=\"");
1113     if (c->profile & MPD_PROFILE_DASH)
1114          avio_printf(out, "%s%s", "urn:mpeg:dash:profile:isoff-live:2011", c->profile & MPD_PROFILE_DVB ? "," : "\"\n");
1115     if (c->profile & MPD_PROFILE_DVB)
1116          avio_printf(out, "%s", "urn:dvb:dash:profile:dvb-dash:2014\"\n");
1117     avio_printf(out, "\ttype=\"%s\"\n",
1118                 final ? "static" : "dynamic");
1119     if (final) {
1120         avio_printf(out, "\tmediaPresentationDuration=\"");
1121         write_time(out, c->total_duration);
1122         avio_printf(out, "\"\n");
1123     } else {
1124         int64_t update_period = c->last_duration / AV_TIME_BASE;
1125         char now_str[100];
1126         if (c->use_template && !c->use_timeline)
1127             update_period = 500;
1128         avio_printf(out, "\tminimumUpdatePeriod=\"PT%"PRId64"S\"\n", update_period);
1129         if (!c->ldash)
1130             avio_printf(out, "\tsuggestedPresentationDelay=\"PT%"PRId64"S\"\n", c->last_duration / AV_TIME_BASE);
1131         if (c->availability_start_time[0])
1132             avio_printf(out, "\tavailabilityStartTime=\"%s\"\n", c->availability_start_time);
1133         format_date(now_str, sizeof(now_str), av_gettime());
1134         if (now_str[0])
1135             avio_printf(out, "\tpublishTime=\"%s\"\n", now_str);
1136         if (c->window_size && c->use_template) {
1137             avio_printf(out, "\ttimeShiftBufferDepth=\"");
1138             write_time(out, c->last_duration * c->window_size);
1139             avio_printf(out, "\"\n");
1140         }
1141     }
1142     avio_printf(out, "\tminBufferTime=\"");
1143     write_time(out, c->ldash && c->max_gop_size ? c->max_gop_size : c->last_duration * 2);
1144     avio_printf(out, "\">\n");
1145     avio_printf(out, "\t<ProgramInformation>\n");
1146     if (title) {
1147         char *escaped = xmlescape(title->value);
1148         avio_printf(out, "\t\t<Title>%s</Title>\n", escaped);
1149         av_free(escaped);
1150     }
1151     avio_printf(out, "\t</ProgramInformation>\n");
1152     if (!final && c->target_latency && c->target_latency_refid >= 0) {
1153         avio_printf(out, "\t<ServiceDescription id=\"0\">\n");
1154         avio_printf(out, "\t\t<Latency target=\"%"PRId64"\"", c->target_latency / 1000);
1155         if (s->nb_streams > 1)
1156             avio_printf(out, " referenceId=\"%d\"", c->target_latency_refid);
1157         avio_printf(out, "/>\n");
1158         avio_printf(out, "\t</ServiceDescription>\n");
1159     }
1160
1161     if (c->window_size && s->nb_streams > 0 && c->streams[0].nb_segments > 0 && !c->use_template) {
1162         OutputStream *os = &c->streams[0];
1163         int start_index = FFMAX(os->nb_segments - c->window_size, 0);
1164         int64_t start_time = av_rescale_q(os->segments[start_index]->time, s->streams[0]->time_base, AV_TIME_BASE_Q);
1165         avio_printf(out, "\t<Period id=\"0\" start=\"");
1166         write_time(out, start_time);
1167         avio_printf(out, "\">\n");
1168     } else {
1169         avio_printf(out, "\t<Period id=\"0\" start=\"PT0.0S\">\n");
1170     }
1171
1172     for (i = 0; i < c->nb_as; i++) {
1173         if ((ret = write_adaptation_set(s, out, i, final)) < 0)
1174             return ret;
1175     }
1176     avio_printf(out, "\t</Period>\n");
1177
1178     if (c->utc_timing_url)
1179         avio_printf(out, "\t<UTCTiming schemeIdUri=\"urn:mpeg:dash:utc:http-xsdate:2014\" value=\"%s\"/>\n", c->utc_timing_url);
1180
1181     avio_printf(out, "</MPD>\n");
1182     avio_flush(out);
1183     dashenc_io_close(s, &c->mpd_out, temp_filename);
1184
1185     if (use_rename) {
1186         if ((ret = ff_rename(temp_filename, s->url, s)) < 0)
1187             return ret;
1188     }
1189
1190     if (c->hls_playlist) {
1191         char filename_hls[1024];
1192         const char *audio_group = "A1";
1193         char audio_codec_str[128] = "\0";
1194         int is_default = 1;
1195         int max_audio_bitrate = 0;
1196
1197         // Publish master playlist only the configured rate
1198         if (c->master_playlist_created && (!c->master_publish_rate ||
1199              c->streams[0].segment_index % c->master_publish_rate))
1200             return 0;
1201
1202         if (*c->dirname)
1203             snprintf(filename_hls, sizeof(filename_hls), "%smaster.m3u8", c->dirname);
1204         else
1205             snprintf(filename_hls, sizeof(filename_hls), "master.m3u8");
1206
1207         snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", filename_hls);
1208
1209         set_http_options(&opts, c);
1210         ret = dashenc_io_open(s, &c->m3u8_out, temp_filename, &opts);
1211         av_dict_free(&opts);
1212         if (ret < 0) {
1213             return handle_io_open_error(s, ret, temp_filename);
1214         }
1215
1216         ff_hls_write_playlist_version(c->m3u8_out, 7);
1217
1218         for (i = 0; i < s->nb_streams; i++) {
1219             char playlist_file[64];
1220             AVStream *st = s->streams[i];
1221             OutputStream *os = &c->streams[i];
1222             if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
1223                 continue;
1224             if (os->segment_type != SEGMENT_TYPE_MP4)
1225                 continue;
1226             get_hls_playlist_name(playlist_file, sizeof(playlist_file), NULL, i);
1227             ff_hls_write_audio_rendition(c->m3u8_out, (char *)audio_group,
1228                                          playlist_file, NULL, i, is_default);
1229             max_audio_bitrate = FFMAX(st->codecpar->bit_rate +
1230                                       os->muxer_overhead, max_audio_bitrate);
1231             if (!av_strnstr(audio_codec_str, os->codec_str, sizeof(audio_codec_str))) {
1232                 if (strlen(audio_codec_str))
1233                     av_strlcat(audio_codec_str, ",", sizeof(audio_codec_str));
1234                 av_strlcat(audio_codec_str, os->codec_str, sizeof(audio_codec_str));
1235             }
1236             is_default = 0;
1237         }
1238
1239         for (i = 0; i < s->nb_streams; i++) {
1240             char playlist_file[64];
1241             char codec_str[128];
1242             AVStream *st = s->streams[i];
1243             OutputStream *os = &c->streams[i];
1244             char *agroup = NULL;
1245             char *codec_str_ptr = NULL;
1246             int stream_bitrate = st->codecpar->bit_rate + os->muxer_overhead;
1247             if (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
1248                 continue;
1249             if (os->segment_type != SEGMENT_TYPE_MP4)
1250                 continue;
1251             av_strlcpy(codec_str, os->codec_str, sizeof(codec_str));
1252             if (max_audio_bitrate) {
1253                 agroup = (char *)audio_group;
1254                 stream_bitrate += max_audio_bitrate;
1255                 av_strlcat(codec_str, ",", sizeof(codec_str));
1256                 av_strlcat(codec_str, audio_codec_str, sizeof(codec_str));
1257             }
1258             if (st->codecpar->codec_id != AV_CODEC_ID_HEVC) {
1259                 codec_str_ptr = codec_str;
1260             }
1261             get_hls_playlist_name(playlist_file, sizeof(playlist_file), NULL, i);
1262             ff_hls_write_stream_info(st, c->m3u8_out, stream_bitrate,
1263                                      playlist_file, agroup,
1264                                      codec_str_ptr, NULL);
1265         }
1266         dashenc_io_close(s, &c->m3u8_out, temp_filename);
1267         if (use_rename)
1268             if ((ret = ff_rename(temp_filename, filename_hls, s)) < 0)
1269                 return ret;
1270         c->master_playlist_created = 1;
1271     }
1272
1273     return 0;
1274 }
1275
1276 static int dict_copy_entry(AVDictionary **dst, const AVDictionary *src, const char *key)
1277 {
1278     AVDictionaryEntry *entry = av_dict_get(src, key, NULL, 0);
1279     if (entry)
1280         av_dict_set(dst, key, entry->value, AV_DICT_DONT_OVERWRITE);
1281     return 0;
1282 }
1283
1284 static int dash_init(AVFormatContext *s)
1285 {
1286     DASHContext *c = s->priv_data;
1287     int ret = 0, i;
1288     char *ptr;
1289     char basename[1024];
1290
1291     c->nr_of_streams_to_flush = 0;
1292     if (c->single_file_name)
1293         c->single_file = 1;
1294     if (c->single_file)
1295         c->use_template = 0;
1296
1297     if (!c->profile) {
1298         av_log(s, AV_LOG_ERROR, "At least one profile must be enabled.\n");
1299         return AVERROR(EINVAL);
1300     }
1301 #if FF_API_DASH_MIN_SEG_DURATION
1302     if (c->min_seg_duration != 5000000) {
1303         av_log(s, AV_LOG_WARNING, "The min_seg_duration option is deprecated and will be removed. Please use the -seg_duration\n");
1304         c->seg_duration = c->min_seg_duration;
1305     }
1306 #endif
1307     if (c->lhls && s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1308         av_log(s, AV_LOG_ERROR,
1309                "LHLS is experimental, Please set -strict experimental in order to enable it.\n");
1310         return AVERROR_EXPERIMENTAL;
1311     }
1312
1313     if (c->lhls && !c->streaming) {
1314         av_log(s, AV_LOG_WARNING, "LHLS option will be ignored as streaming is not enabled\n");
1315         c->lhls = 0;
1316     }
1317
1318     if (c->lhls && !c->hls_playlist) {
1319         av_log(s, AV_LOG_WARNING, "LHLS option will be ignored as hls_playlist is not enabled\n");
1320         c->lhls = 0;
1321     }
1322
1323     if (c->ldash && !c->streaming) {
1324         av_log(s, AV_LOG_WARNING, "LDash option will be ignored as streaming is not enabled\n");
1325         c->ldash = 0;
1326     }
1327
1328     if (c->target_latency && !c->streaming) {
1329         av_log(s, AV_LOG_WARNING, "Target latency option will be ignored as streaming is not enabled\n");
1330         c->target_latency = 0;
1331     }
1332
1333     if (c->global_sidx && !c->single_file) {
1334         av_log(s, AV_LOG_WARNING, "Global SIDX option will be ignored as single_file is not enabled\n");
1335         c->global_sidx = 0;
1336     }
1337
1338     if (c->global_sidx && c->streaming) {
1339         av_log(s, AV_LOG_WARNING, "Global SIDX option will be ignored as streaming is enabled\n");
1340         c->global_sidx = 0;
1341     }
1342     if (c->frag_type == FRAG_TYPE_NONE && c->streaming) {
1343         av_log(s, AV_LOG_VERBOSE, "Changing frag_type from none to every_frame as streaming is enabled\n");
1344         c->frag_type = FRAG_TYPE_EVERY_FRAME;
1345     }
1346
1347     if (c->write_prft && !c->utc_timing_url) {
1348         av_log(s, AV_LOG_WARNING, "Producer Reference Time element option will be ignored as utc_timing_url is not set\n");
1349         c->write_prft = 0;
1350     }
1351
1352     if (c->write_prft && !c->streaming) {
1353         av_log(s, AV_LOG_WARNING, "Producer Reference Time element option will be ignored as streaming is not enabled\n");
1354         c->write_prft = 0;
1355     }
1356
1357     if (c->target_latency && !c->write_prft) {
1358         av_log(s, AV_LOG_WARNING, "Target latency option will be ignored as Producer Reference Time element will not be written\n");
1359         c->target_latency = 0;
1360     }
1361
1362     av_strlcpy(c->dirname, s->url, sizeof(c->dirname));
1363     ptr = strrchr(c->dirname, '/');
1364     if (ptr) {
1365         av_strlcpy(basename, &ptr[1], sizeof(basename));
1366         ptr[1] = '\0';
1367     } else {
1368         c->dirname[0] = '\0';
1369         av_strlcpy(basename, s->url, sizeof(basename));
1370     }
1371
1372     ptr = strrchr(basename, '.');
1373     if (ptr)
1374         *ptr = '\0';
1375
1376     c->streams = av_mallocz(sizeof(*c->streams) * s->nb_streams);
1377     if (!c->streams)
1378         return AVERROR(ENOMEM);
1379
1380     if ((ret = parse_adaptation_sets(s)) < 0)
1381         return ret;
1382
1383     if ((ret = init_segment_types(s)) < 0)
1384         return ret;
1385
1386     for (i = 0; i < s->nb_streams; i++) {
1387         OutputStream *os = &c->streams[i];
1388         AdaptationSet *as = &c->as[os->as_idx - 1];
1389         AVFormatContext *ctx;
1390         AVStream *st;
1391         AVDictionary *opts = NULL;
1392         char filename[1024];
1393
1394         os->bit_rate = s->streams[i]->codecpar->bit_rate;
1395         if (!os->bit_rate) {
1396             int level = s->strict_std_compliance >= FF_COMPLIANCE_STRICT ?
1397                         AV_LOG_ERROR : AV_LOG_WARNING;
1398             av_log(s, level, "No bit rate set for stream %d\n", i);
1399             if (s->strict_std_compliance >= FF_COMPLIANCE_STRICT)
1400                 return AVERROR(EINVAL);
1401         }
1402
1403         // copy AdaptationSet language and role from stream metadata
1404         dict_copy_entry(&as->metadata, s->streams[i]->metadata, "language");
1405         dict_copy_entry(&as->metadata, s->streams[i]->metadata, "role");
1406
1407         if (c->init_seg_name) {
1408             os->init_seg_name = av_strireplace(c->init_seg_name, "$ext$", os->extension_name);
1409             if (!os->init_seg_name)
1410                 return AVERROR(ENOMEM);
1411         }
1412         if (c->media_seg_name) {
1413             os->media_seg_name = av_strireplace(c->media_seg_name, "$ext$", os->extension_name);
1414             if (!os->media_seg_name)
1415                 return AVERROR(ENOMEM);
1416         }
1417         if (c->single_file_name) {
1418             os->single_file_name = av_strireplace(c->single_file_name, "$ext$", os->extension_name);
1419             if (!os->single_file_name)
1420                 return AVERROR(ENOMEM);
1421         }
1422
1423         if (os->segment_type == SEGMENT_TYPE_WEBM) {
1424             if ((!c->single_file && check_file_extension(os->init_seg_name, os->format_name) != 0) ||
1425                 (!c->single_file && check_file_extension(os->media_seg_name, os->format_name) != 0) ||
1426                 (c->single_file && check_file_extension(os->single_file_name, os->format_name) != 0)) {
1427                 av_log(s, AV_LOG_WARNING,
1428                        "One or many segment file names doesn't end with .webm. "
1429                        "Override -init_seg_name and/or -media_seg_name and/or "
1430                        "-single_file_name to end with the extension .webm\n");
1431             }
1432             if (c->streaming) {
1433                 // Streaming not supported as matroskaenc buffers internally before writing the output
1434                 av_log(s, AV_LOG_WARNING, "One or more streams in WebM output format. Streaming option will be ignored\n");
1435                 c->streaming = 0;
1436             }
1437         }
1438
1439         os->ctx = ctx = avformat_alloc_context();
1440         if (!ctx)
1441             return AVERROR(ENOMEM);
1442
1443         ctx->oformat = av_guess_format(os->format_name, NULL, NULL);
1444         if (!ctx->oformat)
1445             return AVERROR_MUXER_NOT_FOUND;
1446         ctx->interrupt_callback    = s->interrupt_callback;
1447         ctx->opaque                = s->opaque;
1448         ctx->io_close              = s->io_close;
1449         ctx->io_open               = s->io_open;
1450         ctx->strict_std_compliance = s->strict_std_compliance;
1451
1452         if (!(st = avformat_new_stream(ctx, NULL)))
1453             return AVERROR(ENOMEM);
1454         avcodec_parameters_copy(st->codecpar, s->streams[i]->codecpar);
1455         st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
1456         st->time_base = s->streams[i]->time_base;
1457         st->avg_frame_rate = s->streams[i]->avg_frame_rate;
1458         ctx->avoid_negative_ts = s->avoid_negative_ts;
1459         ctx->flags = s->flags;
1460
1461         os->parser = av_parser_init(st->codecpar->codec_id);
1462         if (os->parser) {
1463             os->parser_avctx = avcodec_alloc_context3(NULL);
1464             if (!os->parser_avctx)
1465                 return AVERROR(ENOMEM);
1466             ret = avcodec_parameters_to_context(os->parser_avctx, st->codecpar);
1467             if (ret < 0)
1468                 return ret;
1469             // We only want to parse frame headers
1470             os->parser->flags |= PARSER_FLAG_COMPLETE_FRAMES;
1471         }
1472
1473         if (c->single_file) {
1474             if (os->single_file_name)
1475                 ff_dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), os->single_file_name, i, 0, os->bit_rate, 0);
1476             else
1477                 snprintf(os->initfile, sizeof(os->initfile), "%s-stream%d.%s", basename, i, os->format_name);
1478         } else {
1479             ff_dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), os->init_seg_name, i, 0, os->bit_rate, 0);
1480         }
1481         snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
1482         set_http_options(&opts, c);
1483         if (!c->single_file) {
1484             if ((ret = avio_open_dyn_buf(&ctx->pb)) < 0)
1485                 return ret;
1486             ret = s->io_open(s, &os->out, filename, AVIO_FLAG_WRITE, &opts);
1487         } else {
1488             ctx->url = av_strdup(filename);
1489             ret = avio_open2(&ctx->pb, filename, AVIO_FLAG_WRITE, NULL, &opts);
1490         }
1491         av_dict_free(&opts);
1492         if (ret < 0)
1493             return ret;
1494         os->init_start_pos = 0;
1495
1496         av_dict_copy(&opts, c->format_options, 0);
1497         if (!as->seg_duration)
1498             as->seg_duration = c->seg_duration;
1499         if (!as->frag_duration)
1500             as->frag_duration = c->frag_duration;
1501         if (as->frag_type < 0)
1502             as->frag_type = c->frag_type;
1503         os->seg_duration = as->seg_duration;
1504         os->frag_duration = as->frag_duration;
1505         os->frag_type = as->frag_type;
1506
1507         if (c->profile & MPD_PROFILE_DVB && (os->seg_duration > 15000000 || os->seg_duration < 960000)) {
1508             av_log(s, AV_LOG_ERROR, "Segment duration %"PRId64" is outside the allowed range for DVB-DASH profile\n", os->seg_duration);
1509             return AVERROR(EINVAL);
1510         }
1511
1512         if (os->frag_type == FRAG_TYPE_DURATION && !os->frag_duration) {
1513             av_log(s, AV_LOG_WARNING, "frag_type set to duration for stream %d but no frag_duration set\n", i);
1514             os->frag_type = c->streaming ? FRAG_TYPE_EVERY_FRAME : FRAG_TYPE_NONE;
1515         }
1516         if (os->frag_type == FRAG_TYPE_DURATION && os->frag_duration > os->seg_duration) {
1517             av_log(s, AV_LOG_ERROR, "Fragment duration %"PRId64" is longer than Segment duration %"PRId64"\n", os->frag_duration, os->seg_duration);
1518             return AVERROR(EINVAL);
1519         }
1520         if (os->frag_type == FRAG_TYPE_PFRAMES && (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO || !os->parser)) {
1521             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && !os->parser)
1522                 av_log(s, AV_LOG_WARNING, "frag_type set to P-Frame reordering, but no parser found for stream %d\n", i);
1523             os->frag_type = c->streaming ? FRAG_TYPE_EVERY_FRAME : FRAG_TYPE_NONE;
1524         }
1525
1526         if (os->segment_type == SEGMENT_TYPE_MP4) {
1527             if (c->streaming)
1528                 // skip_sidx : Reduce bitrate overhead
1529                 // skip_trailer : Avoids growing memory usage with time
1530                 av_dict_set(&opts, "movflags", "+dash+delay_moov+skip_sidx+skip_trailer", AV_DICT_APPEND);
1531             else {
1532                 if (c->global_sidx)
1533                     av_dict_set(&opts, "movflags", "+dash+delay_moov+global_sidx+skip_trailer", AV_DICT_APPEND);
1534                 else
1535                     av_dict_set(&opts, "movflags", "+dash+delay_moov+skip_trailer", AV_DICT_APPEND);
1536             }
1537             if (os->frag_type == FRAG_TYPE_EVERY_FRAME)
1538                 av_dict_set(&opts, "movflags", "+frag_every_frame", AV_DICT_APPEND);
1539             else
1540                 av_dict_set(&opts, "movflags", "+frag_custom", AV_DICT_APPEND);
1541             if (os->frag_type == FRAG_TYPE_DURATION)
1542                 av_dict_set_int(&opts, "frag_duration", os->frag_duration, 0);
1543             if (c->write_prft)
1544                 av_dict_set(&opts, "write_prft", "wallclock", 0);
1545         } else {
1546             av_dict_set_int(&opts, "cluster_time_limit", c->seg_duration / 1000, 0);
1547             av_dict_set_int(&opts, "cluster_size_limit", 5 * 1024 * 1024, 0); // set a large cluster size limit
1548             av_dict_set_int(&opts, "dash", 1, 0);
1549             av_dict_set_int(&opts, "dash_track_number", i + 1, 0);
1550             av_dict_set_int(&opts, "live", 1, 0);
1551         }
1552         ret = avformat_init_output(ctx, &opts);
1553         av_dict_free(&opts);
1554         if (ret < 0)
1555             return ret;
1556         os->ctx_inited = 1;
1557         avio_flush(ctx->pb);
1558
1559         av_log(s, AV_LOG_VERBOSE, "Representation %d init segment will be written to: %s\n", i, filename);
1560
1561         s->streams[i]->time_base = st->time_base;
1562         // If the muxer wants to shift timestamps, request to have them shifted
1563         // already before being handed to this muxer, so we don't have mismatches
1564         // between the MPD and the actual segments.
1565         s->avoid_negative_ts = ctx->avoid_negative_ts;
1566         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
1567             AVRational avg_frame_rate = s->streams[i]->avg_frame_rate;
1568             AVRational par;
1569             if (avg_frame_rate.num > 0) {
1570                 if (av_cmp_q(avg_frame_rate, as->min_frame_rate) < 0)
1571                     as->min_frame_rate = avg_frame_rate;
1572                 if (av_cmp_q(as->max_frame_rate, avg_frame_rate) < 0)
1573                     as->max_frame_rate = avg_frame_rate;
1574             } else {
1575                 as->ambiguous_frame_rate = 1;
1576             }
1577
1578             if (st->codecpar->width > as->max_width)
1579                 as->max_width = st->codecpar->width;
1580             if (st->codecpar->height > as->max_height)
1581                 as->max_height = st->codecpar->height;
1582
1583             if (st->sample_aspect_ratio.num)
1584                 os->sar = st->sample_aspect_ratio;
1585             else
1586                 os->sar = (AVRational){1,1};
1587             av_reduce(&par.num, &par.den,
1588                       st->codecpar->width * (int64_t)os->sar.num,
1589                       st->codecpar->height * (int64_t)os->sar.den,
1590                       1024 * 1024);
1591
1592             if (as->par.num && av_cmp_q(par, as->par)) {
1593                 av_log(s, AV_LOG_ERROR, "Conflicting stream par values in Adaptation Set %d\n", os->as_idx);
1594                 return AVERROR(EINVAL);
1595             }
1596             as->par = par;
1597
1598             c->has_video = 1;
1599         }
1600
1601         set_codec_str(s, st->codecpar, &st->avg_frame_rate, os->codec_str,
1602                       sizeof(os->codec_str));
1603         os->first_pts = AV_NOPTS_VALUE;
1604         os->max_pts = AV_NOPTS_VALUE;
1605         os->last_dts = AV_NOPTS_VALUE;
1606         os->segment_index = 1;
1607
1608         if (s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
1609             c->nr_of_streams_to_flush++;
1610     }
1611
1612     if (!c->has_video && c->seg_duration <= 0) {
1613         av_log(s, AV_LOG_WARNING, "no video stream and no seg duration set\n");
1614         return AVERROR(EINVAL);
1615     }
1616     if (!c->has_video && c->frag_type == FRAG_TYPE_PFRAMES)
1617         av_log(s, AV_LOG_WARNING, "no video stream and P-frame fragmentation set\n");
1618
1619     c->nr_of_streams_flushed = 0;
1620     c->target_latency_refid = -1;
1621
1622     return 0;
1623 }
1624
1625 static int dash_write_header(AVFormatContext *s)
1626 {
1627     DASHContext *c = s->priv_data;
1628     int i, ret;
1629     for (i = 0; i < s->nb_streams; i++) {
1630         OutputStream *os = &c->streams[i];
1631         if ((ret = avformat_write_header(os->ctx, NULL)) < 0)
1632             return ret;
1633
1634         // Flush init segment
1635         // Only for WebM segment, since for mp4 delay_moov is set and
1636         // the init segment is thus flushed after the first packets.
1637         if (os->segment_type == SEGMENT_TYPE_WEBM &&
1638             (ret = flush_init_segment(s, os)) < 0)
1639             return ret;
1640     }
1641     return ret;
1642 }
1643
1644 static int add_segment(OutputStream *os, const char *file,
1645                        int64_t time, int64_t duration,
1646                        int64_t start_pos, int64_t range_length,
1647                        int64_t index_length, int next_exp_index)
1648 {
1649     int err;
1650     Segment *seg;
1651     if (os->nb_segments >= os->segments_size) {
1652         os->segments_size = (os->segments_size + 1) * 2;
1653         if ((err = av_reallocp(&os->segments, sizeof(*os->segments) *
1654                                os->segments_size)) < 0) {
1655             os->segments_size = 0;
1656             os->nb_segments = 0;
1657             return err;
1658         }
1659     }
1660     seg = av_mallocz(sizeof(*seg));
1661     if (!seg)
1662         return AVERROR(ENOMEM);
1663     av_strlcpy(seg->file, file, sizeof(seg->file));
1664     seg->time = time;
1665     seg->duration = duration;
1666     if (seg->time < 0) { // If pts<0, it is expected to be cut away with an edit list
1667         seg->duration += seg->time;
1668         seg->time = 0;
1669     }
1670     seg->start_pos = start_pos;
1671     seg->range_length = range_length;
1672     seg->index_length = index_length;
1673     os->segments[os->nb_segments++] = seg;
1674     os->segment_index++;
1675     //correcting the segment index if it has fallen behind the expected value
1676     if (os->segment_index < next_exp_index) {
1677         av_log(NULL, AV_LOG_WARNING, "Correcting the segment index after file %s: current=%d corrected=%d\n",
1678                file, os->segment_index, next_exp_index);
1679         os->segment_index = next_exp_index;
1680     }
1681     return 0;
1682 }
1683
1684 static void write_styp(AVIOContext *pb)
1685 {
1686     avio_wb32(pb, 24);
1687     ffio_wfourcc(pb, "styp");
1688     ffio_wfourcc(pb, "msdh");
1689     avio_wb32(pb, 0); /* minor */
1690     ffio_wfourcc(pb, "msdh");
1691     ffio_wfourcc(pb, "msix");
1692 }
1693
1694 static void find_index_range(AVFormatContext *s, const char *full_path,
1695                              int64_t pos, int *index_length)
1696 {
1697     uint8_t buf[8];
1698     AVIOContext *pb;
1699     int ret;
1700
1701     ret = s->io_open(s, &pb, full_path, AVIO_FLAG_READ, NULL);
1702     if (ret < 0)
1703         return;
1704     if (avio_seek(pb, pos, SEEK_SET) != pos) {
1705         ff_format_io_close(s, &pb);
1706         return;
1707     }
1708     ret = avio_read(pb, buf, 8);
1709     ff_format_io_close(s, &pb);
1710     if (ret < 8)
1711         return;
1712     if (AV_RL32(&buf[4]) != MKTAG('s', 'i', 'd', 'x'))
1713         return;
1714     *index_length = AV_RB32(&buf[0]);
1715 }
1716
1717 static int update_stream_extradata(AVFormatContext *s, OutputStream *os,
1718                                    AVPacket *pkt, AVRational *frame_rate)
1719 {
1720     AVCodecParameters *par = os->ctx->streams[0]->codecpar;
1721     uint8_t *extradata;
1722     int ret, extradata_size;
1723
1724     if (par->extradata_size)
1725         return 0;
1726
1727     extradata = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, &extradata_size);
1728     if (!extradata_size)
1729         return 0;
1730
1731     ret = ff_alloc_extradata(par, extradata_size);
1732     if (ret < 0)
1733         return ret;
1734
1735     memcpy(par->extradata, extradata, extradata_size);
1736
1737     set_codec_str(s, par, frame_rate, os->codec_str, sizeof(os->codec_str));
1738
1739     return 0;
1740 }
1741
1742 static void dashenc_delete_file(AVFormatContext *s, char *filename) {
1743     DASHContext *c = s->priv_data;
1744     int http_base_proto = ff_is_http_proto(filename);
1745
1746     if (http_base_proto) {
1747         AVIOContext *out = NULL;
1748         AVDictionary *http_opts = NULL;
1749
1750         set_http_options(&http_opts, c);
1751         av_dict_set(&http_opts, "method", "DELETE", 0);
1752
1753         if (dashenc_io_open(s, &out, filename, &http_opts) < 0) {
1754             av_log(s, AV_LOG_ERROR, "failed to delete %s\n", filename);
1755         }
1756
1757         av_dict_free(&http_opts);
1758         ff_format_io_close(s, &out);
1759     } else {
1760         int res = avpriv_io_delete(filename);
1761         if (res < 0) {
1762             char errbuf[AV_ERROR_MAX_STRING_SIZE];
1763             av_strerror(res, errbuf, sizeof(errbuf));
1764             av_log(s, (res == AVERROR(ENOENT) ? AV_LOG_WARNING : AV_LOG_ERROR), "failed to delete %s: %s\n", filename, errbuf);
1765         }
1766     }
1767 }
1768
1769 static int dashenc_delete_segment_file(AVFormatContext *s, const char* file)
1770 {
1771     DASHContext *c = s->priv_data;
1772     size_t dirname_len, file_len;
1773     char filename[1024];
1774
1775     dirname_len = strlen(c->dirname);
1776     if (dirname_len >= sizeof(filename)) {
1777         av_log(s, AV_LOG_WARNING, "Cannot delete segments as the directory path is too long: %"PRIu64" characters: %s\n",
1778             (uint64_t)dirname_len, c->dirname);
1779         return AVERROR(ENAMETOOLONG);
1780     }
1781
1782     memcpy(filename, c->dirname, dirname_len);
1783
1784     file_len = strlen(file);
1785     if ((dirname_len + file_len) >= sizeof(filename)) {
1786         av_log(s, AV_LOG_WARNING, "Cannot delete segments as the path is too long: %"PRIu64" characters: %s%s\n",
1787             (uint64_t)(dirname_len + file_len), c->dirname, file);
1788         return AVERROR(ENAMETOOLONG);
1789     }
1790
1791     memcpy(filename + dirname_len, file, file_len + 1); // include the terminating zero
1792     dashenc_delete_file(s, filename);
1793
1794     return 0;
1795 }
1796
1797 static inline void dashenc_delete_media_segments(AVFormatContext *s, OutputStream *os, int remove_count)
1798 {
1799     for (int i = 0; i < remove_count; ++i) {
1800         dashenc_delete_segment_file(s, os->segments[i]->file);
1801
1802         // Delete the segment regardless of whether the file was successfully deleted
1803         av_free(os->segments[i]);
1804     }
1805
1806     os->nb_segments -= remove_count;
1807     memmove(os->segments, os->segments + remove_count, os->nb_segments * sizeof(*os->segments));
1808 }
1809
1810 static int dash_flush(AVFormatContext *s, int final, int stream)
1811 {
1812     DASHContext *c = s->priv_data;
1813     int i, ret = 0;
1814
1815     const char *proto = avio_find_protocol_name(s->url);
1816     int use_rename = proto && !strcmp(proto, "file");
1817
1818     int cur_flush_segment_index = 0, next_exp_index = -1;
1819     if (stream >= 0) {
1820         cur_flush_segment_index = c->streams[stream].segment_index;
1821
1822         //finding the next segment's expected index, based on the current pts value
1823         if (c->use_template && !c->use_timeline && c->index_correction &&
1824             c->streams[stream].last_pts != AV_NOPTS_VALUE &&
1825             c->streams[stream].first_pts != AV_NOPTS_VALUE) {
1826             int64_t pts_diff = av_rescale_q(c->streams[stream].last_pts -
1827                                             c->streams[stream].first_pts,
1828                                             s->streams[stream]->time_base,
1829                                             AV_TIME_BASE_Q);
1830             next_exp_index = (pts_diff / c->streams[stream].seg_duration) + 1;
1831         }
1832     }
1833
1834     for (i = 0; i < s->nb_streams; i++) {
1835         OutputStream *os = &c->streams[i];
1836         AVStream *st = s->streams[i];
1837         int range_length, index_length = 0;
1838
1839         if (!os->packets_written)
1840             continue;
1841
1842         // Flush the single stream that got a keyframe right now.
1843         // Flush all audio streams as well, in sync with video keyframes,
1844         // but not the other video streams.
1845         if (stream >= 0 && i != stream) {
1846             if (s->streams[stream]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO &&
1847                 s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
1848                 continue;
1849             if (s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
1850                 continue;
1851             // Make sure we don't flush audio streams multiple times, when
1852             // all video streams are flushed one at a time.
1853             if (c->has_video && os->segment_index > cur_flush_segment_index)
1854                 continue;
1855         }
1856
1857         if (!c->single_file) {
1858             if (os->segment_type == SEGMENT_TYPE_MP4 && !os->written_len)
1859                 write_styp(os->ctx->pb);
1860         } else {
1861             snprintf(os->full_path, sizeof(os->full_path), "%s%s", c->dirname, os->initfile);
1862         }
1863
1864         ret = flush_dynbuf(c, os, &range_length);
1865         if (ret < 0)
1866             break;
1867         os->packets_written = 0;
1868
1869         if (c->single_file) {
1870             find_index_range(s, os->full_path, os->pos, &index_length);
1871         } else {
1872             dashenc_io_close(s, &os->out, os->temp_path);
1873
1874             if (use_rename) {
1875                 ret = ff_rename(os->temp_path, os->full_path, os->ctx);
1876                 if (ret < 0)
1877                     break;
1878             }
1879         }
1880
1881         os->last_duration = FFMAX(os->last_duration, av_rescale_q(os->max_pts - os->start_pts,
1882                                                                   st->time_base,
1883                                                                   AV_TIME_BASE_Q));
1884
1885         if (!os->muxer_overhead && os->max_pts > os->start_pts)
1886             os->muxer_overhead = ((int64_t) (range_length - os->total_pkt_size) *
1887                                   8 * AV_TIME_BASE) /
1888                                  av_rescale_q(os->max_pts - os->start_pts,
1889                                               st->time_base, AV_TIME_BASE_Q);
1890         os->total_pkt_size = 0;
1891         os->total_pkt_duration = 0;
1892
1893         if (!os->bit_rate) {
1894             // calculate average bitrate of first segment
1895             int64_t bitrate = (int64_t) range_length * 8 * AV_TIME_BASE / av_rescale_q(os->max_pts - os->start_pts,
1896                                                                                        st->time_base,
1897                                                                                        AV_TIME_BASE_Q);
1898             if (bitrate >= 0)
1899                 os->bit_rate = bitrate;
1900         }
1901         add_segment(os, os->filename, os->start_pts, os->max_pts - os->start_pts, os->pos, range_length, index_length, next_exp_index);
1902         av_log(s, AV_LOG_VERBOSE, "Representation %d media segment %d written to: %s\n", i, os->segment_index, os->full_path);
1903
1904         os->pos += range_length;
1905     }
1906
1907     if (c->window_size) {
1908         for (i = 0; i < s->nb_streams; i++) {
1909             OutputStream *os = &c->streams[i];
1910             int remove_count = os->nb_segments - c->window_size - c->extra_window_size;
1911             if (remove_count > 0)
1912                 dashenc_delete_media_segments(s, os, remove_count);
1913         }
1914     }
1915
1916     if (final) {
1917         for (i = 0; i < s->nb_streams; i++) {
1918             OutputStream *os = &c->streams[i];
1919             if (os->ctx && os->ctx_inited) {
1920                 int64_t file_size = avio_tell(os->ctx->pb);
1921                 av_write_trailer(os->ctx);
1922                 if (c->global_sidx) {
1923                     int j, start_index, start_number;
1924                     int64_t sidx_size = avio_tell(os->ctx->pb) - file_size;
1925                     get_start_index_number(os, c, &start_index, &start_number);
1926                     if (start_index >= os->nb_segments ||
1927                         os->segment_type != SEGMENT_TYPE_MP4)
1928                         continue;
1929                     os->init_range_length += sidx_size;
1930                     for (j = start_index; j < os->nb_segments; j++) {
1931                         Segment *seg = os->segments[j];
1932                         seg->start_pos += sidx_size;
1933                     }
1934                 }
1935
1936             }
1937         }
1938     }
1939     if (ret >= 0) {
1940         if (c->has_video && !final) {
1941             c->nr_of_streams_flushed++;
1942             if (c->nr_of_streams_flushed != c->nr_of_streams_to_flush)
1943                 return ret;
1944
1945             c->nr_of_streams_flushed = 0;
1946         }
1947         ret = write_manifest(s, final);
1948     }
1949     return ret;
1950 }
1951
1952 static int dash_write_packet(AVFormatContext *s, AVPacket *pkt)
1953 {
1954     DASHContext *c = s->priv_data;
1955     AVStream *st = s->streams[pkt->stream_index];
1956     OutputStream *os = &c->streams[pkt->stream_index];
1957     AdaptationSet *as = &c->as[os->as_idx - 1];
1958     int64_t seg_end_duration, elapsed_duration;
1959     int ret;
1960
1961     ret = update_stream_extradata(s, os, pkt, &st->avg_frame_rate);
1962     if (ret < 0)
1963         return ret;
1964
1965     // Fill in a heuristic guess of the packet duration, if none is available.
1966     // The mp4 muxer will do something similar (for the last packet in a fragment)
1967     // if nothing is set (setting it for the other packets doesn't hurt).
1968     // By setting a nonzero duration here, we can be sure that the mp4 muxer won't
1969     // invoke its heuristic (this doesn't have to be identical to that algorithm),
1970     // so that we know the exact timestamps of fragments.
1971     if (!pkt->duration && os->last_dts != AV_NOPTS_VALUE)
1972         pkt->duration = pkt->dts - os->last_dts;
1973     os->last_dts = pkt->dts;
1974
1975     // If forcing the stream to start at 0, the mp4 muxer will set the start
1976     // timestamps to 0. Do the same here, to avoid mismatches in duration/timestamps.
1977     if (os->first_pts == AV_NOPTS_VALUE &&
1978         s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO) {
1979         pkt->pts -= pkt->dts;
1980         pkt->dts  = 0;
1981     }
1982
1983     if (os->first_pts == AV_NOPTS_VALUE) {
1984         int side_data_size;
1985         AVProducerReferenceTime *prft = (AVProducerReferenceTime *)av_packet_get_side_data(pkt, AV_PKT_DATA_PRFT,
1986                                                                                            &side_data_size);
1987         if (prft && side_data_size == sizeof(AVProducerReferenceTime) && !prft->flags) {
1988             os->producer_reference_time = prft->wallclock;
1989             if (c->target_latency_refid < 0)
1990                 c->target_latency_refid = pkt->stream_index;
1991         }
1992         os->first_pts = pkt->pts;
1993     }
1994     os->last_pts = pkt->pts;
1995
1996     if (!c->availability_start_time[0]) {
1997         int64_t start_time_us = av_gettime();
1998         c->start_time_s = start_time_us / 1000000;
1999         format_date(c->availability_start_time,
2000                     sizeof(c->availability_start_time), start_time_us);
2001     }
2002
2003     if (!os->packets_written)
2004         os->availability_time_offset = 0;
2005
2006     if (!os->availability_time_offset &&
2007         ((os->frag_type == FRAG_TYPE_DURATION && os->seg_duration != os->frag_duration) ||
2008          (os->frag_type == FRAG_TYPE_EVERY_FRAME && pkt->duration))) {
2009         int64_t frame_duration = 0;
2010
2011         switch (os->frag_type) {
2012         case FRAG_TYPE_DURATION:
2013             frame_duration = os->frag_duration;
2014             break;
2015         case FRAG_TYPE_EVERY_FRAME:
2016             frame_duration = av_rescale_q(pkt->duration, st->time_base, AV_TIME_BASE_Q);
2017             break;
2018         }
2019
2020          os->availability_time_offset = ((double) os->seg_duration -
2021                                          frame_duration) / AV_TIME_BASE;
2022         as->max_frag_duration = FFMAX(frame_duration, as->max_frag_duration);
2023     }
2024
2025     if (c->use_template && !c->use_timeline) {
2026         elapsed_duration = pkt->pts - os->first_pts;
2027         seg_end_duration = (int64_t) os->segment_index * os->seg_duration;
2028     } else {
2029         elapsed_duration = pkt->pts - os->start_pts;
2030         seg_end_duration = os->seg_duration;
2031     }
2032
2033     if (pkt->flags & AV_PKT_FLAG_KEY && os->packets_written &&
2034         av_compare_ts(elapsed_duration, st->time_base,
2035                       seg_end_duration, AV_TIME_BASE_Q) >= 0) {
2036         if (!c->has_video || st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
2037         c->last_duration = av_rescale_q(pkt->pts - os->start_pts,
2038                                         st->time_base,
2039                                         AV_TIME_BASE_Q);
2040         c->total_duration = av_rescale_q(pkt->pts - os->first_pts,
2041                                          st->time_base,
2042                                          AV_TIME_BASE_Q);
2043
2044         if ((!c->use_timeline || !c->use_template) && os->last_duration) {
2045             if (c->last_duration < os->last_duration*9/10 ||
2046                 c->last_duration > os->last_duration*11/10) {
2047                 av_log(s, AV_LOG_WARNING,
2048                        "Segment durations differ too much, enable use_timeline "
2049                        "and use_template, or keep a stricter keyframe interval\n");
2050             }
2051         }
2052         }
2053
2054         if (c->write_prft && os->producer_reference_time && !os->producer_reference_time_str[0])
2055             format_date(os->producer_reference_time_str,
2056                         sizeof(os->producer_reference_time_str),
2057                         os->producer_reference_time);
2058
2059         if ((ret = dash_flush(s, 0, pkt->stream_index)) < 0)
2060             return ret;
2061     }
2062
2063     if (!os->packets_written) {
2064         // If we wrote a previous segment, adjust the start time of the segment
2065         // to the end of the previous one (which is the same as the mp4 muxer
2066         // does). This avoids gaps in the timeline.
2067         if (os->max_pts != AV_NOPTS_VALUE)
2068             os->start_pts = os->max_pts;
2069         else
2070             os->start_pts = pkt->pts;
2071     }
2072     if (os->max_pts == AV_NOPTS_VALUE)
2073         os->max_pts = pkt->pts + pkt->duration;
2074     else
2075         os->max_pts = FFMAX(os->max_pts, pkt->pts + pkt->duration);
2076
2077     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
2078         os->frag_type == FRAG_TYPE_PFRAMES &&
2079         os->packets_written) {
2080         uint8_t *data;
2081         int size;
2082
2083         av_assert0(os->parser);
2084         av_parser_parse2(os->parser, os->parser_avctx,
2085                          &data, &size, pkt->data, pkt->size,
2086                          pkt->pts, pkt->dts, pkt->pos);
2087
2088         if ((os->parser->pict_type == AV_PICTURE_TYPE_P &&
2089              st->codecpar->video_delay &&
2090              !(os->last_flags & AV_PKT_FLAG_KEY)) ||
2091             pkt->flags & AV_PKT_FLAG_KEY) {
2092             ret = av_write_frame(os->ctx, NULL);
2093             if (ret < 0)
2094                 return ret;
2095
2096             if (!os->availability_time_offset) {
2097                 int64_t frag_duration = av_rescale_q(os->total_pkt_duration, st->time_base,
2098                                                      AV_TIME_BASE_Q);
2099                 os->availability_time_offset = ((double) os->seg_duration -
2100                                                  frag_duration) / AV_TIME_BASE;
2101                as->max_frag_duration = FFMAX(frag_duration, as->max_frag_duration);
2102             }
2103         }
2104     }
2105
2106     if (pkt->flags & AV_PKT_FLAG_KEY && (os->packets_written || os->nb_segments) && !os->gop_size) {
2107         os->gop_size = os->last_duration + av_rescale_q(os->total_pkt_duration, st->time_base, AV_TIME_BASE_Q);
2108         c->max_gop_size = FFMAX(c->max_gop_size, os->gop_size);
2109     }
2110
2111     if ((ret = ff_write_chained(os->ctx, 0, pkt, s, 0)) < 0)
2112         return ret;
2113
2114     os->packets_written++;
2115     os->total_pkt_size += pkt->size;
2116     os->total_pkt_duration += pkt->duration;
2117     os->last_flags = pkt->flags;
2118
2119     if (!os->init_range_length)
2120         flush_init_segment(s, os);
2121
2122     //open the output context when the first frame of a segment is ready
2123     if (!c->single_file && os->packets_written == 1) {
2124         AVDictionary *opts = NULL;
2125         const char *proto = avio_find_protocol_name(s->url);
2126         int use_rename = proto && !strcmp(proto, "file");
2127         os->filename[0] = os->full_path[0] = os->temp_path[0] = '\0';
2128         ff_dash_fill_tmpl_params(os->filename, sizeof(os->filename),
2129                                  os->media_seg_name, pkt->stream_index,
2130                                  os->segment_index, os->bit_rate, os->start_pts);
2131         snprintf(os->full_path, sizeof(os->full_path), "%s%s", c->dirname,
2132                  os->filename);
2133         snprintf(os->temp_path, sizeof(os->temp_path),
2134                  use_rename ? "%s.tmp" : "%s", os->full_path);
2135         set_http_options(&opts, c);
2136         ret = dashenc_io_open(s, &os->out, os->temp_path, &opts);
2137         av_dict_free(&opts);
2138         if (ret < 0) {
2139             return handle_io_open_error(s, ret, os->temp_path);
2140         }
2141         if (c->lhls) {
2142             char *prefetch_url = use_rename ? NULL : os->filename;
2143             write_hls_media_playlist(os, s, pkt->stream_index, 0, prefetch_url);
2144         }
2145     }
2146
2147     //write out the data immediately in streaming mode
2148     if (c->streaming && os->segment_type == SEGMENT_TYPE_MP4) {
2149         int len = 0;
2150         uint8_t *buf = NULL;
2151         if (!os->written_len)
2152             write_styp(os->ctx->pb);
2153         avio_flush(os->ctx->pb);
2154         len = avio_get_dyn_buf (os->ctx->pb, &buf);
2155         if (os->out) {
2156             avio_write(os->out, buf + os->written_len, len - os->written_len);
2157             avio_flush(os->out);
2158         }
2159         os->written_len = len;
2160     }
2161
2162     return ret;
2163 }
2164
2165 static int dash_write_trailer(AVFormatContext *s)
2166 {
2167     DASHContext *c = s->priv_data;
2168     int i;
2169
2170     if (s->nb_streams > 0) {
2171         OutputStream *os = &c->streams[0];
2172         // If no segments have been written so far, try to do a crude
2173         // guess of the segment duration
2174         if (!c->last_duration)
2175             c->last_duration = av_rescale_q(os->max_pts - os->start_pts,
2176                                             s->streams[0]->time_base,
2177                                             AV_TIME_BASE_Q);
2178         c->total_duration = av_rescale_q(os->max_pts - os->first_pts,
2179                                          s->streams[0]->time_base,
2180                                          AV_TIME_BASE_Q);
2181     }
2182     dash_flush(s, 1, -1);
2183
2184     if (c->remove_at_exit) {
2185         for (i = 0; i < s->nb_streams; ++i) {
2186             OutputStream *os = &c->streams[i];
2187             dashenc_delete_media_segments(s, os, os->nb_segments);
2188             dashenc_delete_segment_file(s, os->initfile);
2189             if (c->hls_playlist && os->segment_type == SEGMENT_TYPE_MP4) {
2190                 char filename[1024];
2191                 get_hls_playlist_name(filename, sizeof(filename), c->dirname, i);
2192                 dashenc_delete_file(s, filename);
2193             }
2194         }
2195         dashenc_delete_file(s, s->url);
2196
2197         if (c->hls_playlist && c->master_playlist_created) {
2198             char filename[1024];
2199             snprintf(filename, sizeof(filename), "%smaster.m3u8", c->dirname);
2200             dashenc_delete_file(s, filename);
2201         }
2202     }
2203
2204     return 0;
2205 }
2206
2207 static int dash_check_bitstream(struct AVFormatContext *s, const AVPacket *avpkt)
2208 {
2209     DASHContext *c = s->priv_data;
2210     OutputStream *os = &c->streams[avpkt->stream_index];
2211     AVFormatContext *oc = os->ctx;
2212     if (oc->oformat->check_bitstream) {
2213         int ret;
2214         AVPacket pkt = *avpkt;
2215         pkt.stream_index = 0;
2216         ret = oc->oformat->check_bitstream(oc, &pkt);
2217         if (ret == 1) {
2218             AVStream *st = s->streams[avpkt->stream_index];
2219             AVStream *ost = oc->streams[0];
2220             st->internal->bsfcs = ost->internal->bsfcs;
2221             st->internal->nb_bsfcs = ost->internal->nb_bsfcs;
2222             ost->internal->bsfcs = NULL;
2223             ost->internal->nb_bsfcs = 0;
2224         }
2225         return ret;
2226     }
2227     return 1;
2228 }
2229
2230 #define OFFSET(x) offsetof(DASHContext, x)
2231 #define E AV_OPT_FLAG_ENCODING_PARAM
2232 static const AVOption options[] = {
2233     { "adaptation_sets", "Adaptation sets. Syntax: id=0,streams=0,1,2 id=1,streams=3,4 and so on", OFFSET(adaptation_sets), AV_OPT_TYPE_STRING, { 0 }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
2234     { "window_size", "number of segments kept in the manifest", OFFSET(window_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, E },
2235     { "extra_window_size", "number of segments kept outside of the manifest before removing from disk", OFFSET(extra_window_size), AV_OPT_TYPE_INT, { .i64 = 5 }, 0, INT_MAX, E },
2236 #if FF_API_DASH_MIN_SEG_DURATION
2237     { "min_seg_duration", "minimum segment duration (in microseconds) (will be deprecated)", OFFSET(min_seg_duration), AV_OPT_TYPE_INT, { .i64 = 5000000 }, 0, INT_MAX, E },
2238 #endif
2239     { "seg_duration", "segment duration (in seconds, fractional value can be set)", OFFSET(seg_duration), AV_OPT_TYPE_DURATION, { .i64 = 5000000 }, 0, INT_MAX, E },
2240     { "frag_duration", "fragment duration (in seconds, fractional value can be set)", OFFSET(frag_duration), AV_OPT_TYPE_DURATION, { .i64 = 0 }, 0, INT_MAX, E },
2241     { "frag_type", "set type of interval for fragments", OFFSET(frag_type), AV_OPT_TYPE_INT, {.i64 = FRAG_TYPE_NONE }, 0, FRAG_TYPE_NB - 1, E, "frag_type"},
2242     { "none", "one fragment per segment", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_NONE }, 0, UINT_MAX, E, "frag_type"},
2243     { "every_frame", "fragment at every frame", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_EVERY_FRAME }, 0, UINT_MAX, E, "frag_type"},
2244     { "duration", "fragment at specific time intervals", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_DURATION }, 0, UINT_MAX, E, "frag_type"},
2245     { "pframes", "fragment at keyframes and following P-Frame reordering (Video only, experimental)", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_PFRAMES }, 0, UINT_MAX, E, "frag_type"},
2246     { "remove_at_exit", "remove all segments when finished", OFFSET(remove_at_exit), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2247     { "use_template", "Use SegmentTemplate instead of SegmentList", OFFSET(use_template), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
2248     { "use_timeline", "Use SegmentTimeline in SegmentTemplate", OFFSET(use_timeline), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
2249     { "single_file", "Store all segments in one file, accessed using byte ranges", OFFSET(single_file), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2250     { "single_file_name", "DASH-templated name to be used for baseURL. Implies storing all segments in one file, accessed using byte ranges", OFFSET(single_file_name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
2251     { "init_seg_name", "DASH-templated name to used for the initialization segment", OFFSET(init_seg_name), AV_OPT_TYPE_STRING, {.str = "init-stream$RepresentationID$.$ext$"}, 0, 0, E },
2252     { "media_seg_name", "DASH-templated name to used for the media segments", OFFSET(media_seg_name), AV_OPT_TYPE_STRING, {.str = "chunk-stream$RepresentationID$-$Number%05d$.$ext$"}, 0, 0, E },
2253     { "utc_timing_url", "URL of the page that will return the UTC timestamp in ISO format", OFFSET(utc_timing_url), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
2254     { "method", "set the HTTP method", OFFSET(method), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
2255     { "http_user_agent", "override User-Agent field in HTTP header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E},
2256     { "http_persistent", "Use persistent HTTP connections", OFFSET(http_persistent), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
2257     { "hls_playlist", "Generate HLS playlist files(master.m3u8, media_%d.m3u8)", OFFSET(hls_playlist), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2258     { "streaming", "Enable/Disable streaming mode of output. Each frame will be moof fragment", OFFSET(streaming), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2259     { "timeout", "set timeout for socket I/O operations", OFFSET(timeout), AV_OPT_TYPE_DURATION, { .i64 = -1 }, -1, INT_MAX, .flags = E },
2260     { "index_correction", "Enable/Disable segment index correction logic", OFFSET(index_correction), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2261     { "format_options","set list of options for the container format (mp4/webm) used for dash", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL},  0, 0, E},
2262     { "global_sidx", "Write global SIDX atom. Applicable only for single file, mp4 output, non-streaming mode", OFFSET(global_sidx), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2263     { "dash_segment_type", "set dash segment files type", OFFSET(segment_type_option), AV_OPT_TYPE_INT, {.i64 = SEGMENT_TYPE_AUTO }, 0, SEGMENT_TYPE_NB - 1, E, "segment_type"},
2264     { "auto", "select segment file format based on codec", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_TYPE_AUTO }, 0, UINT_MAX,   E, "segment_type"},
2265     { "mp4", "make segment file in ISOBMFF format", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_TYPE_MP4 }, 0, UINT_MAX,   E, "segment_type"},
2266     { "webm", "make segment file in WebM format", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_TYPE_WEBM }, 0, UINT_MAX,   E, "segment_type"},
2267     { "ignore_io_errors", "Ignore IO errors during open and write. Useful for long-duration runs with network output", OFFSET(ignore_io_errors), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2268     { "lhls", "Enable Low-latency HLS(Experimental). Adds #EXT-X-PREFETCH tag with current segment's URI", OFFSET(lhls), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2269     { "ldash", "Enable Low-latency dash. Constrains the value of a few elements", OFFSET(ldash), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2270     { "master_m3u8_publish_rate", "Publish master playlist every after this many segment intervals", OFFSET(master_publish_rate), AV_OPT_TYPE_INT, {.i64 = 0}, 0, UINT_MAX, E},
2271     { "write_prft", "Write producer reference time element", OFFSET(write_prft), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E},
2272     { "mpd_profile", "Set profiles. Elements and values used in the manifest may be constrained by them", OFFSET(profile), AV_OPT_TYPE_FLAGS, {.i64 = MPD_PROFILE_DASH }, 0, UINT_MAX, E, "mpd_profile"},
2273     { "dash", "MPEG-DASH ISO Base media file format live profile", 0, AV_OPT_TYPE_CONST, {.i64 = MPD_PROFILE_DASH }, 0, UINT_MAX, E, "mpd_profile"},
2274     { "dvb_dash", "DVB-DASH profile", 0, AV_OPT_TYPE_CONST, {.i64 = MPD_PROFILE_DVB }, 0, UINT_MAX, E, "mpd_profile"},
2275     { "http_opts", "HTTP protocol options", OFFSET(http_opts), AV_OPT_TYPE_DICT, { .str = NULL }, 0, 0, E },
2276     { "target_latency", "Set desired target latency for Low-latency dash", OFFSET(target_latency), AV_OPT_TYPE_DURATION, { .i64 = 0 }, 0, INT_MAX, E },
2277     { NULL },
2278 };
2279
2280 static const AVClass dash_class = {
2281     .class_name = "dash muxer",
2282     .item_name  = av_default_item_name,
2283     .option     = options,
2284     .version    = LIBAVUTIL_VERSION_INT,
2285 };
2286
2287 AVOutputFormat ff_dash_muxer = {
2288     .name           = "dash",
2289     .long_name      = NULL_IF_CONFIG_SMALL("DASH Muxer"),
2290     .extensions     = "mpd",
2291     .priv_data_size = sizeof(DASHContext),
2292     .audio_codec    = AV_CODEC_ID_AAC,
2293     .video_codec    = AV_CODEC_ID_H264,
2294     .flags          = AVFMT_GLOBALHEADER | AVFMT_NOFILE | AVFMT_TS_NEGATIVE,
2295     .init           = dash_init,
2296     .write_header   = dash_write_header,
2297     .write_packet   = dash_write_packet,
2298     .write_trailer  = dash_write_trailer,
2299     .deinit         = dash_free,
2300     .check_bitstream = dash_check_bitstream,
2301     .priv_class     = &dash_class,
2302 };