Go to the documentation of this file.
72 for (
i = 0;
i <
s->nb_streams;
i++) {
85 double min_buffer_time = 1.0;
86 avio_printf(pb,
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
88 avio_printf(pb,
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n");
89 avio_printf(pb,
" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\"\n");
90 avio_printf(pb,
" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\"\n");
91 avio_printf(pb,
" type=\"%s\"\n",
w->is_live ?
"dynamic" :
"static");
93 avio_printf(pb,
" mediaPresentationDuration=\"PT%gS\"\n",
96 avio_printf(pb,
" minBufferTime=\"PT%gS\"\n", min_buffer_time);
98 w->is_live ?
"urn:mpeg:dash:profile:isoff-live:2011" :
"urn:mpeg:dash:profile:webm-on-demand:2012",
99 w->is_live ?
"\n" :
">\n");
101 time_t local_time = time(
NULL);
102 struct tm gmt_buffer;
103 struct tm *gmt =
gmtime_r(&local_time, &gmt_buffer);
105 if (!strftime(gmt_iso, 21,
"%Y-%m-%dT%H:%M:%SZ", gmt)) {
111 avio_printf(pb,
" availabilityStartTime=\"%s\"\n", gmt_iso);
112 avio_printf(pb,
" timeShiftBufferDepth=\"PT%gS\"\n",
w->time_shift_buffer_depth);
113 avio_printf(pb,
" minimumUpdatePeriod=\"PT%dS\"",
w->minimum_update_period);
115 if (
w->utc_timing_url) {
117 avio_printf(pb,
" schemeIdUri=\"urn:mpeg:dash:utc:http-iso:2014\"\n");
118 avio_printf(pb,
" value=\"%s\"/>\n",
w->utc_timing_url);
150 if (!gold_track_num)
return 0;
173 int output_width,
int output_height,
174 int output_sample_rate)
180 const char *bandwidth_str;
183 bandwidth_str = bandwidth->
value;
184 }
else if (
w->is_live) {
190 avio_printf(pb,
" bandwidth=\"%s\"", bandwidth_str);
211 if (!irange || !cues_start || !cues_end || !filename)
233 first_width =
s->streams[as->
streams[0]]->codecpar->width;
235 if (first_width !=
s->streams[as->
streams[
i]]->codecpar->width)
247 first_height =
s->streams[as->
streams[0]]->codecpar->height;
249 if (first_height !=
s->streams[as->
streams[
i]]->codecpar->height)
259 int first_sample_rate,
i;
261 first_sample_rate =
s->streams[as->
streams[0]]->codecpar->sample_rate;
263 if (first_sample_rate !=
s->streams[as->
streams[
i]]->codecpar->sample_rate)
272 for (
i = 0;
i <
w->nb_as;
i++) {
291 *underscore_pos = strrchr(filename,
'_');
292 if (!*underscore_pos)
294 *period_pos = strchr(*underscore_pos,
'.');
312 static const char boolean[2][6] = {
"false",
"true" };
313 int subsegmentStartsWithSAP = 1;
319 int width_in_as = 1, height_in_as = 1, sample_rate_in_as = 1;
351 if (!
w->is_live && (!kf || !strncmp(kf->
value,
"0", 1))) subsegmentStartsWithSAP = 0;
353 avio_printf(pb,
" subsegmentStartsWithSAP=\"%d\"", subsegmentStartsWithSAP);
359 char *underscore_pos, *period_pos;
365 *underscore_pos =
'\0';
366 avio_printf(pb,
"<ContentComponent id=\"1\" type=\"%s\"/>\n",
371 avio_printf(pb,
" media=\"%s_$RepresentationID$_$Number$.chk\"",
373 avio_printf(pb,
" startNumber=\"%d\"",
w->chunk_start_index);
374 avio_printf(pb,
" initialization=\"%s_$RepresentationID$.hdr\"",
377 *underscore_pos =
'_';
381 char buf[25], *representation_id = buf, *underscore_pos, *period_pos;
392 representation_id = underscore_pos + 1;
395 snprintf(buf,
sizeof(buf),
"%d",
w->representation_id++);
398 !height_in_as, !sample_rate_in_as);
410 char *p =
w->adaptation_sets;
412 enum { new_set, parsed_id, parsing_streams }
state;
413 if (!
w->adaptation_sets) {
421 if (
state == new_set)
425 }
else if (
state == new_set && *p ==
' ') {
428 }
else if (
state == new_set && !strncmp(p,
"id=", 3)) {
429 void *mem =
av_realloc(
w->as,
sizeof(*
w->as) * (
w->nb_as + 1));
435 w->as[
w->nb_as - 1].nb_streams = 0;
436 w->as[
w->nb_as - 1].streams =
NULL;
438 q =
w->as[
w->nb_as - 1].id;
439 comma = strchr(p,
',');
440 if (!comma || comma - p >=
sizeof(
w->as[
w->nb_as - 1].id)) {
444 while (*p !=
',') *q++ = *p++;
448 }
else if (
state == parsed_id && !strncmp(p,
"streams=", 8)) {
450 state = parsing_streams;
451 }
else if (
state == parsing_streams) {
458 num = strtoll(p, &q, 10);
459 if (!
av_isdigit(*p) || (*q !=
' ' && *q !=
'\0' && *q !=
',') ||
460 num < 0 || num >=
s->nb_streams) {
465 if (*q ==
'\0')
break;
466 if (*q ==
' ')
state = new_set;
482 for (
unsigned i = 0;
i <
s->nb_streams;
i++) {
505 for (
i = 0;
i <
w->nb_as;
i++) {
524 #define OFFSET(x) offsetof(WebMDashMuxContext, x)
526 {
"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 },
531 {
"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 },
544 .
name =
"webm_dash_manifest",
546 .mime_type =
"application/xml",
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
static int check_matching_width(AVFormatContext *s, const AdaptationSet *as)
enum AVMediaType codec_type
General type of the encoded data.
This struct describes the properties of an encoded stream.
static int bitstream_switching(AVFormatContext *s, const AdaptationSet *as)
static int check_matching_sample_rate(AVFormatContext *s, const AdaptationSet *as)
#define AVERROR_EOF
End of file.
static void free_adaptation_sets(AVFormatContext *s)
const char * name
Name of the codec described by this descriptor.
static void write_footer(AVFormatContext *s)
static int split_filename(char *filename, char **underscore_pos, char **period_pos)
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
static int write_representation(AVFormatContext *s, AVStream *st, char *id, int output_width, int output_height, int output_sample_rate)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
static int webm_dash_manifest_write_packet(AVFormatContext *s, AVPacket *pkt)
#define AV_OPT_FLAG_ENCODING_PARAM
a generic parameter which can be set by the user for muxing or encoding
static double get_duration(AVFormatContext *s)
static int write_header(AVFormatContext *s)
static const char * get_codec_name(int codec_id)
static int parse_adaptation_sets(AVFormatContext *s)
static int subsegment_alignment(AVFormatContext *s, const AdaptationSet *as)
AVCodecParameters * codecpar
Codec parameters associated with this stream.
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
void * av_realloc(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory.
const char * av_default_item_name(void *ptr)
Return the context name.
const AVOutputFormat ff_webm_dash_manifest_muxer
int sample_rate
Audio only.
static int webm_dash_manifest_write_header(AVFormatContext *s)
AVCodecID
Identify the syntax and semantics of the bitstream.
int extradata_size
Size of the extradata content in bytes.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define INITIALIZATION_RANGE
static av_const int av_isdigit(int c)
Locale-independent conversion of ASCII isdigit.
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
Allocate, reallocate an array through a pointer to a pointer.
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
static int check_matching_height(AVFormatContext *s, const AdaptationSet *as)
#define i(width, name, range_min, range_max)
static int write_adaptation_set(AVFormatContext *s, int as_index)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
static const AVOption options[]
int minimum_update_period
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
Writes a formatted string to the context.
static const AVClass webm_dash_class
double time_shift_buffer_depth
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
static int write_packet(AVFormatContext *s1, AVPacket *pkt)