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