]> git.sesse.net Git - ffmpeg/blob - libavformat/dashenc.c
Merge commit '47687a2f8aca3f65b6fdd117b1cb66a7409a7fd1'
[ffmpeg] / libavformat / dashenc.c
1 /*
2  * MPEG-DASH ISO BMFF segmenter
3  * Copyright (c) 2014 Martin Storsjo
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23 #if HAVE_UNISTD_H
24 #include <unistd.h>
25 #endif
26
27 #include "libavutil/avassert.h"
28 #include "libavutil/avutil.h"
29 #include "libavutil/avstring.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/mathematics.h"
32 #include "libavutil/opt.h"
33 #include "libavutil/rational.h"
34 #include "libavutil/time_internal.h"
35
36 #include "avc.h"
37 #include "avformat.h"
38 #include "avio_internal.h"
39 #include "hlsplaylist.h"
40 #include "internal.h"
41 #include "isom.h"
42 #include "os_support.h"
43 #include "url.h"
44 #include "dash.h"
45
46 typedef struct Segment {
47     char file[1024];
48     int64_t start_pos;
49     int range_length, index_length;
50     int64_t time;
51     int duration;
52     int n;
53 } Segment;
54
55 typedef struct AdaptationSet {
56     char id[10];
57     enum AVMediaType media_type;
58     AVDictionary *metadata;
59     AVRational min_frame_rate, max_frame_rate;
60     int ambiguous_frame_rate;
61 } AdaptationSet;
62
63 typedef struct OutputStream {
64     AVFormatContext *ctx;
65     int ctx_inited, as_idx;
66     AVIOContext *out;
67     char format_name[8];
68     int packets_written;
69     char initfile[1024];
70     int64_t init_start_pos, pos;
71     int init_range_length;
72     int nb_segments, segments_size, segment_index;
73     Segment **segments;
74     int64_t first_pts, start_pts, max_pts;
75     int64_t last_dts;
76     int bit_rate;
77     char bandwidth_str[64];
78
79     char codec_str[100];
80 } OutputStream;
81
82 typedef struct DASHContext {
83     const AVClass *class;  /* Class for private options. */
84     char *adaptation_sets;
85     AdaptationSet *as;
86     int nb_as;
87     int window_size;
88     int extra_window_size;
89     int min_seg_duration;
90     int remove_at_exit;
91     int use_template;
92     int use_timeline;
93     int single_file;
94     OutputStream *streams;
95     int has_video;
96     int64_t last_duration;
97     int64_t total_duration;
98     char availability_start_time[100];
99     char dirname[1024];
100     const char *single_file_name;
101     const char *init_seg_name;
102     const char *media_seg_name;
103     const char *utc_timing_url;
104     const char *user_agent;
105     int hls_playlist;
106     int master_playlist_created;
107 } DASHContext;
108
109 static struct codec_string {
110     int id;
111     const char *str;
112 } codecs[] = {
113     { AV_CODEC_ID_VP8, "vp8" },
114     { AV_CODEC_ID_VP9, "vp9" },
115     { AV_CODEC_ID_VORBIS, "vorbis" },
116     { AV_CODEC_ID_OPUS, "opus" },
117     { 0, NULL }
118 };
119
120 static void set_codec_str(AVFormatContext *s, AVCodecParameters *par,
121                           char *str, int size)
122 {
123     const AVCodecTag *tags[2] = { NULL, NULL };
124     uint32_t tag;
125     int i;
126
127     // common Webm codecs are not part of RFC 6381
128     for (i = 0; codecs[i].id; i++)
129         if (codecs[i].id == par->codec_id) {
130             av_strlcpy(str, codecs[i].str, size);
131             return;
132         }
133
134     // for codecs part of RFC 6381
135     if (par->codec_type == AVMEDIA_TYPE_VIDEO)
136         tags[0] = ff_codec_movvideo_tags;
137     else if (par->codec_type == AVMEDIA_TYPE_AUDIO)
138         tags[0] = ff_codec_movaudio_tags;
139     else
140         return;
141
142     tag = av_codec_get_tag(tags, par->codec_id);
143     if (!tag)
144         return;
145     if (size < 5)
146         return;
147
148     AV_WL32(str, tag);
149     str[4] = '\0';
150     if (!strcmp(str, "mp4a") || !strcmp(str, "mp4v")) {
151         uint32_t oti;
152         tags[0] = ff_mp4_obj_type;
153         oti = av_codec_get_tag(tags, par->codec_id);
154         if (oti)
155             av_strlcatf(str, size, ".%02"PRIx32, oti);
156         else
157             return;
158
159         if (tag == MKTAG('m', 'p', '4', 'a')) {
160             if (par->extradata_size >= 2) {
161                 int aot = par->extradata[0] >> 3;
162                 if (aot == 31)
163                     aot = ((AV_RB16(par->extradata) >> 5) & 0x3f) + 32;
164                 av_strlcatf(str, size, ".%d", aot);
165             }
166         } else if (tag == MKTAG('m', 'p', '4', 'v')) {
167             // Unimplemented, should output ProfileLevelIndication as a decimal number
168             av_log(s, AV_LOG_WARNING, "Incomplete RFC 6381 codec string for mp4v\n");
169         }
170     } else if (!strcmp(str, "avc1")) {
171         uint8_t *tmpbuf = NULL;
172         uint8_t *extradata = par->extradata;
173         int extradata_size = par->extradata_size;
174         if (!extradata_size)
175             return;
176         if (extradata[0] != 1) {
177             AVIOContext *pb;
178             if (avio_open_dyn_buf(&pb) < 0)
179                 return;
180             if (ff_isom_write_avcc(pb, extradata, extradata_size) < 0) {
181                 ffio_free_dyn_buf(&pb);
182                 return;
183             }
184             extradata_size = avio_close_dyn_buf(pb, &extradata);
185             tmpbuf = extradata;
186         }
187
188         if (extradata_size >= 4)
189             av_strlcatf(str, size, ".%02x%02x%02x",
190                         extradata[1], extradata[2], extradata[3]);
191         av_free(tmpbuf);
192     }
193 }
194
195 static int flush_dynbuf(OutputStream *os, int *range_length)
196 {
197     uint8_t *buffer;
198
199     if (!os->ctx->pb) {
200         return AVERROR(EINVAL);
201     }
202
203     // flush
204     av_write_frame(os->ctx, NULL);
205     avio_flush(os->ctx->pb);
206
207     // write out to file
208     *range_length = avio_close_dyn_buf(os->ctx->pb, &buffer);
209     os->ctx->pb = NULL;
210     avio_write(os->out, buffer, *range_length);
211     av_free(buffer);
212
213     // re-open buffer
214     return avio_open_dyn_buf(&os->ctx->pb);
215 }
216
217 static void set_http_options(AVDictionary **options, DASHContext *c)
218 {
219     if (c->user_agent)
220         av_dict_set(options, "user_agent", c->user_agent, 0);
221 }
222
223 static void get_hls_playlist_name(char *playlist_name, int string_size,
224                                   const char *base_url, int id) {
225     if (base_url)
226         snprintf(playlist_name, string_size, "%smedia_%d.m3u8", base_url, id);
227     else
228         snprintf(playlist_name, string_size, "media_%d.m3u8", id);
229 }
230
231 static int flush_init_segment(AVFormatContext *s, OutputStream *os)
232 {
233     DASHContext *c = s->priv_data;
234     int ret, range_length;
235
236     ret = flush_dynbuf(os, &range_length);
237     if (ret < 0)
238         return ret;
239
240     os->pos = os->init_range_length = range_length;
241     if (!c->single_file)
242         ff_format_io_close(s, &os->out);
243     return 0;
244 }
245
246 static void dash_free(AVFormatContext *s)
247 {
248     DASHContext *c = s->priv_data;
249     int i, j;
250
251     if (c->as) {
252         for (i = 0; i < c->nb_as; i++)
253             av_dict_free(&c->as[i].metadata);
254         av_freep(&c->as);
255         c->nb_as = 0;
256     }
257
258     if (!c->streams)
259         return;
260     for (i = 0; i < s->nb_streams; i++) {
261         OutputStream *os = &c->streams[i];
262         if (os->ctx && os->ctx_inited)
263             av_write_trailer(os->ctx);
264         if (os->ctx && os->ctx->pb)
265             ffio_free_dyn_buf(&os->ctx->pb);
266         ff_format_io_close(s, &os->out);
267         if (os->ctx)
268             avformat_free_context(os->ctx);
269         for (j = 0; j < os->nb_segments; j++)
270             av_free(os->segments[j]);
271         av_free(os->segments);
272     }
273     av_freep(&c->streams);
274 }
275
276 static void output_segment_list(OutputStream *os, AVIOContext *out, DASHContext *c,
277                                 int representation_id, int final)
278 {
279     int i, start_index = 0, start_number = 1;
280     if (c->window_size) {
281         start_index  = FFMAX(os->nb_segments   - c->window_size, 0);
282         start_number = FFMAX(os->segment_index - c->window_size, 1);
283     }
284
285     if (c->use_template) {
286         int timescale = c->use_timeline ? os->ctx->streams[0]->time_base.den : AV_TIME_BASE;
287         avio_printf(out, "\t\t\t\t<SegmentTemplate timescale=\"%d\" ", timescale);
288         if (!c->use_timeline)
289             avio_printf(out, "duration=\"%"PRId64"\" ", c->last_duration);
290         avio_printf(out, "initialization=\"%s\" media=\"%s\" startNumber=\"%d\">\n", c->init_seg_name, c->media_seg_name, c->use_timeline ? start_number : 1);
291         if (c->use_timeline) {
292             int64_t cur_time = 0;
293             avio_printf(out, "\t\t\t\t\t<SegmentTimeline>\n");
294             for (i = start_index; i < os->nb_segments; ) {
295                 Segment *seg = os->segments[i];
296                 int repeat = 0;
297                 avio_printf(out, "\t\t\t\t\t\t<S ");
298                 if (i == start_index || seg->time != cur_time) {
299                     cur_time = seg->time;
300                     avio_printf(out, "t=\"%"PRId64"\" ", seg->time);
301                 }
302                 avio_printf(out, "d=\"%d\" ", seg->duration);
303                 while (i + repeat + 1 < os->nb_segments &&
304                        os->segments[i + repeat + 1]->duration == seg->duration &&
305                        os->segments[i + repeat + 1]->time == os->segments[i + repeat]->time + os->segments[i + repeat]->duration)
306                     repeat++;
307                 if (repeat > 0)
308                     avio_printf(out, "r=\"%d\" ", repeat);
309                 avio_printf(out, "/>\n");
310                 i += 1 + repeat;
311                 cur_time += (1 + repeat) * seg->duration;
312             }
313             avio_printf(out, "\t\t\t\t\t</SegmentTimeline>\n");
314         }
315         avio_printf(out, "\t\t\t\t</SegmentTemplate>\n");
316     } else if (c->single_file) {
317         avio_printf(out, "\t\t\t\t<BaseURL>%s</BaseURL>\n", os->initfile);
318         avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, c->last_duration, start_number);
319         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);
320         for (i = start_index; i < os->nb_segments; i++) {
321             Segment *seg = os->segments[i];
322             avio_printf(out, "\t\t\t\t\t<SegmentURL mediaRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->range_length - 1);
323             if (seg->index_length)
324                 avio_printf(out, "indexRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->index_length - 1);
325             avio_printf(out, "/>\n");
326         }
327         avio_printf(out, "\t\t\t\t</SegmentList>\n");
328     } else {
329         avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, c->last_duration, start_number);
330         avio_printf(out, "\t\t\t\t\t<Initialization sourceURL=\"%s\" />\n", os->initfile);
331         for (i = start_index; i < os->nb_segments; i++) {
332             Segment *seg = os->segments[i];
333             avio_printf(out, "\t\t\t\t\t<SegmentURL media=\"%s\" />\n", seg->file);
334         }
335         avio_printf(out, "\t\t\t\t</SegmentList>\n");
336     }
337     if (c->hls_playlist && start_index < os->nb_segments)
338     {
339         int timescale = os->ctx->streams[0]->time_base.den;
340         char temp_filename_hls[1024];
341         char filename_hls[1024];
342         AVIOContext *out_hls = NULL;
343         AVDictionary *http_opts = NULL;
344         int target_duration = 0;
345         int ret = 0;
346         const char *proto = avio_find_protocol_name(c->dirname);
347         int use_rename = proto && !strcmp(proto, "file");
348
349         get_hls_playlist_name(filename_hls, sizeof(filename_hls),
350                               c->dirname, representation_id);
351
352         snprintf(temp_filename_hls, sizeof(temp_filename_hls), use_rename ? "%s.tmp" : "%s", filename_hls);
353
354         set_http_options(&http_opts, c);
355         avio_open2(&out_hls, temp_filename_hls, AVIO_FLAG_WRITE, NULL, &http_opts);
356         av_dict_free(&http_opts);
357         for (i = start_index; i < os->nb_segments; i++) {
358             Segment *seg = os->segments[i];
359             double duration = (double) seg->duration / timescale;
360             if (target_duration <= duration)
361                 target_duration = hls_get_int_from_double(duration);
362         }
363
364         ff_hls_write_playlist_header(out_hls, 6, -1, target_duration,
365                                      start_number, PLAYLIST_TYPE_NONE);
366
367         ff_hls_write_init_file(out_hls, os->initfile, c->single_file,
368                                os->init_range_length, os->init_start_pos);
369
370         for (i = start_index; i < os->nb_segments; i++) {
371             Segment *seg = os->segments[i];
372             ret = ff_hls_write_file_entry(out_hls, 0, c->single_file,
373                                     (double) seg->duration / timescale, 0,
374                                     seg->range_length, seg->start_pos, NULL,
375                                     c->single_file ? os->initfile : seg->file,
376                                     NULL);
377             if (ret < 0) {
378                 av_log(os->ctx, AV_LOG_WARNING, "ff_hls_write_file_entry get error\n");
379             }
380         }
381
382         if (final)
383             ff_hls_write_end_list(out_hls);
384
385         avio_close(out_hls);
386         if (use_rename)
387             if (avpriv_io_move(temp_filename_hls, filename_hls) < 0) {
388                 av_log(os->ctx, AV_LOG_WARNING, "renaming file %s to %s failed\n\n", temp_filename_hls, filename_hls);
389             }
390     }
391
392 }
393
394 static char *xmlescape(const char *str) {
395     int outlen = strlen(str)*3/2 + 6;
396     char *out = av_realloc(NULL, outlen + 1);
397     int pos = 0;
398     if (!out)
399         return NULL;
400     for (; *str; str++) {
401         if (pos + 6 > outlen) {
402             char *tmp;
403             outlen = 2 * outlen + 6;
404             tmp = av_realloc(out, outlen + 1);
405             if (!tmp) {
406                 av_free(out);
407                 return NULL;
408             }
409             out = tmp;
410         }
411         if (*str == '&') {
412             memcpy(&out[pos], "&amp;", 5);
413             pos += 5;
414         } else if (*str == '<') {
415             memcpy(&out[pos], "&lt;", 4);
416             pos += 4;
417         } else if (*str == '>') {
418             memcpy(&out[pos], "&gt;", 4);
419             pos += 4;
420         } else if (*str == '\'') {
421             memcpy(&out[pos], "&apos;", 6);
422             pos += 6;
423         } else if (*str == '\"') {
424             memcpy(&out[pos], "&quot;", 6);
425             pos += 6;
426         } else {
427             out[pos++] = *str;
428         }
429     }
430     out[pos] = '\0';
431     return out;
432 }
433
434 static void write_time(AVIOContext *out, int64_t time)
435 {
436     int seconds = time / AV_TIME_BASE;
437     int fractions = time % AV_TIME_BASE;
438     int minutes = seconds / 60;
439     int hours = minutes / 60;
440     seconds %= 60;
441     minutes %= 60;
442     avio_printf(out, "PT");
443     if (hours)
444         avio_printf(out, "%dH", hours);
445     if (hours || minutes)
446         avio_printf(out, "%dM", minutes);
447     avio_printf(out, "%d.%dS", seconds, fractions / (AV_TIME_BASE / 10));
448 }
449
450 static void format_date_now(char *buf, int size)
451 {
452     time_t t = time(NULL);
453     struct tm *ptm, tmbuf;
454     ptm = gmtime_r(&t, &tmbuf);
455     if (ptm) {
456         if (!strftime(buf, size, "%Y-%m-%dT%H:%M:%SZ", ptm))
457             buf[0] = '\0';
458     }
459 }
460
461 static int write_adaptation_set(AVFormatContext *s, AVIOContext *out, int as_index,
462                                 int final)
463 {
464     DASHContext *c = s->priv_data;
465     AdaptationSet *as = &c->as[as_index];
466     AVDictionaryEntry *lang, *role;
467     int i;
468
469     avio_printf(out, "\t\t<AdaptationSet id=\"%s\" contentType=\"%s\" segmentAlignment=\"true\" bitstreamSwitching=\"true\"",
470                 as->id, as->media_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio");
471     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)
472         avio_printf(out, " maxFrameRate=\"%d/%d\"", as->max_frame_rate.num, as->max_frame_rate.den);
473     lang = av_dict_get(as->metadata, "language", NULL, 0);
474     if (lang)
475         avio_printf(out, " lang=\"%s\"", lang->value);
476     avio_printf(out, ">\n");
477
478     role = av_dict_get(as->metadata, "role", NULL, 0);
479     if (role)
480         avio_printf(out, "\t\t\t<Role schemeIdUri=\"urn:mpeg:dash:role:2011\" value=\"%s\"/>\n", role->value);
481
482     for (i = 0; i < s->nb_streams; i++) {
483         OutputStream *os = &c->streams[i];
484
485         if (os->as_idx - 1 != as_index)
486             continue;
487
488         if (as->media_type == AVMEDIA_TYPE_VIDEO) {
489             AVStream *st = s->streams[i];
490             avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"video/%s\" codecs=\"%s\"%s width=\"%d\" height=\"%d\"",
491                 i, os->format_name, os->codec_str, os->bandwidth_str, s->streams[i]->codecpar->width, s->streams[i]->codecpar->height);
492             if (st->avg_frame_rate.num)
493                 avio_printf(out, " frameRate=\"%d/%d\"", st->avg_frame_rate.num, st->avg_frame_rate.den);
494             avio_printf(out, ">\n");
495         } else {
496             avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"audio/%s\" codecs=\"%s\"%s audioSamplingRate=\"%d\">\n",
497                 i, os->format_name, os->codec_str, os->bandwidth_str, s->streams[i]->codecpar->sample_rate);
498             avio_printf(out, "\t\t\t\t<AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"%d\" />\n",
499                 s->streams[i]->codecpar->channels);
500         }
501         output_segment_list(os, out, c, i, final);
502         avio_printf(out, "\t\t\t</Representation>\n");
503     }
504     avio_printf(out, "\t\t</AdaptationSet>\n");
505
506     return 0;
507 }
508
509 static int add_adaptation_set(AVFormatContext *s, AdaptationSet **as, enum AVMediaType type)
510 {
511     DASHContext *c = s->priv_data;
512
513     void *mem = av_realloc(c->as, sizeof(*c->as) * (c->nb_as + 1));
514     if (!mem)
515         return AVERROR(ENOMEM);
516     c->as = mem;
517     ++c->nb_as;
518
519     *as = &c->as[c->nb_as - 1];
520     memset(*as, 0, sizeof(**as));
521     (*as)->media_type = type;
522
523     return 0;
524 }
525
526 static int adaptation_set_add_stream(AVFormatContext *s, int as_idx, int i)
527 {
528     DASHContext *c = s->priv_data;
529     AdaptationSet *as = &c->as[as_idx - 1];
530     OutputStream *os = &c->streams[i];
531
532     if (as->media_type != s->streams[i]->codecpar->codec_type) {
533         av_log(s, AV_LOG_ERROR, "Codec type of stream %d doesn't match AdaptationSet's media type\n", i);
534         return AVERROR(EINVAL);
535     } else if (os->as_idx) {
536         av_log(s, AV_LOG_ERROR, "Stream %d is already assigned to an AdaptationSet\n", i);
537         return AVERROR(EINVAL);
538     }
539     os->as_idx = as_idx;
540
541     return 0;
542 }
543
544 static int parse_adaptation_sets(AVFormatContext *s)
545 {
546     DASHContext *c = s->priv_data;
547     const char *p = c->adaptation_sets;
548     enum { new_set, parse_id, parsing_streams } state;
549     AdaptationSet *as;
550     int i, n, ret;
551
552     // default: one AdaptationSet for each stream
553     if (!p) {
554         for (i = 0; i < s->nb_streams; i++) {
555             if ((ret = add_adaptation_set(s, &as, s->streams[i]->codecpar->codec_type)) < 0)
556                 return ret;
557             snprintf(as->id, sizeof(as->id), "%d", i);
558
559             c->streams[i].as_idx = c->nb_as;
560         }
561         goto end;
562     }
563
564     // syntax id=0,streams=0,1,2 id=1,streams=3,4 and so on
565     state = new_set;
566     while (*p) {
567         if (*p == ' ') {
568             p++;
569             continue;
570         } else if (state == new_set && av_strstart(p, "id=", &p)) {
571
572             if ((ret = add_adaptation_set(s, &as, AVMEDIA_TYPE_UNKNOWN)) < 0)
573                 return ret;
574
575             n = strcspn(p, ",");
576             snprintf(as->id, sizeof(as->id), "%.*s", n, p);
577
578             p += n;
579             if (*p)
580                 p++;
581             state = parse_id;
582         } else if (state == parse_id && av_strstart(p, "streams=", &p)) {
583             state = parsing_streams;
584         } else if (state == parsing_streams) {
585             AdaptationSet *as = &c->as[c->nb_as - 1];
586             char idx_str[8], *end_str;
587
588             n = strcspn(p, " ,");
589             snprintf(idx_str, sizeof(idx_str), "%.*s", n, p);
590             p += n;
591
592             // if value is "a" or "v", map all streams of that type
593             if (as->media_type == AVMEDIA_TYPE_UNKNOWN && (idx_str[0] == 'v' || idx_str[0] == 'a')) {
594                 enum AVMediaType type = (idx_str[0] == 'v') ? AVMEDIA_TYPE_VIDEO : AVMEDIA_TYPE_AUDIO;
595                 av_log(s, AV_LOG_DEBUG, "Map all streams of type %s\n", idx_str);
596
597                 for (i = 0; i < s->nb_streams; i++) {
598                     if (s->streams[i]->codecpar->codec_type != type)
599                         continue;
600
601                     as->media_type = s->streams[i]->codecpar->codec_type;
602
603                     if ((ret = adaptation_set_add_stream(s, c->nb_as, i)) < 0)
604                         return ret;
605                 }
606             } else { // select single stream
607                 i = strtol(idx_str, &end_str, 10);
608                 if (idx_str == end_str || i < 0 || i >= s->nb_streams) {
609                     av_log(s, AV_LOG_ERROR, "Selected stream \"%s\" not found!\n", idx_str);
610                     return AVERROR(EINVAL);
611                 }
612                 av_log(s, AV_LOG_DEBUG, "Map stream %d\n", i);
613
614                 if (as->media_type == AVMEDIA_TYPE_UNKNOWN) {
615                     as->media_type = s->streams[i]->codecpar->codec_type;
616                 }
617
618                 if ((ret = adaptation_set_add_stream(s, c->nb_as, i)) < 0)
619                     return ret;
620             }
621
622             if (*p == ' ')
623                 state = new_set;
624             if (*p)
625                 p++;
626         } else {
627             return AVERROR(EINVAL);
628         }
629     }
630
631 end:
632     // check for unassigned streams
633     for (i = 0; i < s->nb_streams; i++) {
634         OutputStream *os = &c->streams[i];
635         if (!os->as_idx) {
636             av_log(s, AV_LOG_ERROR, "Stream %d is not mapped to an AdaptationSet\n", i);
637             return AVERROR(EINVAL);
638         }
639     }
640     return 0;
641 }
642
643 static int write_manifest(AVFormatContext *s, int final)
644 {
645     DASHContext *c = s->priv_data;
646     AVIOContext *out;
647     char temp_filename[1024];
648     int ret, i;
649     const char *proto = avio_find_protocol_name(s->filename);
650     int use_rename = proto && !strcmp(proto, "file");
651     static unsigned int warned_non_file = 0;
652     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
653     AVDictionary *opts = NULL;
654
655     if (!use_rename && !warned_non_file++)
656         av_log(s, AV_LOG_ERROR, "Cannot use rename on non file protocol, this may lead to races and temporary partial files\n");
657
658     snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", s->filename);
659     set_http_options(&opts, c);
660     ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, &opts);
661     if (ret < 0) {
662         av_log(s, AV_LOG_ERROR, "Unable to open %s for writing\n", temp_filename);
663         return ret;
664     }
665     av_dict_free(&opts);
666     avio_printf(out, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
667     avio_printf(out, "<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
668                 "\txmlns=\"urn:mpeg:dash:schema:mpd:2011\"\n"
669                 "\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n"
670                 "\txsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd\"\n"
671                 "\tprofiles=\"urn:mpeg:dash:profile:isoff-live:2011\"\n"
672                 "\ttype=\"%s\"\n", final ? "static" : "dynamic");
673     if (final) {
674         avio_printf(out, "\tmediaPresentationDuration=\"");
675         write_time(out, c->total_duration);
676         avio_printf(out, "\"\n");
677     } else {
678         int64_t update_period = c->last_duration / AV_TIME_BASE;
679         char now_str[100];
680         if (c->use_template && !c->use_timeline)
681             update_period = 500;
682         avio_printf(out, "\tminimumUpdatePeriod=\"PT%"PRId64"S\"\n", update_period);
683         avio_printf(out, "\tsuggestedPresentationDelay=\"PT%"PRId64"S\"\n", c->last_duration / AV_TIME_BASE);
684         if (!c->availability_start_time[0] && s->nb_streams > 0 && c->streams[0].nb_segments > 0) {
685             format_date_now(c->availability_start_time, sizeof(c->availability_start_time));
686         }
687         if (c->availability_start_time[0])
688             avio_printf(out, "\tavailabilityStartTime=\"%s\"\n", c->availability_start_time);
689         format_date_now(now_str, sizeof(now_str));
690         if (now_str[0])
691             avio_printf(out, "\tpublishTime=\"%s\"\n", now_str);
692         if (c->window_size && c->use_template) {
693             avio_printf(out, "\ttimeShiftBufferDepth=\"");
694             write_time(out, c->last_duration * c->window_size);
695             avio_printf(out, "\"\n");
696         }
697     }
698     avio_printf(out, "\tminBufferTime=\"");
699     write_time(out, c->last_duration * 2);
700     avio_printf(out, "\">\n");
701     avio_printf(out, "\t<ProgramInformation>\n");
702     if (title) {
703         char *escaped = xmlescape(title->value);
704         avio_printf(out, "\t\t<Title>%s</Title>\n", escaped);
705         av_free(escaped);
706     }
707     avio_printf(out, "\t</ProgramInformation>\n");
708
709     if (c->window_size && s->nb_streams > 0 && c->streams[0].nb_segments > 0 && !c->use_template) {
710         OutputStream *os = &c->streams[0];
711         int start_index = FFMAX(os->nb_segments - c->window_size, 0);
712         int64_t start_time = av_rescale_q(os->segments[start_index]->time, s->streams[0]->time_base, AV_TIME_BASE_Q);
713         avio_printf(out, "\t<Period id=\"0\" start=\"");
714         write_time(out, start_time);
715         avio_printf(out, "\">\n");
716     } else {
717         avio_printf(out, "\t<Period id=\"0\" start=\"PT0.0S\">\n");
718     }
719
720     for (i = 0; i < c->nb_as; i++) {
721         if ((ret = write_adaptation_set(s, out, i, final)) < 0)
722             return ret;
723     }
724     avio_printf(out, "\t</Period>\n");
725
726     if (c->utc_timing_url)
727         avio_printf(out, "\t<UTCTiming schemeIdUri=\"urn:mpeg:dash:utc:http-xsdate:2014\" value=\"%s\"/>\n", c->utc_timing_url);
728
729     avio_printf(out, "</MPD>\n");
730     avio_flush(out);
731     ff_format_io_close(s, &out);
732
733     if (use_rename) {
734         if ((ret = avpriv_io_move(temp_filename, s->filename)) < 0)
735             return ret;
736     }
737
738     if (c->hls_playlist && !c->master_playlist_created) {
739         char filename_hls[1024];
740
741         if (*c->dirname)
742             snprintf(filename_hls, sizeof(filename_hls), "%s/master.m3u8", c->dirname);
743         else
744             snprintf(filename_hls, sizeof(filename_hls), "master.m3u8");
745
746         snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", filename_hls);
747
748         set_http_options(&opts, c);
749         ret = avio_open2(&out, temp_filename, AVIO_FLAG_WRITE, NULL, &opts);
750         if (ret < 0) {
751             av_log(s, AV_LOG_ERROR, "Unable to open %s for writing\n", temp_filename);
752             return ret;
753         }
754         av_dict_free(&opts);
755
756         ff_hls_write_playlist_version(out, 6);
757
758         for (i = 0; i < s->nb_streams; i++) {
759             char playlist_file[64];
760             AVStream *st = s->streams[i];
761             get_hls_playlist_name(playlist_file, sizeof(playlist_file), NULL, i);
762             ff_hls_write_stream_info(st, out, st->codecpar->bit_rate, playlist_file);
763         }
764         avio_close(out);
765         if (use_rename)
766             if ((ret = avpriv_io_move(temp_filename, filename_hls)) < 0)
767                 return ret;
768         c->master_playlist_created = 1;
769     }
770
771     return 0;
772 }
773
774 static int dict_copy_entry(AVDictionary **dst, const AVDictionary *src, const char *key)
775 {
776     AVDictionaryEntry *entry = av_dict_get(src, key, NULL, 0);
777     if (entry)
778         av_dict_set(dst, key, entry->value, AV_DICT_DONT_OVERWRITE);
779     return 0;
780 }
781
782 static int dash_init(AVFormatContext *s)
783 {
784     DASHContext *c = s->priv_data;
785     int ret = 0, i;
786     char *ptr;
787     char basename[1024];
788
789     if (c->single_file_name)
790         c->single_file = 1;
791     if (c->single_file)
792         c->use_template = 0;
793
794     av_strlcpy(c->dirname, s->filename, sizeof(c->dirname));
795     ptr = strrchr(c->dirname, '/');
796     if (ptr) {
797         av_strlcpy(basename, &ptr[1], sizeof(basename));
798         ptr[1] = '\0';
799     } else {
800         c->dirname[0] = '\0';
801         av_strlcpy(basename, s->filename, sizeof(basename));
802     }
803
804     ptr = strrchr(basename, '.');
805     if (ptr)
806         *ptr = '\0';
807
808     c->streams = av_mallocz(sizeof(*c->streams) * s->nb_streams);
809     if (!c->streams)
810         return AVERROR(ENOMEM);
811
812     if ((ret = parse_adaptation_sets(s)) < 0)
813         return ret;
814
815     for (i = 0; i < s->nb_streams; i++) {
816         OutputStream *os = &c->streams[i];
817         AdaptationSet *as = &c->as[os->as_idx - 1];
818         AVFormatContext *ctx;
819         AVStream *st;
820         AVDictionary *opts = NULL;
821         char filename[1024];
822
823         os->bit_rate = s->streams[i]->codecpar->bit_rate;
824         if (os->bit_rate) {
825             snprintf(os->bandwidth_str, sizeof(os->bandwidth_str),
826                      " bandwidth=\"%d\"", os->bit_rate);
827         } else {
828             int level = s->strict_std_compliance >= FF_COMPLIANCE_STRICT ?
829                         AV_LOG_ERROR : AV_LOG_WARNING;
830             av_log(s, level, "No bit rate set for stream %d\n", i);
831             if (s->strict_std_compliance >= FF_COMPLIANCE_STRICT)
832                 return AVERROR(EINVAL);
833         }
834
835         // copy AdaptationSet language and role from stream metadata
836         dict_copy_entry(&as->metadata, s->streams[i]->metadata, "language");
837         dict_copy_entry(&as->metadata, s->streams[i]->metadata, "role");
838
839         ctx = avformat_alloc_context();
840         if (!ctx)
841             return AVERROR(ENOMEM);
842
843         // choose muxer based on codec: webm for VP8/9 and opus, mp4 otherwise
844         // note: os->format_name is also used as part of the mimetype of the
845         //       representation, e.g. video/<format_name>
846         if (s->streams[i]->codecpar->codec_id == AV_CODEC_ID_VP8 ||
847             s->streams[i]->codecpar->codec_id == AV_CODEC_ID_VP9 ||
848             s->streams[i]->codecpar->codec_id == AV_CODEC_ID_OPUS ||
849             s->streams[i]->codecpar->codec_id == AV_CODEC_ID_VORBIS) {
850             snprintf(os->format_name, sizeof(os->format_name), "webm");
851         } else {
852             snprintf(os->format_name, sizeof(os->format_name), "mp4");
853         }
854         ctx->oformat = av_guess_format(os->format_name, NULL, NULL);
855         if (!ctx->oformat)
856             return AVERROR_MUXER_NOT_FOUND;
857         os->ctx = ctx;
858         ctx->interrupt_callback = s->interrupt_callback;
859         ctx->opaque             = s->opaque;
860         ctx->io_close           = s->io_close;
861         ctx->io_open            = s->io_open;
862
863         if (!(st = avformat_new_stream(ctx, NULL)))
864             return AVERROR(ENOMEM);
865         avcodec_parameters_copy(st->codecpar, s->streams[i]->codecpar);
866         st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
867         st->time_base = s->streams[i]->time_base;
868         st->avg_frame_rate = s->streams[i]->avg_frame_rate;
869         ctx->avoid_negative_ts = s->avoid_negative_ts;
870         ctx->flags = s->flags;
871
872         if ((ret = avio_open_dyn_buf(&ctx->pb)) < 0)
873             return ret;
874
875         if (c->single_file) {
876             if (c->single_file_name)
877                 ff_dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), c->single_file_name, i, 0, os->bit_rate, 0);
878             else
879                 snprintf(os->initfile, sizeof(os->initfile), "%s-stream%d.m4s", basename, i);
880         } else {
881             ff_dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), c->init_seg_name, i, 0, os->bit_rate, 0);
882         }
883         snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
884         set_http_options(&opts, c);
885         ret = s->io_open(s, &os->out, filename, AVIO_FLAG_WRITE, &opts);
886         if (ret < 0)
887             return ret;
888         av_dict_free(&opts);
889         os->init_start_pos = 0;
890
891         if (!strcmp(os->format_name, "mp4")) {
892             av_dict_set(&opts, "movflags", "frag_custom+dash+delay_moov", 0);
893         } else {
894             av_dict_set_int(&opts, "cluster_time_limit", c->min_seg_duration / 1000, 0);
895             av_dict_set_int(&opts, "cluster_size_limit", 5 * 1024 * 1024, 0); // set a large cluster size limit
896             av_dict_set_int(&opts, "dash", 1, 0);
897             av_dict_set_int(&opts, "dash_track_number", i + 1, 0);
898             av_dict_set_int(&opts, "live", 1, 0);
899         }
900         if ((ret = avformat_init_output(ctx, &opts)) < 0)
901             return ret;
902         os->ctx_inited = 1;
903         avio_flush(ctx->pb);
904         av_dict_free(&opts);
905
906         av_log(s, AV_LOG_VERBOSE, "Representation %d init segment will be written to: %s\n", i, filename);
907
908         // Flush init segment
909         // except for mp4, since delay_moov is set and the init segment
910         // is then flushed after the first packets
911         if (strcmp(os->format_name, "mp4")) {
912             flush_init_segment(s, os);
913         }
914
915         s->streams[i]->time_base = st->time_base;
916         // If the muxer wants to shift timestamps, request to have them shifted
917         // already before being handed to this muxer, so we don't have mismatches
918         // between the MPD and the actual segments.
919         s->avoid_negative_ts = ctx->avoid_negative_ts;
920         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
921             AVRational avg_frame_rate = s->streams[i]->avg_frame_rate;
922             if (avg_frame_rate.num > 0) {
923                 if (av_cmp_q(avg_frame_rate, as->min_frame_rate) < 0)
924                     as->min_frame_rate = avg_frame_rate;
925                 if (av_cmp_q(as->max_frame_rate, avg_frame_rate) < 0)
926                     as->max_frame_rate = avg_frame_rate;
927             } else {
928                 as->ambiguous_frame_rate = 1;
929             }
930             c->has_video = 1;
931         }
932
933         set_codec_str(s, st->codecpar, os->codec_str, sizeof(os->codec_str));
934         os->first_pts = AV_NOPTS_VALUE;
935         os->max_pts = AV_NOPTS_VALUE;
936         os->last_dts = AV_NOPTS_VALUE;
937         os->segment_index = 1;
938     }
939
940     if (!c->has_video && c->min_seg_duration <= 0) {
941         av_log(s, AV_LOG_WARNING, "no video stream and no min seg duration set\n");
942         return AVERROR(EINVAL);
943     }
944     return 0;
945 }
946
947 static int dash_write_header(AVFormatContext *s)
948 {
949     DASHContext *c = s->priv_data;
950     int i, ret;
951     for (i = 0; i < s->nb_streams; i++) {
952         OutputStream *os = &c->streams[i];
953         if ((ret = avformat_write_header(os->ctx, NULL)) < 0) {
954             dash_free(s);
955             return ret;
956         }
957     }
958     ret = write_manifest(s, 0);
959     if (!ret)
960         av_log(s, AV_LOG_VERBOSE, "Manifest written to: %s\n", s->filename);
961     return ret;
962 }
963
964 static int add_segment(OutputStream *os, const char *file,
965                        int64_t time, int duration,
966                        int64_t start_pos, int64_t range_length,
967                        int64_t index_length)
968 {
969     int err;
970     Segment *seg;
971     if (os->nb_segments >= os->segments_size) {
972         os->segments_size = (os->segments_size + 1) * 2;
973         if ((err = av_reallocp(&os->segments, sizeof(*os->segments) *
974                                os->segments_size)) < 0) {
975             os->segments_size = 0;
976             os->nb_segments = 0;
977             return err;
978         }
979     }
980     seg = av_mallocz(sizeof(*seg));
981     if (!seg)
982         return AVERROR(ENOMEM);
983     av_strlcpy(seg->file, file, sizeof(seg->file));
984     seg->time = time;
985     seg->duration = duration;
986     if (seg->time < 0) { // If pts<0, it is expected to be cut away with an edit list
987         seg->duration += seg->time;
988         seg->time = 0;
989     }
990     seg->start_pos = start_pos;
991     seg->range_length = range_length;
992     seg->index_length = index_length;
993     os->segments[os->nb_segments++] = seg;
994     os->segment_index++;
995     return 0;
996 }
997
998 static void write_styp(AVIOContext *pb)
999 {
1000     avio_wb32(pb, 24);
1001     ffio_wfourcc(pb, "styp");
1002     ffio_wfourcc(pb, "msdh");
1003     avio_wb32(pb, 0); /* minor */
1004     ffio_wfourcc(pb, "msdh");
1005     ffio_wfourcc(pb, "msix");
1006 }
1007
1008 static void find_index_range(AVFormatContext *s, const char *full_path,
1009                              int64_t pos, int *index_length)
1010 {
1011     uint8_t buf[8];
1012     AVIOContext *pb;
1013     int ret;
1014
1015     ret = s->io_open(s, &pb, full_path, AVIO_FLAG_READ, NULL);
1016     if (ret < 0)
1017         return;
1018     if (avio_seek(pb, pos, SEEK_SET) != pos) {
1019         ff_format_io_close(s, &pb);
1020         return;
1021     }
1022     ret = avio_read(pb, buf, 8);
1023     ff_format_io_close(s, &pb);
1024     if (ret < 8)
1025         return;
1026     if (AV_RL32(&buf[4]) != MKTAG('s', 'i', 'd', 'x'))
1027         return;
1028     *index_length = AV_RB32(&buf[0]);
1029 }
1030
1031 static int update_stream_extradata(AVFormatContext *s, OutputStream *os,
1032                                    AVCodecParameters *par)
1033 {
1034     uint8_t *extradata;
1035
1036     if (os->ctx->streams[0]->codecpar->extradata_size || !par->extradata_size)
1037         return 0;
1038
1039     extradata = av_malloc(par->extradata_size);
1040
1041     if (!extradata)
1042         return AVERROR(ENOMEM);
1043
1044     memcpy(extradata, par->extradata, par->extradata_size);
1045
1046     os->ctx->streams[0]->codecpar->extradata = extradata;
1047     os->ctx->streams[0]->codecpar->extradata_size = par->extradata_size;
1048
1049     set_codec_str(s, par, os->codec_str, sizeof(os->codec_str));
1050
1051     return 0;
1052 }
1053
1054 static int dash_flush(AVFormatContext *s, int final, int stream)
1055 {
1056     DASHContext *c = s->priv_data;
1057     int i, ret = 0;
1058
1059     const char *proto = avio_find_protocol_name(s->filename);
1060     int use_rename = proto && !strcmp(proto, "file");
1061
1062     int cur_flush_segment_index = 0;
1063     if (stream >= 0)
1064         cur_flush_segment_index = c->streams[stream].segment_index;
1065
1066     for (i = 0; i < s->nb_streams; i++) {
1067         OutputStream *os = &c->streams[i];
1068         AVStream *st = s->streams[i];
1069         char filename[1024] = "", full_path[1024], temp_path[1024];
1070         int range_length, index_length = 0;
1071
1072         if (!os->packets_written)
1073             continue;
1074
1075         // Flush the single stream that got a keyframe right now.
1076         // Flush all audio streams as well, in sync with video keyframes,
1077         // but not the other video streams.
1078         if (stream >= 0 && i != stream) {
1079             if (s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
1080                 continue;
1081             // Make sure we don't flush audio streams multiple times, when
1082             // all video streams are flushed one at a time.
1083             if (c->has_video && os->segment_index > cur_flush_segment_index)
1084                 continue;
1085         }
1086
1087         if (!os->init_range_length) {
1088             flush_init_segment(s, os);
1089         }
1090
1091         if (!c->single_file) {
1092             AVDictionary *opts = NULL;
1093             ff_dash_fill_tmpl_params(filename, sizeof(filename), c->media_seg_name, i, os->segment_index, os->bit_rate, os->start_pts);
1094             snprintf(full_path, sizeof(full_path), "%s%s", c->dirname, filename);
1095             snprintf(temp_path, sizeof(temp_path), use_rename ? "%s.tmp" : "%s", full_path);
1096             set_http_options(&opts, c);
1097             ret = s->io_open(s, &os->out, temp_path, AVIO_FLAG_WRITE, &opts);
1098             if (ret < 0)
1099                 break;
1100             av_dict_free(&opts);
1101             if (!strcmp(os->format_name, "mp4"))
1102                 write_styp(os->ctx->pb);
1103         } else {
1104             snprintf(full_path, sizeof(full_path), "%s%s", c->dirname, os->initfile);
1105         }
1106
1107         ret = flush_dynbuf(os, &range_length);
1108         if (ret < 0)
1109             break;
1110         os->packets_written = 0;
1111
1112         if (c->single_file) {
1113             find_index_range(s, full_path, os->pos, &index_length);
1114         } else {
1115             ff_format_io_close(s, &os->out);
1116
1117             if (use_rename) {
1118                 ret = avpriv_io_move(temp_path, full_path);
1119                 if (ret < 0)
1120                     break;
1121             }
1122         }
1123
1124         if (!os->bit_rate) {
1125             // calculate average bitrate of first segment
1126             int64_t bitrate = (int64_t) range_length * 8 * AV_TIME_BASE / av_rescale_q(os->max_pts - os->start_pts,
1127                                                                                        st->time_base,
1128                                                                                        AV_TIME_BASE_Q);
1129             if (bitrate >= 0) {
1130                 os->bit_rate = bitrate;
1131                 snprintf(os->bandwidth_str, sizeof(os->bandwidth_str),
1132                      " bandwidth=\"%d\"", os->bit_rate);
1133             }
1134         }
1135         add_segment(os, filename, os->start_pts, os->max_pts - os->start_pts, os->pos, range_length, index_length);
1136         av_log(s, AV_LOG_VERBOSE, "Representation %d media segment %d written to: %s\n", i, os->segment_index, full_path);
1137
1138         os->pos += range_length;
1139     }
1140
1141     if (c->window_size || (final && c->remove_at_exit)) {
1142         for (i = 0; i < s->nb_streams; i++) {
1143             OutputStream *os = &c->streams[i];
1144             int j;
1145             int remove = os->nb_segments - c->window_size - c->extra_window_size;
1146             if (final && c->remove_at_exit)
1147                 remove = os->nb_segments;
1148             if (remove > 0) {
1149                 for (j = 0; j < remove; j++) {
1150                     char filename[1024];
1151                     snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->segments[j]->file);
1152                     unlink(filename);
1153                     av_free(os->segments[j]);
1154                 }
1155                 os->nb_segments -= remove;
1156                 memmove(os->segments, os->segments + remove, os->nb_segments * sizeof(*os->segments));
1157             }
1158         }
1159     }
1160
1161     if (ret >= 0)
1162         ret = write_manifest(s, final);
1163     return ret;
1164 }
1165
1166 static int dash_write_packet(AVFormatContext *s, AVPacket *pkt)
1167 {
1168     DASHContext *c = s->priv_data;
1169     AVStream *st = s->streams[pkt->stream_index];
1170     OutputStream *os = &c->streams[pkt->stream_index];
1171     int ret;
1172
1173     ret = update_stream_extradata(s, os, st->codecpar);
1174     if (ret < 0)
1175         return ret;
1176
1177     // Fill in a heuristic guess of the packet duration, if none is available.
1178     // The mp4 muxer will do something similar (for the last packet in a fragment)
1179     // if nothing is set (setting it for the other packets doesn't hurt).
1180     // By setting a nonzero duration here, we can be sure that the mp4 muxer won't
1181     // invoke its heuristic (this doesn't have to be identical to that algorithm),
1182     // so that we know the exact timestamps of fragments.
1183     if (!pkt->duration && os->last_dts != AV_NOPTS_VALUE)
1184         pkt->duration = pkt->dts - os->last_dts;
1185     os->last_dts = pkt->dts;
1186
1187     // If forcing the stream to start at 0, the mp4 muxer will set the start
1188     // timestamps to 0. Do the same here, to avoid mismatches in duration/timestamps.
1189     if (os->first_pts == AV_NOPTS_VALUE &&
1190         s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO) {
1191         pkt->pts -= pkt->dts;
1192         pkt->dts  = 0;
1193     }
1194
1195     if (os->first_pts == AV_NOPTS_VALUE)
1196         os->first_pts = pkt->pts;
1197
1198     if ((!c->has_video || st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) &&
1199         pkt->flags & AV_PKT_FLAG_KEY && os->packets_written &&
1200         av_compare_ts(pkt->pts - os->start_pts, st->time_base,
1201                       c->min_seg_duration, AV_TIME_BASE_Q) >= 0) {
1202         int64_t prev_duration = c->last_duration;
1203
1204         c->last_duration = av_rescale_q(pkt->pts - os->start_pts,
1205                                         st->time_base,
1206                                         AV_TIME_BASE_Q);
1207         c->total_duration = av_rescale_q(pkt->pts - os->first_pts,
1208                                          st->time_base,
1209                                          AV_TIME_BASE_Q);
1210
1211         if ((!c->use_timeline || !c->use_template) && prev_duration) {
1212             if (c->last_duration < prev_duration*9/10 ||
1213                 c->last_duration > prev_duration*11/10) {
1214                 av_log(s, AV_LOG_WARNING,
1215                        "Segment durations differ too much, enable use_timeline "
1216                        "and use_template, or keep a stricter keyframe interval\n");
1217             }
1218         }
1219
1220         if ((ret = dash_flush(s, 0, pkt->stream_index)) < 0)
1221             return ret;
1222     }
1223
1224     if (!os->packets_written) {
1225         // If we wrote a previous segment, adjust the start time of the segment
1226         // to the end of the previous one (which is the same as the mp4 muxer
1227         // does). This avoids gaps in the timeline.
1228         if (os->max_pts != AV_NOPTS_VALUE)
1229             os->start_pts = os->max_pts;
1230         else
1231             os->start_pts = pkt->pts;
1232     }
1233     if (os->max_pts == AV_NOPTS_VALUE)
1234         os->max_pts = pkt->pts + pkt->duration;
1235     else
1236         os->max_pts = FFMAX(os->max_pts, pkt->pts + pkt->duration);
1237     os->packets_written++;
1238     return ff_write_chained(os->ctx, 0, pkt, s, 0);
1239 }
1240
1241 static int dash_write_trailer(AVFormatContext *s)
1242 {
1243     DASHContext *c = s->priv_data;
1244
1245     if (s->nb_streams > 0) {
1246         OutputStream *os = &c->streams[0];
1247         // If no segments have been written so far, try to do a crude
1248         // guess of the segment duration
1249         if (!c->last_duration)
1250             c->last_duration = av_rescale_q(os->max_pts - os->start_pts,
1251                                             s->streams[0]->time_base,
1252                                             AV_TIME_BASE_Q);
1253         c->total_duration = av_rescale_q(os->max_pts - os->first_pts,
1254                                          s->streams[0]->time_base,
1255                                          AV_TIME_BASE_Q);
1256     }
1257     dash_flush(s, 1, -1);
1258
1259     if (c->remove_at_exit) {
1260         char filename[1024];
1261         int i;
1262         for (i = 0; i < s->nb_streams; i++) {
1263             OutputStream *os = &c->streams[i];
1264             snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
1265             unlink(filename);
1266         }
1267         unlink(s->filename);
1268     }
1269
1270     return 0;
1271 }
1272
1273 static int dash_check_bitstream(struct AVFormatContext *s, const AVPacket *avpkt)
1274 {
1275     DASHContext *c = s->priv_data;
1276     OutputStream *os = &c->streams[avpkt->stream_index];
1277     AVFormatContext *oc = os->ctx;
1278     if (oc->oformat->check_bitstream) {
1279         int ret;
1280         AVPacket pkt = *avpkt;
1281         pkt.stream_index = 0;
1282         ret = oc->oformat->check_bitstream(oc, &pkt);
1283         if (ret == 1) {
1284             AVStream *st = s->streams[avpkt->stream_index];
1285             AVStream *ost = oc->streams[0];
1286             st->internal->bsfcs = ost->internal->bsfcs;
1287             st->internal->nb_bsfcs = ost->internal->nb_bsfcs;
1288             ost->internal->bsfcs = NULL;
1289             ost->internal->nb_bsfcs = 0;
1290         }
1291         return ret;
1292     }
1293     return 1;
1294 }
1295
1296 #define OFFSET(x) offsetof(DASHContext, x)
1297 #define E AV_OPT_FLAG_ENCODING_PARAM
1298 static const AVOption options[] = {
1299     { "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 },
1300     { "window_size", "number of segments kept in the manifest", OFFSET(window_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, E },
1301     { "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 },
1302     { "min_seg_duration", "minimum segment duration (in microseconds)", OFFSET(min_seg_duration), AV_OPT_TYPE_INT, { .i64 = 5000000 }, 0, INT_MAX, E },
1303     { "remove_at_exit", "remove all segments when finished", OFFSET(remove_at_exit), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
1304     { "use_template", "Use SegmentTemplate instead of SegmentList", OFFSET(use_template), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
1305     { "use_timeline", "Use SegmentTimeline in SegmentTemplate", OFFSET(use_timeline), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
1306     { "single_file", "Store all segments in one file, accessed using byte ranges", OFFSET(single_file), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
1307     { "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 },
1308     { "init_seg_name", "DASH-templated name to used for the initialization segment", OFFSET(init_seg_name), AV_OPT_TYPE_STRING, {.str = "init-stream$RepresentationID$.m4s"}, 0, 0, E },
1309     { "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$.m4s"}, 0, 0, E },
1310     { "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 },
1311     { "http_user_agent", "override User-Agent field in HTTP header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E},
1312     { "hls_playlist", "Generate HLS playlist files(master.m3u8, media_%d.m3u8)", OFFSET(hls_playlist), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
1313     { NULL },
1314 };
1315
1316 static const AVClass dash_class = {
1317     .class_name = "dash muxer",
1318     .item_name  = av_default_item_name,
1319     .option     = options,
1320     .version    = LIBAVUTIL_VERSION_INT,
1321 };
1322
1323 AVOutputFormat ff_dash_muxer = {
1324     .name           = "dash",
1325     .long_name      = NULL_IF_CONFIG_SMALL("DASH Muxer"),
1326     .extensions     = "mpd",
1327     .priv_data_size = sizeof(DASHContext),
1328     .audio_codec    = AV_CODEC_ID_AAC,
1329     .video_codec    = AV_CODEC_ID_H264,
1330     .flags          = AVFMT_GLOBALHEADER | AVFMT_NOFILE | AVFMT_TS_NEGATIVE,
1331     .init           = dash_init,
1332     .write_header   = dash_write_header,
1333     .write_packet   = dash_write_packet,
1334     .write_trailer  = dash_write_trailer,
1335     .deinit         = dash_free,
1336     .check_bitstream = dash_check_bitstream,
1337     .priv_class     = &dash_class,
1338 };