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