]> git.sesse.net Git - ffmpeg/blob - libavformat/dashenc.c
avformat/hlsenc: set default http method to PUT when method is null
[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/avstring.h"
29 #include "libavutil/intreadwrite.h"
30 #include "libavutil/mathematics.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/rational.h"
33 #include "libavutil/time_internal.h"
34
35 #include "avc.h"
36 #include "avformat.h"
37 #include "avio_internal.h"
38 #include "internal.h"
39 #include "isom.h"
40 #include "os_support.h"
41 #include "url.h"
42
43 // See ISO/IEC 23009-1:2014 5.3.9.4.4
44 typedef enum {
45     DASH_TMPL_ID_UNDEFINED = -1,
46     DASH_TMPL_ID_ESCAPE,
47     DASH_TMPL_ID_REP_ID,
48     DASH_TMPL_ID_NUMBER,
49     DASH_TMPL_ID_BANDWIDTH,
50     DASH_TMPL_ID_TIME,
51 } DASHTmplId;
52
53 typedef struct Segment {
54     char file[1024];
55     int64_t start_pos;
56     int range_length, index_length;
57     int64_t time;
58     int duration;
59     int n;
60 } Segment;
61
62 typedef struct OutputStream {
63     AVFormatContext *ctx;
64     int ctx_inited;
65     uint8_t iobuf[32768];
66     AVIOContext *out;
67     int packets_written;
68     char initfile[1024];
69     int64_t init_start_pos;
70     int init_range_length;
71     int nb_segments, segments_size, segment_index;
72     Segment **segments;
73     int64_t first_pts, start_pts, max_pts;
74     int64_t last_dts;
75     int bit_rate;
76     char bandwidth_str[64];
77
78     char codec_str[100];
79 } OutputStream;
80
81 typedef struct DASHContext {
82     const AVClass *class;  /* Class for private options. */
83     int window_size;
84     int extra_window_size;
85     int min_seg_duration;
86     int remove_at_exit;
87     int use_template;
88     int use_timeline;
89     int single_file;
90     OutputStream *streams;
91     int has_video, has_audio;
92     int64_t last_duration;
93     int64_t total_duration;
94     char availability_start_time[100];
95     char dirname[1024];
96     const char *single_file_name;
97     const char *init_seg_name;
98     const char *media_seg_name;
99     AVRational min_frame_rate, max_frame_rate;
100     int ambiguous_frame_rate;
101 } DASHContext;
102
103 static int dash_write(void *opaque, uint8_t *buf, int buf_size)
104 {
105     OutputStream *os = opaque;
106     if (os->out)
107         avio_write(os->out, buf, buf_size);
108     return buf_size;
109 }
110
111 // RFC 6381
112 static void set_codec_str(AVFormatContext *s, AVCodecParameters *par,
113                           char *str, int size)
114 {
115     const AVCodecTag *tags[2] = { NULL, NULL };
116     uint32_t tag;
117     if (par->codec_type == AVMEDIA_TYPE_VIDEO)
118         tags[0] = ff_codec_movvideo_tags;
119     else if (par->codec_type == AVMEDIA_TYPE_AUDIO)
120         tags[0] = ff_codec_movaudio_tags;
121     else
122         return;
123
124     tag = av_codec_get_tag(tags, par->codec_id);
125     if (!tag)
126         return;
127     if (size < 5)
128         return;
129
130     AV_WL32(str, tag);
131     str[4] = '\0';
132     if (!strcmp(str, "mp4a") || !strcmp(str, "mp4v")) {
133         uint32_t oti;
134         tags[0] = ff_mp4_obj_type;
135         oti = av_codec_get_tag(tags, par->codec_id);
136         if (oti)
137             av_strlcatf(str, size, ".%02x", oti);
138         else
139             return;
140
141         if (tag == MKTAG('m', 'p', '4', 'a')) {
142             if (par->extradata_size >= 2) {
143                 int aot = par->extradata[0] >> 3;
144                 if (aot == 31)
145                     aot = ((AV_RB16(par->extradata) >> 5) & 0x3f) + 32;
146                 av_strlcatf(str, size, ".%d", aot);
147             }
148         } else if (tag == MKTAG('m', 'p', '4', 'v')) {
149             // Unimplemented, should output ProfileLevelIndication as a decimal number
150             av_log(s, AV_LOG_WARNING, "Incomplete RFC 6381 codec string for mp4v\n");
151         }
152     } else if (!strcmp(str, "avc1")) {
153         uint8_t *tmpbuf = NULL;
154         uint8_t *extradata = par->extradata;
155         int extradata_size = par->extradata_size;
156         if (!extradata_size)
157             return;
158         if (extradata[0] != 1) {
159             AVIOContext *pb;
160             if (avio_open_dyn_buf(&pb) < 0)
161                 return;
162             if (ff_isom_write_avcc(pb, extradata, extradata_size) < 0) {
163                 ffio_free_dyn_buf(&pb);
164                 return;
165             }
166             extradata_size = avio_close_dyn_buf(pb, &extradata);
167             tmpbuf = extradata;
168         }
169
170         if (extradata_size >= 4)
171             av_strlcatf(str, size, ".%02x%02x%02x",
172                         extradata[1], extradata[2], extradata[3]);
173         av_free(tmpbuf);
174     }
175 }
176
177 static void dash_free(AVFormatContext *s)
178 {
179     DASHContext *c = s->priv_data;
180     int i, j;
181     if (!c->streams)
182         return;
183     for (i = 0; i < s->nb_streams; i++) {
184         OutputStream *os = &c->streams[i];
185         if (os->ctx && os->ctx_inited)
186             av_write_trailer(os->ctx);
187         if (os->ctx && os->ctx->pb)
188             av_free(os->ctx->pb);
189         ff_format_io_close(s, &os->out);
190         if (os->ctx)
191             avformat_free_context(os->ctx);
192         for (j = 0; j < os->nb_segments; j++)
193             av_free(os->segments[j]);
194         av_free(os->segments);
195     }
196     av_freep(&c->streams);
197 }
198
199 static void output_segment_list(OutputStream *os, AVIOContext *out, DASHContext *c)
200 {
201     int i, start_index = 0, start_number = 1;
202     if (c->window_size) {
203         start_index  = FFMAX(os->nb_segments   - c->window_size, 0);
204         start_number = FFMAX(os->segment_index - c->window_size, 1);
205     }
206
207     if (c->use_template) {
208         int timescale = c->use_timeline ? os->ctx->streams[0]->time_base.den : AV_TIME_BASE;
209         avio_printf(out, "\t\t\t\t<SegmentTemplate timescale=\"%d\" ", timescale);
210         if (!c->use_timeline)
211             avio_printf(out, "duration=\"%"PRId64"\" ", c->last_duration);
212         avio_printf(out, "initialization=\"%s\" media=\"%s\" startNumber=\"%d\">\n", c->init_seg_name, c->media_seg_name, c->use_timeline ? start_number : 1);
213         if (c->use_timeline) {
214             int64_t cur_time = 0;
215             avio_printf(out, "\t\t\t\t\t<SegmentTimeline>\n");
216             for (i = start_index; i < os->nb_segments; ) {
217                 Segment *seg = os->segments[i];
218                 int repeat = 0;
219                 avio_printf(out, "\t\t\t\t\t\t<S ");
220                 if (i == start_index || seg->time != cur_time) {
221                     cur_time = seg->time;
222                     avio_printf(out, "t=\"%"PRId64"\" ", seg->time);
223                 }
224                 avio_printf(out, "d=\"%d\" ", seg->duration);
225                 while (i + repeat + 1 < os->nb_segments &&
226                        os->segments[i + repeat + 1]->duration == seg->duration &&
227                        os->segments[i + repeat + 1]->time == os->segments[i + repeat]->time + os->segments[i + repeat]->duration)
228                     repeat++;
229                 if (repeat > 0)
230                     avio_printf(out, "r=\"%d\" ", repeat);
231                 avio_printf(out, "/>\n");
232                 i += 1 + repeat;
233                 cur_time += (1 + repeat) * seg->duration;
234             }
235             avio_printf(out, "\t\t\t\t\t</SegmentTimeline>\n");
236         }
237         avio_printf(out, "\t\t\t\t</SegmentTemplate>\n");
238     } else if (c->single_file) {
239         avio_printf(out, "\t\t\t\t<BaseURL>%s</BaseURL>\n", os->initfile);
240         avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, c->last_duration, start_number);
241         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);
242         for (i = start_index; i < os->nb_segments; i++) {
243             Segment *seg = os->segments[i];
244             avio_printf(out, "\t\t\t\t\t<SegmentURL mediaRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->range_length - 1);
245             if (seg->index_length)
246                 avio_printf(out, "indexRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->index_length - 1);
247             avio_printf(out, "/>\n");
248         }
249         avio_printf(out, "\t\t\t\t</SegmentList>\n");
250     } else {
251         avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, c->last_duration, start_number);
252         avio_printf(out, "\t\t\t\t\t<Initialization sourceURL=\"%s\" />\n", os->initfile);
253         for (i = start_index; i < os->nb_segments; i++) {
254             Segment *seg = os->segments[i];
255             avio_printf(out, "\t\t\t\t\t<SegmentURL media=\"%s\" />\n", seg->file);
256         }
257         avio_printf(out, "\t\t\t\t</SegmentList>\n");
258     }
259 }
260
261 static DASHTmplId dash_read_tmpl_id(const char *identifier, char *format_tag,
262                                     size_t format_tag_size, const char **ptr) {
263     const char *next_ptr;
264     DASHTmplId id_type = DASH_TMPL_ID_UNDEFINED;
265
266     if (av_strstart(identifier, "$$", &next_ptr)) {
267         id_type = DASH_TMPL_ID_ESCAPE;
268         *ptr = next_ptr;
269     } else if (av_strstart(identifier, "$RepresentationID$", &next_ptr)) {
270         id_type = DASH_TMPL_ID_REP_ID;
271         // default to basic format, as $RepresentationID$ identifiers
272         // are not allowed to have custom format-tags.
273         av_strlcpy(format_tag, "%d", format_tag_size);
274         *ptr = next_ptr;
275     } else { // the following identifiers may have an explicit format_tag
276         if (av_strstart(identifier, "$Number", &next_ptr))
277             id_type = DASH_TMPL_ID_NUMBER;
278         else if (av_strstart(identifier, "$Bandwidth", &next_ptr))
279             id_type = DASH_TMPL_ID_BANDWIDTH;
280         else if (av_strstart(identifier, "$Time", &next_ptr))
281             id_type = DASH_TMPL_ID_TIME;
282         else
283             id_type = DASH_TMPL_ID_UNDEFINED;
284
285         // next parse the dash format-tag and generate a c-string format tag
286         // (next_ptr now points at the first '%' at the beginning of the format-tag)
287         if (id_type != DASH_TMPL_ID_UNDEFINED) {
288             const char *number_format = (id_type == DASH_TMPL_ID_TIME) ? PRId64 : "d";
289             if (next_ptr[0] == '$') { // no dash format-tag
290                 snprintf(format_tag, format_tag_size, "%%%s", number_format);
291                 *ptr = &next_ptr[1];
292             } else {
293                 const char *width_ptr;
294                 // only tolerate single-digit width-field (i.e. up to 9-digit width)
295                 if (av_strstart(next_ptr, "%0", &width_ptr) &&
296                     av_isdigit(width_ptr[0]) &&
297                     av_strstart(&width_ptr[1], "d$", &next_ptr)) {
298                     // yes, we're using a format tag to build format_tag.
299                     snprintf(format_tag, format_tag_size, "%s%c%s", "%0", width_ptr[0], number_format);
300                     *ptr = next_ptr;
301                 } else {
302                     av_log(NULL, AV_LOG_WARNING, "Failed to parse format-tag beginning with %s. Expected either a "
303                                                  "closing '$' character or a format-string like '%%0[width]d', "
304                                                  "where width must be a single digit\n", next_ptr);
305                     id_type = DASH_TMPL_ID_UNDEFINED;
306                 }
307             }
308         }
309     }
310     return id_type;
311 }
312
313 static void dash_fill_tmpl_params(char *dst, size_t buffer_size,
314                                   const char *template, int rep_id,
315                                   int number, int bit_rate,
316                                   int64_t time) {
317     int dst_pos = 0;
318     const char *t_cur = template;
319     while (dst_pos < buffer_size - 1 && *t_cur) {
320         char format_tag[7]; // May be "%d", "%0Xd", or "%0Xlld" (for $Time$), where X is in [0-9]
321         int n = 0;
322         DASHTmplId id_type;
323         const char *t_next = strchr(t_cur, '$'); // copy over everything up to the first '$' character
324         if (t_next) {
325             int num_copy_bytes = FFMIN(t_next - t_cur, buffer_size - dst_pos - 1);
326             av_strlcpy(&dst[dst_pos], t_cur, num_copy_bytes + 1);
327             // advance
328             dst_pos += num_copy_bytes;
329             t_cur = t_next;
330         } else { // no more DASH identifiers to substitute - just copy the rest over and break
331             av_strlcpy(&dst[dst_pos], t_cur, buffer_size - dst_pos);
332             break;
333         }
334
335         if (dst_pos >= buffer_size - 1 || !*t_cur)
336             break;
337
338         // t_cur is now pointing to a '$' character
339         id_type = dash_read_tmpl_id(t_cur, format_tag, sizeof(format_tag), &t_next);
340         switch (id_type) {
341         case DASH_TMPL_ID_ESCAPE:
342             av_strlcpy(&dst[dst_pos], "$", 2);
343             n = 1;
344             break;
345         case DASH_TMPL_ID_REP_ID:
346             n = snprintf(&dst[dst_pos], buffer_size - dst_pos, format_tag, rep_id);
347             break;
348         case DASH_TMPL_ID_NUMBER:
349             n = snprintf(&dst[dst_pos], buffer_size - dst_pos, format_tag, number);
350             break;
351         case DASH_TMPL_ID_BANDWIDTH:
352             n = snprintf(&dst[dst_pos], buffer_size - dst_pos, format_tag, bit_rate);
353             break;
354         case DASH_TMPL_ID_TIME:
355             n = snprintf(&dst[dst_pos], buffer_size - dst_pos, format_tag, time);
356             break;
357         case DASH_TMPL_ID_UNDEFINED:
358             // copy over one byte and advance
359             av_strlcpy(&dst[dst_pos], t_cur, 2);
360             n = 1;
361             t_next = &t_cur[1];
362             break;
363         }
364         // t_next points just past the processed identifier
365         // n is the number of bytes that were attempted to be written to dst
366         // (may have failed to write all because buffer_size).
367
368         // advance
369         dst_pos += FFMIN(n, buffer_size - dst_pos - 1);
370         t_cur = t_next;
371     }
372 }
373
374 static char *xmlescape(const char *str) {
375     int outlen = strlen(str)*3/2 + 6;
376     char *out = av_realloc(NULL, outlen + 1);
377     int pos = 0;
378     if (!out)
379         return NULL;
380     for (; *str; str++) {
381         if (pos + 6 > outlen) {
382             char *tmp;
383             outlen = 2 * outlen + 6;
384             tmp = av_realloc(out, outlen + 1);
385             if (!tmp) {
386                 av_free(out);
387                 return NULL;
388             }
389             out = tmp;
390         }
391         if (*str == '&') {
392             memcpy(&out[pos], "&amp;", 5);
393             pos += 5;
394         } else if (*str == '<') {
395             memcpy(&out[pos], "&lt;", 4);
396             pos += 4;
397         } else if (*str == '>') {
398             memcpy(&out[pos], "&gt;", 4);
399             pos += 4;
400         } else if (*str == '\'') {
401             memcpy(&out[pos], "&apos;", 6);
402             pos += 6;
403         } else if (*str == '\"') {
404             memcpy(&out[pos], "&quot;", 6);
405             pos += 6;
406         } else {
407             out[pos++] = *str;
408         }
409     }
410     out[pos] = '\0';
411     return out;
412 }
413
414 static void write_time(AVIOContext *out, int64_t time)
415 {
416     int seconds = time / AV_TIME_BASE;
417     int fractions = time % AV_TIME_BASE;
418     int minutes = seconds / 60;
419     int hours = minutes / 60;
420     seconds %= 60;
421     minutes %= 60;
422     avio_printf(out, "PT");
423     if (hours)
424         avio_printf(out, "%dH", hours);
425     if (hours || minutes)
426         avio_printf(out, "%dM", minutes);
427     avio_printf(out, "%d.%dS", seconds, fractions / (AV_TIME_BASE / 10));
428 }
429
430 static void format_date_now(char *buf, int size)
431 {
432     time_t t = time(NULL);
433     struct tm *ptm, tmbuf;
434     ptm = gmtime_r(&t, &tmbuf);
435     if (ptm) {
436         if (!strftime(buf, size, "%Y-%m-%dT%H:%M:%S", ptm))
437             buf[0] = '\0';
438     }
439 }
440
441 static int write_manifest(AVFormatContext *s, int final)
442 {
443     DASHContext *c = s->priv_data;
444     AVIOContext *out;
445     char temp_filename[1024];
446     int ret, i;
447     const char *proto = avio_find_protocol_name(s->filename);
448     int use_rename = proto && !strcmp(proto, "file");
449     static unsigned int warned_non_file = 0;
450     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
451
452     if (!use_rename && !warned_non_file++)
453         av_log(s, AV_LOG_ERROR, "Cannot use rename on non file protocol, this may lead to races and temporary partial files\n");
454
455     snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", s->filename);
456     ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL);
457     if (ret < 0) {
458         av_log(s, AV_LOG_ERROR, "Unable to open %s for writing\n", temp_filename);
459         return ret;
460     }
461     avio_printf(out, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
462     avio_printf(out, "<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
463                 "\txmlns=\"urn:mpeg:dash:schema:mpd:2011\"\n"
464                 "\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n"
465                 "\txsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd\"\n"
466                 "\tprofiles=\"urn:mpeg:dash:profile:isoff-live:2011\"\n"
467                 "\ttype=\"%s\"\n", final ? "static" : "dynamic");
468     if (final) {
469         avio_printf(out, "\tmediaPresentationDuration=\"");
470         write_time(out, c->total_duration);
471         avio_printf(out, "\"\n");
472     } else {
473         int64_t update_period = c->last_duration / AV_TIME_BASE;
474         char now_str[100];
475         if (c->use_template && !c->use_timeline)
476             update_period = 500;
477         avio_printf(out, "\tminimumUpdatePeriod=\"PT%"PRId64"S\"\n", update_period);
478         avio_printf(out, "\tsuggestedPresentationDelay=\"PT%"PRId64"S\"\n", c->last_duration / AV_TIME_BASE);
479         if (!c->availability_start_time[0] && s->nb_streams > 0 && c->streams[0].nb_segments > 0) {
480             format_date_now(c->availability_start_time, sizeof(c->availability_start_time));
481         }
482         if (c->availability_start_time[0])
483             avio_printf(out, "\tavailabilityStartTime=\"%s\"\n", c->availability_start_time);
484         format_date_now(now_str, sizeof(now_str));
485         if (now_str[0])
486             avio_printf(out, "\tpublishTime=\"%s\"\n", now_str);
487         if (c->window_size && c->use_template) {
488             avio_printf(out, "\ttimeShiftBufferDepth=\"");
489             write_time(out, c->last_duration * c->window_size);
490             avio_printf(out, "\"\n");
491         }
492     }
493     avio_printf(out, "\tminBufferTime=\"");
494     write_time(out, c->last_duration);
495     avio_printf(out, "\">\n");
496     avio_printf(out, "\t<ProgramInformation>\n");
497     if (title) {
498         char *escaped = xmlescape(title->value);
499         avio_printf(out, "\t\t<Title>%s</Title>\n", escaped);
500         av_free(escaped);
501     }
502     avio_printf(out, "\t</ProgramInformation>\n");
503     if (c->window_size && s->nb_streams > 0 && c->streams[0].nb_segments > 0 && !c->use_template) {
504         OutputStream *os = &c->streams[0];
505         int start_index = FFMAX(os->nb_segments - c->window_size, 0);
506         int64_t start_time = av_rescale_q(os->segments[start_index]->time, s->streams[0]->time_base, AV_TIME_BASE_Q);
507         avio_printf(out, "\t<Period start=\"");
508         write_time(out, start_time);
509         avio_printf(out, "\">\n");
510     } else {
511         avio_printf(out, "\t<Period start=\"PT0.0S\">\n");
512     }
513
514     if (c->has_video) {
515         avio_printf(out, "\t\t<AdaptationSet contentType=\"video\" segmentAlignment=\"true\" bitstreamSwitching=\"true\"");
516         if (c->max_frame_rate.num && !c->ambiguous_frame_rate)
517             avio_printf(out, " %s=\"%d/%d\"", (av_cmp_q(c->min_frame_rate, c->max_frame_rate) < 0) ? "maxFrameRate" : "frameRate", c->max_frame_rate.num, c->max_frame_rate.den);
518         avio_printf(out, ">\n");
519
520         for (i = 0; i < s->nb_streams; i++) {
521             AVStream *st = s->streams[i];
522             OutputStream *os = &c->streams[i];
523
524             if (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
525                 continue;
526
527             avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"video/mp4\" codecs=\"%s\"%s width=\"%d\" height=\"%d\"", i, os->codec_str, os->bandwidth_str, st->codecpar->width, st->codecpar->height);
528             if (st->avg_frame_rate.num)
529                 avio_printf(out, " frameRate=\"%d/%d\"", st->avg_frame_rate.num, st->avg_frame_rate.den);
530             avio_printf(out, ">\n");
531
532             output_segment_list(&c->streams[i], out, c);
533             avio_printf(out, "\t\t\t</Representation>\n");
534         }
535         avio_printf(out, "\t\t</AdaptationSet>\n");
536     }
537     if (c->has_audio) {
538         avio_printf(out, "\t\t<AdaptationSet contentType=\"audio\" segmentAlignment=\"true\" bitstreamSwitching=\"true\">\n");
539         for (i = 0; i < s->nb_streams; i++) {
540             AVStream *st = s->streams[i];
541             OutputStream *os = &c->streams[i];
542
543             if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
544                 continue;
545
546             avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"audio/mp4\" codecs=\"%s\"%s audioSamplingRate=\"%d\">\n", i, os->codec_str, os->bandwidth_str, st->codecpar->sample_rate);
547             avio_printf(out, "\t\t\t\t<AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"%d\" />\n", st->codecpar->channels);
548             output_segment_list(&c->streams[i], out, c);
549             avio_printf(out, "\t\t\t</Representation>\n");
550         }
551         avio_printf(out, "\t\t</AdaptationSet>\n");
552     }
553     avio_printf(out, "\t</Period>\n");
554     avio_printf(out, "</MPD>\n");
555     avio_flush(out);
556     ff_format_io_close(s, &out);
557
558     if (use_rename)
559         return avpriv_io_move(temp_filename, s->filename);
560
561     return 0;
562 }
563
564 static int dash_init(AVFormatContext *s)
565 {
566     DASHContext *c = s->priv_data;
567     int ret = 0, i;
568     AVOutputFormat *oformat;
569     char *ptr;
570     char basename[1024];
571
572     if (c->single_file_name)
573         c->single_file = 1;
574     if (c->single_file)
575         c->use_template = 0;
576     c->ambiguous_frame_rate = 0;
577
578     av_strlcpy(c->dirname, s->filename, sizeof(c->dirname));
579     ptr = strrchr(c->dirname, '/');
580     if (ptr) {
581         av_strlcpy(basename, &ptr[1], sizeof(basename));
582         ptr[1] = '\0';
583     } else {
584         c->dirname[0] = '\0';
585         av_strlcpy(basename, s->filename, sizeof(basename));
586     }
587
588     ptr = strrchr(basename, '.');
589     if (ptr)
590         *ptr = '\0';
591
592     oformat = av_guess_format("mp4", NULL, NULL);
593     if (!oformat)
594         return AVERROR_MUXER_NOT_FOUND;
595
596     c->streams = av_mallocz(sizeof(*c->streams) * s->nb_streams);
597     if (!c->streams)
598         return AVERROR(ENOMEM);
599
600     for (i = 0; i < s->nb_streams; i++) {
601         OutputStream *os = &c->streams[i];
602         AVFormatContext *ctx;
603         AVStream *st;
604         AVDictionary *opts = NULL;
605         char filename[1024];
606
607         os->bit_rate = s->streams[i]->codecpar->bit_rate;
608         if (os->bit_rate) {
609             snprintf(os->bandwidth_str, sizeof(os->bandwidth_str),
610                      " bandwidth=\"%d\"", os->bit_rate);
611         } else {
612             int level = s->strict_std_compliance >= FF_COMPLIANCE_STRICT ?
613                         AV_LOG_ERROR : AV_LOG_WARNING;
614             av_log(s, level, "No bit rate set for stream %d\n", i);
615             if (s->strict_std_compliance >= FF_COMPLIANCE_STRICT)
616                 return AVERROR(EINVAL);
617         }
618
619         ctx = avformat_alloc_context();
620         if (!ctx)
621             return AVERROR(ENOMEM);
622         os->ctx = ctx;
623         ctx->oformat = oformat;
624         ctx->interrupt_callback = s->interrupt_callback;
625         ctx->opaque             = s->opaque;
626         ctx->io_close           = s->io_close;
627         ctx->io_open            = s->io_open;
628
629         if (!(st = avformat_new_stream(ctx, NULL)))
630             return AVERROR(ENOMEM);
631         avcodec_parameters_copy(st->codecpar, s->streams[i]->codecpar);
632         st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
633         st->time_base = s->streams[i]->time_base;
634         ctx->avoid_negative_ts = s->avoid_negative_ts;
635         ctx->flags = s->flags;
636
637         ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), AVIO_FLAG_WRITE, os, NULL, dash_write, NULL);
638         if (!ctx->pb)
639             return AVERROR(ENOMEM);
640
641         if (c->single_file) {
642             if (c->single_file_name)
643                 dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), c->single_file_name, i, 0, os->bit_rate, 0);
644             else
645                 snprintf(os->initfile, sizeof(os->initfile), "%s-stream%d.m4s", basename, i);
646         } else {
647             dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), c->init_seg_name, i, 0, os->bit_rate, 0);
648         }
649         snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
650         ret = s->io_open(s, &os->out, filename, AVIO_FLAG_WRITE, NULL);
651         if (ret < 0)
652             return ret;
653         os->init_start_pos = 0;
654
655         av_dict_set(&opts, "movflags", "frag_custom+dash+delay_moov", 0);
656         if ((ret = avformat_init_output(ctx, &opts)) < 0)
657             return ret;
658         os->ctx_inited = 1;
659         avio_flush(ctx->pb);
660         av_dict_free(&opts);
661
662         av_log(s, AV_LOG_VERBOSE, "Representation %d init segment will be written to: %s\n", i, filename);
663
664         s->streams[i]->time_base = st->time_base;
665         // If the muxer wants to shift timestamps, request to have them shifted
666         // already before being handed to this muxer, so we don't have mismatches
667         // between the MPD and the actual segments.
668         s->avoid_negative_ts = ctx->avoid_negative_ts;
669         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
670             AVRational avg_frame_rate = s->streams[i]->avg_frame_rate;
671             if (avg_frame_rate.num > 0) {
672                 if (av_cmp_q(avg_frame_rate, c->min_frame_rate) < 0)
673                     c->min_frame_rate = avg_frame_rate;
674                 if (av_cmp_q(c->max_frame_rate, avg_frame_rate) < 0)
675                     c->max_frame_rate = avg_frame_rate;
676             } else {
677                 c->ambiguous_frame_rate = 1;
678             }
679             c->has_video = 1;
680         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
681             c->has_audio = 1;
682         }
683
684         set_codec_str(s, st->codecpar, os->codec_str, sizeof(os->codec_str));
685         os->first_pts = AV_NOPTS_VALUE;
686         os->max_pts = AV_NOPTS_VALUE;
687         os->last_dts = AV_NOPTS_VALUE;
688         os->segment_index = 1;
689     }
690
691     if (!c->has_video && c->min_seg_duration <= 0) {
692         av_log(s, AV_LOG_WARNING, "no video stream and no min seg duration set\n");
693         return AVERROR(EINVAL);
694     }
695     return 0;
696 }
697
698 static int dash_write_header(AVFormatContext *s)
699 {
700     DASHContext *c = s->priv_data;
701     int i, ret;
702     for (i = 0; i < s->nb_streams; i++) {
703         OutputStream *os = &c->streams[i];
704         if ((ret = avformat_write_header(os->ctx, NULL)) < 0) {
705             dash_free(s);
706             return ret;
707         }
708     }
709     ret = write_manifest(s, 0);
710     if (!ret)
711         av_log(s, AV_LOG_VERBOSE, "Manifest written to: %s\n", s->filename);
712     return ret;
713 }
714
715 static int add_segment(OutputStream *os, const char *file,
716                        int64_t time, int duration,
717                        int64_t start_pos, int64_t range_length,
718                        int64_t index_length)
719 {
720     int err;
721     Segment *seg;
722     if (os->nb_segments >= os->segments_size) {
723         os->segments_size = (os->segments_size + 1) * 2;
724         if ((err = av_reallocp(&os->segments, sizeof(*os->segments) *
725                                os->segments_size)) < 0) {
726             os->segments_size = 0;
727             os->nb_segments = 0;
728             return err;
729         }
730     }
731     seg = av_mallocz(sizeof(*seg));
732     if (!seg)
733         return AVERROR(ENOMEM);
734     av_strlcpy(seg->file, file, sizeof(seg->file));
735     seg->time = time;
736     seg->duration = duration;
737     if (seg->time < 0) { // If pts<0, it is expected to be cut away with an edit list
738         seg->duration += seg->time;
739         seg->time = 0;
740     }
741     seg->start_pos = start_pos;
742     seg->range_length = range_length;
743     seg->index_length = index_length;
744     os->segments[os->nb_segments++] = seg;
745     os->segment_index++;
746     return 0;
747 }
748
749 static void write_styp(AVIOContext *pb)
750 {
751     avio_wb32(pb, 24);
752     ffio_wfourcc(pb, "styp");
753     ffio_wfourcc(pb, "msdh");
754     avio_wb32(pb, 0); /* minor */
755     ffio_wfourcc(pb, "msdh");
756     ffio_wfourcc(pb, "msix");
757 }
758
759 static void find_index_range(AVFormatContext *s, const char *full_path,
760                              int64_t pos, int *index_length)
761 {
762     uint8_t buf[8];
763     AVIOContext *pb;
764     int ret;
765
766     ret = s->io_open(s, &pb, full_path, AVIO_FLAG_READ, NULL);
767     if (ret < 0)
768         return;
769     if (avio_seek(pb, pos, SEEK_SET) != pos) {
770         ff_format_io_close(s, &pb);
771         return;
772     }
773     ret = avio_read(pb, buf, 8);
774     ff_format_io_close(s, &pb);
775     if (ret < 8)
776         return;
777     if (AV_RL32(&buf[4]) != MKTAG('s', 'i', 'd', 'x'))
778         return;
779     *index_length = AV_RB32(&buf[0]);
780 }
781
782 static int update_stream_extradata(AVFormatContext *s, OutputStream *os,
783                                    AVCodecParameters *par)
784 {
785     uint8_t *extradata;
786
787     if (os->ctx->streams[0]->codecpar->extradata_size || !par->extradata_size)
788         return 0;
789
790     extradata = av_malloc(par->extradata_size);
791
792     if (!extradata)
793         return AVERROR(ENOMEM);
794
795     memcpy(extradata, par->extradata, par->extradata_size);
796
797     os->ctx->streams[0]->codecpar->extradata = extradata;
798     os->ctx->streams[0]->codecpar->extradata_size = par->extradata_size;
799
800     set_codec_str(s, par, os->codec_str, sizeof(os->codec_str));
801
802     return 0;
803 }
804
805 static int dash_flush(AVFormatContext *s, int final, int stream)
806 {
807     DASHContext *c = s->priv_data;
808     int i, ret = 0;
809
810     const char *proto = avio_find_protocol_name(s->filename);
811     int use_rename = proto && !strcmp(proto, "file");
812
813     int cur_flush_segment_index = 0;
814     if (stream >= 0)
815         cur_flush_segment_index = c->streams[stream].segment_index;
816
817     for (i = 0; i < s->nb_streams; i++) {
818         OutputStream *os = &c->streams[i];
819         char filename[1024] = "", full_path[1024], temp_path[1024];
820         int64_t start_pos;
821         int range_length, index_length = 0;
822
823         if (!os->packets_written)
824             continue;
825
826         // Flush the single stream that got a keyframe right now.
827         // Flush all audio streams as well, in sync with video keyframes,
828         // but not the other video streams.
829         if (stream >= 0 && i != stream) {
830             if (s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
831                 continue;
832             // Make sure we don't flush audio streams multiple times, when
833             // all video streams are flushed one at a time.
834             if (c->has_video && os->segment_index > cur_flush_segment_index)
835                 continue;
836         }
837
838         if (!os->init_range_length) {
839             av_write_frame(os->ctx, NULL);
840             os->init_range_length = avio_tell(os->ctx->pb);
841             if (!c->single_file)
842                 ff_format_io_close(s, &os->out);
843         }
844
845         start_pos = avio_tell(os->ctx->pb);
846
847         if (!c->single_file) {
848             dash_fill_tmpl_params(filename, sizeof(filename), c->media_seg_name, i, os->segment_index, os->bit_rate, os->start_pts);
849             snprintf(full_path, sizeof(full_path), "%s%s", c->dirname, filename);
850             snprintf(temp_path, sizeof(temp_path), use_rename ? "%s.tmp" : "%s", full_path);
851             ret = s->io_open(s, &os->out, temp_path, AVIO_FLAG_WRITE, NULL);
852             if (ret < 0)
853                 break;
854             write_styp(os->ctx->pb);
855         } else {
856             snprintf(full_path, sizeof(full_path), "%s%s", c->dirname, os->initfile);
857         }
858
859         av_write_frame(os->ctx, NULL);
860         avio_flush(os->ctx->pb);
861         os->packets_written = 0;
862
863         range_length = avio_tell(os->ctx->pb) - start_pos;
864         if (c->single_file) {
865             find_index_range(s, full_path, start_pos, &index_length);
866         } else {
867             ff_format_io_close(s, &os->out);
868
869             if (use_rename) {
870                 ret = avpriv_io_move(temp_path, full_path);
871                 if (ret < 0)
872                     break;
873             }
874         }
875         add_segment(os, filename, os->start_pts, os->max_pts - os->start_pts, start_pos, range_length, index_length);
876         av_log(s, AV_LOG_VERBOSE, "Representation %d media segment %d written to: %s\n", i, os->segment_index, full_path);
877     }
878
879     if (c->window_size || (final && c->remove_at_exit)) {
880         for (i = 0; i < s->nb_streams; i++) {
881             OutputStream *os = &c->streams[i];
882             int j;
883             int remove = os->nb_segments - c->window_size - c->extra_window_size;
884             if (final && c->remove_at_exit)
885                 remove = os->nb_segments;
886             if (remove > 0) {
887                 for (j = 0; j < remove; j++) {
888                     char filename[1024];
889                     snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->segments[j]->file);
890                     unlink(filename);
891                     av_free(os->segments[j]);
892                 }
893                 os->nb_segments -= remove;
894                 memmove(os->segments, os->segments + remove, os->nb_segments * sizeof(*os->segments));
895             }
896         }
897     }
898
899     if (ret >= 0)
900         ret = write_manifest(s, final);
901     return ret;
902 }
903
904 static int dash_write_packet(AVFormatContext *s, AVPacket *pkt)
905 {
906     DASHContext *c = s->priv_data;
907     AVStream *st = s->streams[pkt->stream_index];
908     OutputStream *os = &c->streams[pkt->stream_index];
909     int64_t seg_end_duration = (os->segment_index) * (int64_t) c->min_seg_duration;
910     int ret;
911
912     ret = update_stream_extradata(s, os, st->codecpar);
913     if (ret < 0)
914         return ret;
915
916     // Fill in a heuristic guess of the packet duration, if none is available.
917     // The mp4 muxer will do something similar (for the last packet in a fragment)
918     // if nothing is set (setting it for the other packets doesn't hurt).
919     // By setting a nonzero duration here, we can be sure that the mp4 muxer won't
920     // invoke its heuristic (this doesn't have to be identical to that algorithm),
921     // so that we know the exact timestamps of fragments.
922     if (!pkt->duration && os->last_dts != AV_NOPTS_VALUE)
923         pkt->duration = pkt->dts - os->last_dts;
924     os->last_dts = pkt->dts;
925
926     // If forcing the stream to start at 0, the mp4 muxer will set the start
927     // timestamps to 0. Do the same here, to avoid mismatches in duration/timestamps.
928     if (os->first_pts == AV_NOPTS_VALUE &&
929         s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO) {
930         pkt->pts -= pkt->dts;
931         pkt->dts  = 0;
932     }
933
934     if (os->first_pts == AV_NOPTS_VALUE)
935         os->first_pts = pkt->pts;
936
937     if ((!c->has_video || st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) &&
938         pkt->flags & AV_PKT_FLAG_KEY && os->packets_written &&
939         av_compare_ts(pkt->pts - os->first_pts, st->time_base,
940                       seg_end_duration, AV_TIME_BASE_Q) >= 0) {
941         int64_t prev_duration = c->last_duration;
942
943         c->last_duration = av_rescale_q(pkt->pts - os->start_pts,
944                                         st->time_base,
945                                         AV_TIME_BASE_Q);
946         c->total_duration = av_rescale_q(pkt->pts - os->first_pts,
947                                          st->time_base,
948                                          AV_TIME_BASE_Q);
949
950         if ((!c->use_timeline || !c->use_template) && prev_duration) {
951             if (c->last_duration < prev_duration*9/10 ||
952                 c->last_duration > prev_duration*11/10) {
953                 av_log(s, AV_LOG_WARNING,
954                        "Segment durations differ too much, enable use_timeline "
955                        "and use_template, or keep a stricter keyframe interval\n");
956             }
957         }
958
959         if ((ret = dash_flush(s, 0, pkt->stream_index)) < 0)
960             return ret;
961     }
962
963     if (!os->packets_written) {
964         // If we wrote a previous segment, adjust the start time of the segment
965         // to the end of the previous one (which is the same as the mp4 muxer
966         // does). This avoids gaps in the timeline.
967         if (os->max_pts != AV_NOPTS_VALUE)
968             os->start_pts = os->max_pts;
969         else
970             os->start_pts = pkt->pts;
971     }
972     if (os->max_pts == AV_NOPTS_VALUE)
973         os->max_pts = pkt->pts + pkt->duration;
974     else
975         os->max_pts = FFMAX(os->max_pts, pkt->pts + pkt->duration);
976     os->packets_written++;
977     return ff_write_chained(os->ctx, 0, pkt, s, 0);
978 }
979
980 static int dash_write_trailer(AVFormatContext *s)
981 {
982     DASHContext *c = s->priv_data;
983
984     if (s->nb_streams > 0) {
985         OutputStream *os = &c->streams[0];
986         // If no segments have been written so far, try to do a crude
987         // guess of the segment duration
988         if (!c->last_duration)
989             c->last_duration = av_rescale_q(os->max_pts - os->start_pts,
990                                             s->streams[0]->time_base,
991                                             AV_TIME_BASE_Q);
992         c->total_duration = av_rescale_q(os->max_pts - os->first_pts,
993                                          s->streams[0]->time_base,
994                                          AV_TIME_BASE_Q);
995     }
996     dash_flush(s, 1, -1);
997
998     if (c->remove_at_exit) {
999         char filename[1024];
1000         int i;
1001         for (i = 0; i < s->nb_streams; i++) {
1002             OutputStream *os = &c->streams[i];
1003             snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
1004             unlink(filename);
1005         }
1006         unlink(s->filename);
1007     }
1008
1009     return 0;
1010 }
1011
1012 static int dash_check_bitstream(struct AVFormatContext *s, const AVPacket *avpkt)
1013 {
1014     DASHContext *c = s->priv_data;
1015     OutputStream *os = &c->streams[avpkt->stream_index];
1016     AVFormatContext *oc = os->ctx;
1017     if (oc->oformat->check_bitstream) {
1018         int ret;
1019         AVPacket pkt = *avpkt;
1020         pkt.stream_index = 0;
1021         ret = oc->oformat->check_bitstream(oc, &pkt);
1022         if (ret == 1) {
1023             AVStream *st = s->streams[avpkt->stream_index];
1024             AVStream *ost = oc->streams[0];
1025             st->internal->bsfcs = ost->internal->bsfcs;
1026             st->internal->nb_bsfcs = ost->internal->nb_bsfcs;
1027             ost->internal->bsfcs = NULL;
1028             ost->internal->nb_bsfcs = 0;
1029         }
1030         return ret;
1031     }
1032     return 1;
1033 }
1034
1035 #define OFFSET(x) offsetof(DASHContext, x)
1036 #define E AV_OPT_FLAG_ENCODING_PARAM
1037 static const AVOption options[] = {
1038     { "window_size", "number of segments kept in the manifest", OFFSET(window_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, E },
1039     { "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 },
1040     { "min_seg_duration", "minimum segment duration (in microseconds)", OFFSET(min_seg_duration), AV_OPT_TYPE_INT64, { .i64 = 5000000 }, 0, INT_MAX, E },
1041     { "remove_at_exit", "remove all segments when finished", OFFSET(remove_at_exit), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
1042     { "use_template", "Use SegmentTemplate instead of SegmentList", OFFSET(use_template), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
1043     { "use_timeline", "Use SegmentTimeline in SegmentTemplate", OFFSET(use_timeline), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
1044     { "single_file", "Store all segments in one file, accessed using byte ranges", OFFSET(single_file), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
1045     { "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 },
1046     { "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 },
1047     { "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 },
1048     { NULL },
1049 };
1050
1051 static const AVClass dash_class = {
1052     .class_name = "dash muxer",
1053     .item_name  = av_default_item_name,
1054     .option     = options,
1055     .version    = LIBAVUTIL_VERSION_INT,
1056 };
1057
1058 AVOutputFormat ff_dash_muxer = {
1059     .name           = "dash",
1060     .long_name      = NULL_IF_CONFIG_SMALL("DASH Muxer"),
1061     .priv_data_size = sizeof(DASHContext),
1062     .audio_codec    = AV_CODEC_ID_AAC,
1063     .video_codec    = AV_CODEC_ID_H264,
1064     .flags          = AVFMT_GLOBALHEADER | AVFMT_NOFILE | AVFMT_TS_NEGATIVE,
1065     .init           = dash_init,
1066     .write_header   = dash_write_header,
1067     .write_packet   = dash_write_packet,
1068     .write_trailer  = dash_write_trailer,
1069     .deinit         = dash_free,
1070     .codec_tag      = (const AVCodecTag* const []){ ff_mp4_obj_type, 0 },
1071     .check_bitstream = dash_check_bitstream,
1072     .priv_class     = &dash_class,
1073 };