]> git.sesse.net Git - ffmpeg/blob - libavformat/webmdashenc.c
libavformat/tcp: fix return code for tcp_accept
[ffmpeg] / libavformat / webmdashenc.c
1 /*
2  * WebM DASH Manifest XML muxer
3  * Copyright (c) 2014 Vignesh Venkatasubramanian
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 /*
23  * WebM DASH Specification:
24  * https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification
25  * ISO DASH Specification:
26  * http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip
27  */
28
29 #include <float.h>
30 #include <stdint.h>
31 #include <string.h>
32
33 #include "avformat.h"
34 #include "avio_internal.h"
35 #include "matroska.h"
36
37 #include "libavutil/avstring.h"
38 #include "libavutil/dict.h"
39 #include "libavutil/opt.h"
40 #include "libavutil/time_internal.h"
41
42 typedef struct AdaptationSet {
43     char id[10];
44     int *streams;
45     int nb_streams;
46 } AdaptationSet;
47
48 typedef struct WebMDashMuxContext {
49     const AVClass  *class;
50     char *adaptation_sets;
51     AdaptationSet *as;
52     int nb_as;
53     int representation_id;
54     int is_live;
55     int chunk_start_index;
56     int chunk_duration;
57     char *utc_timing_url;
58     double time_shift_buffer_depth;
59     int minimum_update_period;
60     int debug_mode;
61 } WebMDashMuxContext;
62
63 static const char *get_codec_name(int codec_id)
64 {
65     switch (codec_id) {
66         case AV_CODEC_ID_VP8:
67             return "vp8";
68         case AV_CODEC_ID_VP9:
69             return "vp9";
70         case AV_CODEC_ID_VORBIS:
71             return "vorbis";
72         case AV_CODEC_ID_OPUS:
73             return "opus";
74     }
75     return NULL;
76 }
77
78 static double get_duration(AVFormatContext *s)
79 {
80     int i = 0;
81     double max = 0.0;
82     for (i = 0; i < s->nb_streams; i++) {
83         AVDictionaryEntry *duration = av_dict_get(s->streams[i]->metadata,
84                                                   DURATION, NULL, 0);
85         if (!duration || atof(duration->value) < 0) continue;
86         if (atof(duration->value) > max) max = atof(duration->value);
87     }
88     return max / 1000;
89 }
90
91 static int write_header(AVFormatContext *s)
92 {
93     WebMDashMuxContext *w = s->priv_data;
94     double min_buffer_time = 1.0;
95     avio_printf(s->pb, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
96     avio_printf(s->pb, "<MPD\n");
97     avio_printf(s->pb, "  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n");
98     avio_printf(s->pb, "  xmlns=\"urn:mpeg:DASH:schema:MPD:2011\"\n");
99     avio_printf(s->pb, "  xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\"\n");
100     avio_printf(s->pb, "  type=\"%s\"\n", w->is_live ? "dynamic" : "static");
101     if (!w->is_live) {
102         avio_printf(s->pb, "  mediaPresentationDuration=\"PT%gS\"\n",
103                     get_duration(s));
104     }
105     avio_printf(s->pb, "  minBufferTime=\"PT%gS\"\n", min_buffer_time);
106     avio_printf(s->pb, "  profiles=\"%s\"%s",
107                 w->is_live ? "urn:mpeg:dash:profile:isoff-live:2011" : "urn:webm:dash:profile:webm-on-demand:2012",
108                 w->is_live ? "\n" : ">\n");
109     if (w->is_live) {
110         time_t local_time = time(NULL);
111         struct tm gmt_buffer;
112         struct tm *gmt = gmtime_r(&local_time, &gmt_buffer);
113         char gmt_iso[21];
114         if (!strftime(gmt_iso, 21, "%Y-%m-%dT%H:%M:%SZ", gmt)) {
115             return AVERROR_UNKNOWN;
116         }
117         if (w->debug_mode) {
118             av_strlcpy(gmt_iso, "", 1);
119         }
120         avio_printf(s->pb, "  availabilityStartTime=\"%s\"\n", gmt_iso);
121         avio_printf(s->pb, "  timeShiftBufferDepth=\"PT%gS\"\n", w->time_shift_buffer_depth);
122         avio_printf(s->pb, "  minimumUpdatePeriod=\"PT%dS\"", w->minimum_update_period);
123         avio_printf(s->pb, ">\n");
124         if (w->utc_timing_url) {
125             avio_printf(s->pb, "<UTCTiming\n");
126             avio_printf(s->pb, "  schemeIdUri=\"urn:mpeg:dash:utc:http-iso:2014\"\n");
127             avio_printf(s->pb, "  value=\"%s\"/>\n", w->utc_timing_url);
128         }
129     }
130     return 0;
131 }
132
133 static void write_footer(AVFormatContext *s)
134 {
135     avio_printf(s->pb, "</MPD>\n");
136 }
137
138 static int subsegment_alignment(AVFormatContext *s, AdaptationSet *as) {
139     int i;
140     AVDictionaryEntry *gold = av_dict_get(s->streams[as->streams[0]]->metadata,
141                                           CUE_TIMESTAMPS, NULL, 0);
142     if (!gold) return 0;
143     for (i = 1; i < as->nb_streams; i++) {
144         AVDictionaryEntry *ts = av_dict_get(s->streams[as->streams[i]]->metadata,
145                                             CUE_TIMESTAMPS, NULL, 0);
146         if (!ts || strncmp(gold->value, ts->value, strlen(gold->value))) return 0;
147     }
148     return 1;
149 }
150
151 static int bitstream_switching(AVFormatContext *s, AdaptationSet *as) {
152     int i;
153     AVDictionaryEntry *gold_track_num = av_dict_get(s->streams[as->streams[0]]->metadata,
154                                                     TRACK_NUMBER, NULL, 0);
155     AVCodecParameters *gold_par = s->streams[as->streams[0]]->codecpar;
156     if (!gold_track_num) return 0;
157     for (i = 1; i < as->nb_streams; i++) {
158         AVDictionaryEntry *track_num = av_dict_get(s->streams[as->streams[i]]->metadata,
159                                                    TRACK_NUMBER, NULL, 0);
160         AVCodecParameters *par = s->streams[as->streams[i]]->codecpar;
161         if (!track_num ||
162             strncmp(gold_track_num->value, track_num->value, strlen(gold_track_num->value)) ||
163             gold_par->codec_id != par->codec_id ||
164             gold_par->extradata_size != par->extradata_size ||
165             memcmp(gold_par->extradata, par->extradata, par->extradata_size)) {
166             return 0;
167         }
168     }
169     return 1;
170 }
171
172 /*
173  * Writes a Representation within an Adaptation Set. Returns 0 on success and
174  * < 0 on failure.
175  */
176 static int write_representation(AVFormatContext *s, AVStream *stream, char *id,
177                                 int output_width, int output_height,
178                                 int output_sample_rate) {
179     WebMDashMuxContext *w = s->priv_data;
180     AVDictionaryEntry *irange = av_dict_get(stream->metadata, INITIALIZATION_RANGE, NULL, 0);
181     AVDictionaryEntry *cues_start = av_dict_get(stream->metadata, CUES_START, NULL, 0);
182     AVDictionaryEntry *cues_end = av_dict_get(stream->metadata, CUES_END, NULL, 0);
183     AVDictionaryEntry *filename = av_dict_get(stream->metadata, FILENAME, NULL, 0);
184     AVDictionaryEntry *bandwidth = av_dict_get(stream->metadata, BANDWIDTH, NULL, 0);
185     const char *bandwidth_str;
186     if ((w->is_live && (!filename)) ||
187         (!w->is_live && (!irange || !cues_start || !cues_end || !filename || !bandwidth))) {
188         return AVERROR_INVALIDDATA;
189     }
190     avio_printf(s->pb, "<Representation id=\"%s\"", id);
191     // if bandwidth for live was not provided, use a default
192     if (w->is_live && !bandwidth) {
193         bandwidth_str = (stream->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) ? "128000" : "1000000";
194     } else {
195         bandwidth_str = bandwidth->value;
196     }
197     avio_printf(s->pb, " bandwidth=\"%s\"", bandwidth_str);
198     if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && output_width)
199         avio_printf(s->pb, " width=\"%d\"", stream->codecpar->width);
200     if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && output_height)
201         avio_printf(s->pb, " height=\"%d\"", stream->codecpar->height);
202     if (stream->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && output_sample_rate)
203         avio_printf(s->pb, " audioSamplingRate=\"%d\"", stream->codecpar->sample_rate);
204     if (w->is_live) {
205         // For live streams, Codec and Mime Type always go in the Representation tag.
206         avio_printf(s->pb, " codecs=\"%s\"", get_codec_name(stream->codecpar->codec_id));
207         avio_printf(s->pb, " mimeType=\"%s/webm\"",
208                     stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio");
209         // For live streams, subsegments always start with key frames. So this
210         // is always 1.
211         avio_printf(s->pb, " startsWithSAP=\"1\"");
212         avio_printf(s->pb, ">");
213     } else {
214         avio_printf(s->pb, ">\n");
215         avio_printf(s->pb, "<BaseURL>%s</BaseURL>\n", filename->value);
216         avio_printf(s->pb, "<SegmentBase\n");
217         avio_printf(s->pb, "  indexRange=\"%s-%s\">\n", cues_start->value, cues_end->value);
218         avio_printf(s->pb, "<Initialization\n");
219         avio_printf(s->pb, "  range=\"0-%s\" />\n", irange->value);
220         avio_printf(s->pb, "</SegmentBase>\n");
221     }
222     avio_printf(s->pb, "</Representation>\n");
223     return 0;
224 }
225
226 /*
227  * Checks if width of all streams are the same. Returns 1 if true, 0 otherwise.
228  */
229 static int check_matching_width(AVFormatContext *s, AdaptationSet *as) {
230     int first_width, i;
231     if (as->nb_streams < 2) return 1;
232     first_width = s->streams[as->streams[0]]->codecpar->width;
233     for (i = 1; i < as->nb_streams; i++)
234         if (first_width != s->streams[as->streams[i]]->codecpar->width)
235           return 0;
236     return 1;
237 }
238
239 /*
240  * Checks if height of all streams are the same. Returns 1 if true, 0 otherwise.
241  */
242 static int check_matching_height(AVFormatContext *s, AdaptationSet *as) {
243     int first_height, i;
244     if (as->nb_streams < 2) return 1;
245     first_height = s->streams[as->streams[0]]->codecpar->height;
246     for (i = 1; i < as->nb_streams; i++)
247         if (first_height != s->streams[as->streams[i]]->codecpar->height)
248           return 0;
249     return 1;
250 }
251
252 /*
253  * Checks if sample rate of all streams are the same. Returns 1 if true, 0 otherwise.
254  */
255 static int check_matching_sample_rate(AVFormatContext *s, AdaptationSet *as) {
256     int first_sample_rate, i;
257     if (as->nb_streams < 2) return 1;
258     first_sample_rate = s->streams[as->streams[0]]->codecpar->sample_rate;
259     for (i = 1; i < as->nb_streams; i++)
260         if (first_sample_rate != s->streams[as->streams[i]]->codecpar->sample_rate)
261           return 0;
262     return 1;
263 }
264
265 static void free_adaptation_sets(AVFormatContext *s) {
266     WebMDashMuxContext *w = s->priv_data;
267     int i;
268     for (i = 0; i < w->nb_as; i++) {
269         av_freep(&w->as[i].streams);
270     }
271     av_freep(&w->as);
272     w->nb_as = 0;
273 }
274
275 /*
276  * Parses a live header filename and computes the representation id,
277  * initialization pattern and the media pattern. Pass NULL if you don't want to
278  * compute any of those 3. Returns 0 on success and non-zero on failure.
279  *
280  * Name of the header file should conform to the following pattern:
281  * <file_description>_<representation_id>.hdr where <file_description> can be
282  * anything. The chunks should be named according to the following pattern:
283  * <file_description>_<representation_id>_<chunk_number>.chk
284  */
285 static int parse_filename(char *filename, char **representation_id,
286                           char **initialization_pattern, char **media_pattern) {
287     char *underscore_pos = NULL;
288     char *period_pos = NULL;
289     char *temp_pos = NULL;
290     char *filename_str = av_strdup(filename);
291     if (!filename_str) return AVERROR(ENOMEM);
292     temp_pos = av_stristr(filename_str, "_");
293     while (temp_pos) {
294         underscore_pos = temp_pos + 1;
295         temp_pos = av_stristr(temp_pos + 1, "_");
296     }
297     if (!underscore_pos) return AVERROR_INVALIDDATA;
298     period_pos = av_stristr(underscore_pos, ".");
299     if (!period_pos) return AVERROR_INVALIDDATA;
300     *(underscore_pos - 1) = 0;
301     if (representation_id) {
302         *representation_id = av_malloc(period_pos - underscore_pos + 1);
303         if (!(*representation_id)) return AVERROR(ENOMEM);
304         av_strlcpy(*representation_id, underscore_pos, period_pos - underscore_pos + 1);
305     }
306     if (initialization_pattern) {
307         *initialization_pattern = av_asprintf("%s_$RepresentationID$.hdr",
308                                               filename_str);
309         if (!(*initialization_pattern)) return AVERROR(ENOMEM);
310     }
311     if (media_pattern) {
312         *media_pattern = av_asprintf("%s_$RepresentationID$_$Number$.chk",
313                                      filename_str);
314         if (!(*media_pattern)) return AVERROR(ENOMEM);
315     }
316     av_free(filename_str);
317     return 0;
318 }
319
320 /*
321  * Writes an Adaptation Set. Returns 0 on success and < 0 on failure.
322  */
323 static int write_adaptation_set(AVFormatContext *s, int as_index)
324 {
325     WebMDashMuxContext *w = s->priv_data;
326     AdaptationSet *as = &w->as[as_index];
327     AVCodecParameters *par = s->streams[as->streams[0]]->codecpar;
328     AVDictionaryEntry *lang;
329     int i;
330     static const char boolean[2][6] = { "false", "true" };
331     int subsegmentStartsWithSAP = 1;
332
333     // Width, Height and Sample Rate will go in the AdaptationSet tag if they
334     // are the same for all contained Representations. otherwise, they will go
335     // on their respective Representation tag. For live streams, they always go
336     // in the Representation tag.
337     int width_in_as = 1, height_in_as = 1, sample_rate_in_as = 1;
338     if (par->codec_type == AVMEDIA_TYPE_VIDEO) {
339       width_in_as = !w->is_live && check_matching_width(s, as);
340       height_in_as = !w->is_live && check_matching_height(s, as);
341     } else {
342       sample_rate_in_as = !w->is_live && check_matching_sample_rate(s, as);
343     }
344
345     avio_printf(s->pb, "<AdaptationSet id=\"%s\"", as->id);
346     avio_printf(s->pb, " mimeType=\"%s/webm\"",
347                 par->codec_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio");
348     avio_printf(s->pb, " codecs=\"%s\"", get_codec_name(par->codec_id));
349
350     lang = av_dict_get(s->streams[as->streams[0]]->metadata, "language", NULL, 0);
351     if (lang) avio_printf(s->pb, " lang=\"%s\"", lang->value);
352
353     if (par->codec_type == AVMEDIA_TYPE_VIDEO && width_in_as)
354         avio_printf(s->pb, " width=\"%d\"", par->width);
355     if (par->codec_type == AVMEDIA_TYPE_VIDEO && height_in_as)
356         avio_printf(s->pb, " height=\"%d\"", par->height);
357     if (par->codec_type == AVMEDIA_TYPE_AUDIO && sample_rate_in_as)
358         avio_printf(s->pb, " audioSamplingRate=\"%d\"", par->sample_rate);
359
360     avio_printf(s->pb, " bitstreamSwitching=\"%s\"",
361                 boolean[bitstream_switching(s, as)]);
362     avio_printf(s->pb, " subsegmentAlignment=\"%s\"",
363                 boolean[w->is_live || subsegment_alignment(s, as)]);
364
365     for (i = 0; i < as->nb_streams; i++) {
366         AVDictionaryEntry *kf = av_dict_get(s->streams[as->streams[i]]->metadata,
367                                             CLUSTER_KEYFRAME, NULL, 0);
368         if (!w->is_live && (!kf || !strncmp(kf->value, "0", 1))) subsegmentStartsWithSAP = 0;
369     }
370     avio_printf(s->pb, " subsegmentStartsWithSAP=\"%d\"", subsegmentStartsWithSAP);
371     avio_printf(s->pb, ">\n");
372
373     if (w->is_live) {
374         AVDictionaryEntry *filename =
375             av_dict_get(s->streams[as->streams[0]]->metadata, FILENAME, NULL, 0);
376         char *initialization_pattern = NULL;
377         char *media_pattern = NULL;
378         int ret = parse_filename(filename->value, NULL, &initialization_pattern,
379                                  &media_pattern);
380         if (ret) return ret;
381         avio_printf(s->pb, "<ContentComponent id=\"1\" type=\"%s\"/>\n",
382                     par->codec_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio");
383         avio_printf(s->pb, "<SegmentTemplate");
384         avio_printf(s->pb, " timescale=\"1000\"");
385         avio_printf(s->pb, " duration=\"%d\"", w->chunk_duration);
386         avio_printf(s->pb, " media=\"%s\"", media_pattern);
387         avio_printf(s->pb, " startNumber=\"%d\"", w->chunk_start_index);
388         avio_printf(s->pb, " initialization=\"%s\"", initialization_pattern);
389         avio_printf(s->pb, "/>\n");
390         av_free(initialization_pattern);
391         av_free(media_pattern);
392     }
393
394     for (i = 0; i < as->nb_streams; i++) {
395         char *representation_id = NULL;
396         int ret;
397         if (w->is_live) {
398             AVDictionaryEntry *filename =
399                 av_dict_get(s->streams[as->streams[i]]->metadata, FILENAME, NULL, 0);
400             if (!filename)
401                 return AVERROR(EINVAL);
402             if (ret = parse_filename(filename->value, &representation_id, NULL, NULL))
403                 return ret;
404         } else {
405             representation_id = av_asprintf("%d", w->representation_id++);
406             if (!representation_id) return AVERROR(ENOMEM);
407         }
408         ret = write_representation(s, s->streams[as->streams[i]],
409                                    representation_id, !width_in_as,
410                                    !height_in_as, !sample_rate_in_as);
411         av_free(representation_id);
412         if (ret) return ret;
413     }
414     avio_printf(s->pb, "</AdaptationSet>\n");
415     return 0;
416 }
417
418 static int to_integer(char *p, int len)
419 {
420     int ret;
421     char *q = av_malloc(sizeof(char) * len);
422     if (!q)
423         return AVERROR(ENOMEM);
424     av_strlcpy(q, p, len);
425     ret = atoi(q);
426     av_free(q);
427     return ret;
428 }
429
430 static int parse_adaptation_sets(AVFormatContext *s)
431 {
432     WebMDashMuxContext *w = s->priv_data;
433     char *p = w->adaptation_sets;
434     char *q;
435     enum { new_set, parsed_id, parsing_streams } state;
436     if (!w->adaptation_sets) {
437         av_log(s, AV_LOG_ERROR, "The 'adaptation_sets' option must be set.\n");
438         return AVERROR(EINVAL);
439     }
440     // syntax id=0,streams=0,1,2 id=1,streams=3,4 and so on
441     state = new_set;
442     while (p < w->adaptation_sets + strlen(w->adaptation_sets)) {
443         if (*p == ' ')
444             continue;
445         else if (state == new_set && !strncmp(p, "id=", 3)) {
446             void *mem = av_realloc(w->as, sizeof(*w->as) * (w->nb_as + 1));
447             if (mem == NULL)
448                 return AVERROR(ENOMEM);
449             w->as = mem;
450             ++w->nb_as;
451             w->as[w->nb_as - 1].nb_streams = 0;
452             w->as[w->nb_as - 1].streams = NULL;
453             p += 3; // consume "id="
454             q = w->as[w->nb_as - 1].id;
455             while (*p != ',') *q++ = *p++;
456             *q = 0;
457             p++;
458             state = parsed_id;
459         } else if (state == parsed_id && !strncmp(p, "streams=", 8)) {
460             p += 8; // consume "streams="
461             state = parsing_streams;
462         } else if (state == parsing_streams) {
463             struct AdaptationSet *as = &w->as[w->nb_as - 1];
464             q = p;
465             while (*q != '\0' && *q != ',' && *q != ' ') q++;
466             as->streams = av_realloc(as->streams, sizeof(*as->streams) * ++as->nb_streams);
467             if (as->streams == NULL)
468                 return AVERROR(ENOMEM);
469             as->streams[as->nb_streams - 1] = to_integer(p, q - p + 1);
470             if (as->streams[as->nb_streams - 1] < 0 ||
471                 as->streams[as->nb_streams - 1] >= s->nb_streams) {
472                 av_log(s, AV_LOG_ERROR, "Invalid value for 'streams' in adapation_sets.\n");
473                 return AVERROR(EINVAL);
474             }
475             if (*q == '\0') break;
476             if (*q == ' ') state = new_set;
477             p = ++q;
478         } else {
479             return -1;
480         }
481     }
482     return 0;
483 }
484
485 static int webm_dash_manifest_write_header(AVFormatContext *s)
486 {
487     int i;
488     double start = 0.0;
489     int ret;
490     WebMDashMuxContext *w = s->priv_data;
491     ret = parse_adaptation_sets(s);
492     if (ret < 0) {
493         goto fail;
494     }
495     ret = write_header(s);
496     if (ret < 0) {
497         goto fail;
498     }
499     avio_printf(s->pb, "<Period id=\"0\"");
500     avio_printf(s->pb, " start=\"PT%gS\"", start);
501     if (!w->is_live) {
502         avio_printf(s->pb, " duration=\"PT%gS\"", get_duration(s));
503     }
504     avio_printf(s->pb, " >\n");
505
506     for (i = 0; i < w->nb_as; i++) {
507         ret = write_adaptation_set(s, i);
508         if (ret < 0) {
509             goto fail;
510         }
511     }
512
513     avio_printf(s->pb, "</Period>\n");
514     write_footer(s);
515 fail:
516     free_adaptation_sets(s);
517     return ret < 0 ? ret : 0;
518 }
519
520 static int webm_dash_manifest_write_packet(AVFormatContext *s, AVPacket *pkt)
521 {
522     return AVERROR_EOF;
523 }
524
525 static int webm_dash_manifest_write_trailer(AVFormatContext *s)
526 {
527     free_adaptation_sets(s);
528     return 0;
529 }
530
531 #define OFFSET(x) offsetof(WebMDashMuxContext, x)
532 static const AVOption options[] = {
533     { "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 },
534     { "debug_mode", "[private option - users should never set this]. Create deterministic output", OFFSET(debug_mode), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
535     { "live", "create a live stream manifest", OFFSET(is_live), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
536     { "chunk_start_index",  "start index of the chunk", OFFSET(chunk_start_index), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
537     { "chunk_duration_ms", "duration of each chunk (in milliseconds)", OFFSET(chunk_duration), AV_OPT_TYPE_INT, {.i64 = 1000}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
538     { "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, AV_OPT_FLAG_ENCODING_PARAM },
539     { "time_shift_buffer_depth", "Smallest time (in seconds) shifting buffer for which any Representation is guaranteed to be available.", OFFSET(time_shift_buffer_depth), AV_OPT_TYPE_DOUBLE, { .dbl = 60.0 }, 1.0, DBL_MAX, AV_OPT_FLAG_ENCODING_PARAM },
540     { "minimum_update_period", "Minimum Update Period (in seconds) of the manifest.", OFFSET(minimum_update_period), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
541     { NULL },
542 };
543
544 #if CONFIG_WEBM_DASH_MANIFEST_MUXER
545 static const AVClass webm_dash_class = {
546     .class_name = "WebM DASH Manifest muxer",
547     .item_name  = av_default_item_name,
548     .option     = options,
549     .version    = LIBAVUTIL_VERSION_INT,
550 };
551
552 AVOutputFormat ff_webm_dash_manifest_muxer = {
553     .name              = "webm_dash_manifest",
554     .long_name         = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"),
555     .mime_type         = "application/xml",
556     .extensions        = "xml",
557     .priv_data_size    = sizeof(WebMDashMuxContext),
558     .write_header      = webm_dash_manifest_write_header,
559     .write_packet      = webm_dash_manifest_write_packet,
560     .write_trailer     = webm_dash_manifest_write_trailer,
561     .priv_class        = &webm_dash_class,
562 };
563 #endif