22#include <libxml/parser.h>
36#define INITIAL_BUFFER_SIZE 32768
180 return ((
val + 0x3F) >> 6) << 6;
203 ret = sscanf(datetime,
"%d-%d-%dT%d:%d:%fZ", &year, &month, &day, &hour, &minute, &second);
208 timeinfo.tm_year = year - 1900;
209 timeinfo.tm_mon = month - 1;
210 timeinfo.tm_mday = day;
211 timeinfo.tm_hour = hour;
212 timeinfo.tm_min = minute;
213 timeinfo.tm_sec = (int)second;
231 if (*ptr ==
'P' || *ptr ==
'T') {
242 days = (uint32_t)
value;
245 hours = (uint32_t)
value;
248 mins = (uint32_t)
value;
251 secs = (uint32_t)
value;
259 return ((days * 24 + hours) * 60 + mins) * 60 + secs;
275 if (num == cur_seq_no)
287 if (num == cur_seq_no)
385 for (
i = 0;
i <
c->n_videos;
i++) {
396 for (
i = 0;
i <
c->n_audios;
i++) {
407 for (
i = 0;
i <
c->n_subtitles;
i++) {
420 const char *proto_name =
NULL;
425 if (url[6] ==
'+' || url[6] ==
':')
435 proto_name_len = strlen(proto_name);
438 if (strcmp(
c->allowed_extensions,
"ALL") && !
av_match_ext(url,
c->allowed_extensions)) {
440 "Filename extension of \'%s\' is not a common multimedia extension, blocked for security reasons.\n"
441 "If you wish to override this adjust allowed_extensions, you can set it to \'ALL\' to allow all\n",
450 if (!strncmp(proto_name, url, proto_name_len) && url[proto_name_len] ==
':')
452 else if (
av_strstart(url,
"crypto",
NULL) && !strncmp(proto_name, url + 7, proto_name_len) && url[7 + proto_name_len] ==
':')
454 else if (strcmp(proto_name,
"file") || !strncmp(url,
"file,", 5))
463 char *new_cookies =
NULL;
486 char *rep_bandwidth_val,
497 for (
i = 0;
i < n_baseurl_nodes; ++
i) {
498 if (baseurl_nodes[
i] &&
499 baseurl_nodes[
i]->children &&
500 baseurl_nodes[
i]->children->type == XML_TEXT_NODE) {
501 text = xmlNodeGetContent(baseurl_nodes[
i]->children);
503 memset(tmp_str, 0, max_url_size);
520 if (rep_bandwidth_val && tmp_str[0] !=
'\0') {
538 for (
i = 0;
i < n_nodes; ++
i) {
540 val = xmlGetProp(nodes[
i], attrname);
551 xmlNodePtr node = rootnode;
556 node = xmlFirstElementChild(node);
561 node = xmlNextElementSibling(node);
574 for (
i = 0;
i < 2;
i++) {
575 attr =
i ?
"mimeType" :
"contentType";
576 val = xmlGetProp(node, attr);
601 char *str_end_offset;
603 if (!str_offset || !str_end_offset) {
616 xmlNodePtr fragmenturl_node,
617 xmlNodePtr *baseurl_nodes,
619 char *rep_bandwidth_val)
622 char *initialization_val =
NULL;
623 char *media_val =
NULL;
624 char *range_val =
NULL;
628 if (!
av_strcasecmp(fragmenturl_node->name,
"Initialization")) {
629 initialization_val = xmlGetProp(fragmenturl_node,
"sourceURL");
630 range_val = xmlGetProp(fragmenturl_node,
"range");
631 if (initialization_val || range_val) {
636 xmlFree(initialization_val);
644 xmlFree(initialization_val);
650 }
else if (!
av_strcasecmp(fragmenturl_node->name,
"SegmentURL")) {
651 media_val = xmlGetProp(fragmenturl_node,
"media");
652 range_val = xmlGetProp(fragmenturl_node,
"mediaRange");
653 if (media_val || range_val) {
682 xmlNodePtr fragment_timeline_node)
684 xmlAttrPtr attr =
NULL;
693 attr = fragment_timeline_node->properties;
695 val = xmlGetProp(fragment_timeline_node, attr->name);
698 av_log(
s,
AV_LOG_WARNING,
"parse_manifest_segmenttimeline attr->name = %s val is NULL\n", attr->name);
724 char *tmp_str =
NULL;
726 char *mpdName =
NULL;
727 xmlNodePtr node =
NULL;
728 char *baseurl =
NULL;
729 char *root_url =
NULL;
739 int tmp_max_url_size = strlen(url);
741 for (
i = n_baseurl_nodes-1;
i >= 0 ;
i--) {
742 text = xmlNodeGetContent(baseurl_nodes[
i]);
745 tmp_max_url_size += strlen(text);
753 tmp_max_url_size =
aligned(tmp_max_url_size);
762 size = strlen(mpdName);
768 if (!tmp_str || !path) {
774 for (rootId = n_baseurl_nodes - 1; rootId > 0; rootId --) {
775 if (!(node = baseurl_nodes[rootId])) {
778 text = xmlNodeGetContent(node);
786 node = baseurl_nodes[rootId];
787 baseurl = xmlNodeGetContent(node);
789 size_t len = xmlStrlen(baseurl)+2;
790 char *
tmp = xmlRealloc(baseurl,
len);
799 xmlChar *escaped = xmlEncodeSpecialChars(
NULL, root_url);
804 xmlNodeSetContent(node, escaped);
809 size = strlen(root_url);
810 isRootHttp =
ishttp(root_url);
812 if (
size > 0 && root_url[
size - 1] != token) {
817 for (
i = 0;
i < n_baseurl_nodes; ++
i) {
821 text = xmlNodeGetContent(baseurl_nodes[
i]);
823 memset(tmp_str, 0, strlen(tmp_str));
824 if (!
ishttp(text) && isRootHttp) {
827 start = (text[0] == token);
836 memset(p + 1, 0, strlen(p));
838 av_strlcat(tmp_str, text + start, tmp_max_url_size);
840 xmlChar* escaped = xmlEncodeSpecialChars(
NULL, tmp_str);
845 xmlNodeSetContent(baseurl_nodes[
i], escaped);
852 if (tmp_max_url_size > *max_url_size) {
853 *max_url_size = tmp_max_url_size;
862#define SET_REPRESENTATION_SEQUENCE_BASE_INFO(arg, cnt) { \
863 val = get_val_from_nodes_tab((arg), (cnt), "duration"); \
865 int64_t fragment_duration = (int64_t) strtoll(val, NULL, 10); \
866 if (fragment_duration < 0) { \
867 av_log(s, AV_LOG_WARNING, "duration invalid, autochanged to 0.\n"); \
868 fragment_duration = 0; \
870 rep->fragment_duration = fragment_duration; \
871 av_log(s, AV_LOG_TRACE, "rep->fragment_duration = [%"PRId64"]\n", rep->fragment_duration); \
874 val = get_val_from_nodes_tab((arg), (cnt), "timescale"); \
876 int64_t fragment_timescale = (int64_t) strtoll(val, NULL, 10); \
877 if (fragment_timescale < 0) { \
878 av_log(s, AV_LOG_WARNING, "timescale invalid, autochanged to 0.\n"); \
879 fragment_timescale = 0; \
881 rep->fragment_timescale = fragment_timescale; \
882 av_log(s, AV_LOG_TRACE, "rep->fragment_timescale = [%"PRId64"]\n", rep->fragment_timescale); \
885 val = get_val_from_nodes_tab((arg), (cnt), "startNumber"); \
887 int64_t start_number = (int64_t) strtoll(val, NULL, 10); \
888 if (start_number < 0) { \
889 av_log(s, AV_LOG_WARNING, "startNumber invalid, autochanged to 0.\n"); \
892 rep->start_number = rep->first_seq_no = start_number; \
893 av_log(s, AV_LOG_TRACE, "rep->first_seq_no = [%"PRId64"]\n", rep->first_seq_no); \
901 xmlNodePtr adaptionset_node,
902 xmlNodePtr mpd_baseurl_node,
903 xmlNodePtr period_baseurl_node,
904 xmlNodePtr period_segmenttemplate_node,
905 xmlNodePtr period_segmentlist_node,
906 xmlNodePtr fragment_template_node,
907 xmlNodePtr content_component_node,
908 xmlNodePtr adaptionset_baseurl_node,
909 xmlNodePtr adaptionset_segmentlist_node,
910 xmlNodePtr adaptionset_supplementalproperty_node)
916 xmlNodePtr representation_segmenttemplate_node =
NULL;
917 xmlNodePtr representation_baseurl_node =
NULL;
918 xmlNodePtr representation_segmentlist_node =
NULL;
919 xmlNodePtr segmentlists_tab[3];
920 xmlNodePtr fragment_timeline_node =
NULL;
921 xmlNodePtr fragment_templates_tab[5];
923 xmlNodePtr baseurl_nodes[4];
924 xmlNodePtr representation_node = node;
925 char *rep_bandwidth_val;
926 char *rep_codecs_val;
927 char *rep_dependencyid_val;
949 if (
c->adaptionset_lang) {
961 rep_bandwidth_val = xmlGetProp(representation_node,
"bandwidth");
962 rep_dependencyid_val = xmlGetProp(representation_node,
"dependencyId");
963 rep_codecs_val = xmlGetProp(representation_node,
"codecs");
965 rep_codecs_val = xmlGetProp(adaptionset_node,
"codecs");
966 val = xmlGetProp(representation_node,
"id");
974 baseurl_nodes[0] = mpd_baseurl_node;
975 baseurl_nodes[1] = period_baseurl_node;
976 baseurl_nodes[2] = adaptionset_baseurl_node;
977 baseurl_nodes[3] = representation_baseurl_node;
980 c->max_url_size =
aligned(
c->max_url_size
981 + (rep->
id ? strlen(rep->
id) : 0)
982 + (rep_bandwidth_val ? strlen(rep_bandwidth_val) : 0));
983 if (ret ==
AVERROR(ENOMEM) || ret == 0)
985 if (representation_segmenttemplate_node || fragment_template_node || period_segmenttemplate_node) {
986 fragment_timeline_node =
NULL;
987 fragment_templates_tab[0] = representation_segmenttemplate_node;
988 fragment_templates_tab[1] = adaptionset_segmentlist_node;
989 fragment_templates_tab[2] = fragment_template_node;
990 fragment_templates_tab[3] = period_segmenttemplate_node;
991 fragment_templates_tab[4] = period_segmentlist_node;
1000 c->max_url_size =
aligned(
c->max_url_size + strlen(
val));
1002 c->max_url_size, rep->
id,
1003 rep_bandwidth_val,
val);
1011 c->max_url_size =
aligned(
c->max_url_size + strlen(
val));
1013 c->max_url_size, rep->
id,
1014 rep_bandwidth_val,
val);
1020 if (presentation_timeoffset < 0) {
1022 presentation_timeoffset = 0;
1030 if (adaptionset_supplementalproperty_node) {
1031 char *scheme_id_uri = xmlGetProp(adaptionset_supplementalproperty_node,
"schemeIdUri");
1032 if (scheme_id_uri) {
1033 int is_last_segment_number = !
av_strcasecmp(scheme_id_uri,
"http://dashif.org/guidelines/last-segment-number");
1034 xmlFree(scheme_id_uri);
1035 if (is_last_segment_number) {
1036 val = xmlGetProp(adaptionset_supplementalproperty_node,
"value");
1038 av_log(
s,
AV_LOG_ERROR,
"Missing value attribute in adaptionset_supplementalproperty_node\n");
1049 if (!fragment_timeline_node)
1051 if (!fragment_timeline_node)
1053 if (!fragment_timeline_node)
1055 if (fragment_timeline_node) {
1056 fragment_timeline_node = xmlFirstElementChild(fragment_timeline_node);
1057 while (fragment_timeline_node) {
1061 fragment_timeline_node = xmlNextElementSibling(fragment_timeline_node);
1064 }
else if (representation_baseurl_node && !representation_segmentlist_node) {
1074 rep->
id, rep_bandwidth_val,
NULL);
1078 }
else if (representation_segmentlist_node) {
1081 xmlNodePtr fragmenturl_node =
NULL;
1082 segmentlists_tab[0] = representation_segmentlist_node;
1083 segmentlists_tab[1] = adaptionset_segmentlist_node;
1084 segmentlists_tab[2] = period_segmentlist_node;
1087 fragmenturl_node = xmlFirstElementChild(representation_segmentlist_node);
1088 while (fragmenturl_node) {
1090 baseurl_nodes, rep->
id,
1094 fragmenturl_node = xmlNextElementSibling(fragmenturl_node);
1098 if (!fragment_timeline_node)
1100 if (fragment_timeline_node) {
1101 fragment_timeline_node = xmlFirstElementChild(fragment_timeline_node);
1102 while (fragment_timeline_node) {
1106 fragment_timeline_node = xmlNextElementSibling(fragment_timeline_node);
1111 rep->
id ? rep->
id :
"");
1117 rep->
bandwidth = rep_bandwidth_val ? atoi(rep_bandwidth_val) : 0;
1118 if (rep_dependencyid_val) {
1121 xmlFree(rep_dependencyid_val);
1125 if (rep_codecs_val) {
1128 xmlFree(rep_codecs_val);
1134 char *rep_framerate_val = xmlGetProp(representation_node,
"frameRate");
1135 if (rep_framerate_val) {
1139 xmlFree(rep_framerate_val);
1158 if (rep_bandwidth_val)
1159 xmlFree(rep_bandwidth_val);
1160 if (rep_dependencyid_val)
1161 xmlFree(rep_dependencyid_val);
1163 xmlFree(rep_codecs_val);
1177 if (!adaptionset_node) {
1181 c->adaptionset_lang = xmlGetProp(adaptionset_node,
"lang");
1187 xmlNodePtr adaptionset_node,
1188 xmlNodePtr mpd_baseurl_node,
1189 xmlNodePtr period_baseurl_node,
1190 xmlNodePtr period_segmenttemplate_node,
1191 xmlNodePtr period_segmentlist_node)
1195 xmlNodePtr fragment_template_node =
NULL;
1196 xmlNodePtr content_component_node =
NULL;
1197 xmlNodePtr adaptionset_baseurl_node =
NULL;
1198 xmlNodePtr adaptionset_segmentlist_node =
NULL;
1199 xmlNodePtr adaptionset_supplementalproperty_node =
NULL;
1200 xmlNodePtr node =
NULL;
1206 node = xmlFirstElementChild(adaptionset_node);
1209 fragment_template_node = node;
1210 }
else if (!
av_strcasecmp(node->name,
"ContentComponent")) {
1211 content_component_node = node;
1213 adaptionset_baseurl_node = node;
1215 adaptionset_segmentlist_node = node;
1216 }
else if (!
av_strcasecmp(node->name,
"SupplementalProperty")) {
1217 adaptionset_supplementalproperty_node = node;
1222 period_baseurl_node,
1223 period_segmenttemplate_node,
1224 period_segmentlist_node,
1225 fragment_template_node,
1226 content_component_node,
1227 adaptionset_baseurl_node,
1228 adaptionset_segmentlist_node,
1229 adaptionset_supplementalproperty_node);
1233 node = xmlNextElementSibling(node);
1237 xmlFree(
c->adaptionset_lang);
1238 c->adaptionset_lang =
NULL;
1246 node = xmlFirstElementChild(node);
1249 val = xmlNodeGetContent(node);
1254 val = xmlNodeGetContent(node);
1259 val = xmlNodeGetContent(node);
1264 node = xmlNextElementSibling(node);
1279 xmlNodePtr root_element =
NULL;
1280 xmlNodePtr node =
NULL;
1281 xmlNodePtr period_node =
NULL;
1282 xmlNodePtr tmp_node =
NULL;
1283 xmlNodePtr mpd_baseurl_node =
NULL;
1284 xmlNodePtr period_baseurl_node =
NULL;
1285 xmlNodePtr period_segmenttemplate_node =
NULL;
1286 xmlNodePtr period_segmentlist_node =
NULL;
1287 xmlNodePtr adaptionset_node =
NULL;
1288 xmlAttrPtr attr =
NULL;
1290 uint32_t period_duration_sec = 0;
1291 uint32_t period_start_sec = 0;
1316 doc = xmlReadMemory(buf.str, buf.len,
c->base_url,
NULL, 0);
1317 root_element = xmlDocGetRootElement(doc);
1318 node = root_element;
1326 if (node->type != XML_ELEMENT_NODE ||
1329 av_log(
s,
AV_LOG_ERROR,
"Unable to parse '%s' - wrong root node name[%s] type[%d]\n",
url, node->name, (
int)node->type);
1333 val = xmlGetProp(node,
"type");
1343 attr = node->properties;
1345 val = xmlGetProp(node, attr->name);
1349 av_log(
s,
AV_LOG_TRACE,
"c->availability_start_time = [%"PRId64
"]\n",
c->availability_start_time);
1350 }
else if (!
av_strcasecmp(attr->name,
"availabilityEndTime")) {
1356 }
else if (!
av_strcasecmp(attr->name,
"minimumUpdatePeriod")) {
1359 }
else if (!
av_strcasecmp(attr->name,
"timeShiftBufferDepth")) {
1361 av_log(
s,
AV_LOG_TRACE,
"c->time_shift_buffer_depth = [%"PRId64
"]\n",
c->time_shift_buffer_depth);
1365 }
else if (!
av_strcasecmp(attr->name,
"suggestedPresentationDelay")) {
1367 av_log(
s,
AV_LOG_TRACE,
"c->suggested_presentation_delay = [%"PRId64
"]\n",
c->suggested_presentation_delay);
1368 }
else if (!
av_strcasecmp(attr->name,
"mediaPresentationDuration")) {
1370 av_log(
s,
AV_LOG_TRACE,
"c->media_presentation_duration = [%"PRId64
"]\n",
c->media_presentation_duration);
1378 mpd_baseurl_node = xmlCopyNode(tmp_node,1);
1380 mpd_baseurl_node = xmlNewNode(
NULL,
"BaseURL");
1384 node = xmlFirstElementChild(node);
1387 period_duration_sec = 0;
1388 period_start_sec = 0;
1389 attr = node->properties;
1391 val = xmlGetProp(node, attr->name);
1400 if ((period_duration_sec) >= (
c->period_duration)) {
1402 c->period_duration = period_duration_sec;
1403 c->period_start = period_start_sec;
1404 if (
c->period_start > 0)
1405 c->media_presentation_duration =
c->period_duration;
1407 }
else if (!
av_strcasecmp(node->name,
"ProgramInformation")) {
1410 node = xmlNextElementSibling(node);
1418 adaptionset_node = xmlFirstElementChild(period_node);
1419 while (adaptionset_node) {
1421 period_baseurl_node = adaptionset_node;
1422 }
else if (!
av_strcasecmp(adaptionset_node->name,
"SegmentTemplate")) {
1423 period_segmenttemplate_node = adaptionset_node;
1424 }
else if (!
av_strcasecmp(adaptionset_node->name,
"SegmentList")) {
1425 period_segmentlist_node = adaptionset_node;
1426 }
else if (!
av_strcasecmp(adaptionset_node->name,
"AdaptationSet")) {
1429 adaptionset_node = xmlNextElementSibling(adaptionset_node);
1435 xmlFreeNode(mpd_baseurl_node);
1449 int64_t start_time_offset = 0;
1465 }
else if (
c->publish_time > 0 && !
c->availability_start_time) {
1466 if (
c->min_buffer_time) {
1522 if (rep_dest && rep_src ) {
1536 if (rep_dest && rep_src ) {
1560 int n_videos =
c->n_videos;
1562 int n_audios =
c->n_audios;
1564 int n_subtitles =
c->n_subtitles;
1566 char *base_url =
c->base_url;
1574 c->subtitles =
NULL;
1579 if (
c->n_videos != n_videos) {
1581 "new manifest has mismatched no. of video representations, %d -> %d\n",
1582 n_videos,
c->n_videos);
1585 if (
c->n_audios != n_audios) {
1587 "new manifest has mismatched no. of audio representations, %d -> %d\n",
1588 n_audios,
c->n_audios);
1591 if (
c->n_subtitles != n_subtitles) {
1593 "new manifest has mismatched no. of subtitles representations, %d -> %d\n",
1594 n_subtitles,
c->n_subtitles);
1598 for (
i = 0;
i < n_videos;
i++) {
1614 for (
i = 0;
i < n_audios;
i++) {
1636 c->base_url = base_url;
1645 c->n_subtitles = n_subtitles;
1646 c->subtitles = subtitles;
1647 c->n_audios = n_audios;
1649 c->n_videos = n_videos;
1661 int reload_count = 0;
1678 }
else if (
c->is_live) {
1679 if (reload_count++ >=
c->max_reload) {
1681 "Reached max manifest reloads (%d) at seq %"PRId64
"\n",
1745 uint8_t *buf,
int buf_size)
1772 if (seg->
size >= 0) {
1794 static const int max_init_section_size = 1024 * 1024;
1806 "Failed to open an initialization section\n");
1815 sec_size = max_init_section_size;
1818 "Downloading an initialization section of size %"PRId64
"\n",
1821 sec_size =
FFMIN(sec_size, max_init_section_size);
1848static int read_data(
void *opaque, uint8_t *buf,
int buf_size)
1877 "Reached max consecutive fragment open failures (%d), giving up\n",
1923 "A DASH playlist item '%s' referred to an external file '%s'. "
1924 "Opening this file was forbidden for security reasons\n",
1933 memset(&pls->
pb, 0x00,
sizeof(pls->
pb));
1943 uint8_t *avio_ctx_buffer =
NULL;
1961 if (!avio_ctx_buffer ) {
1975 pls->
ctx->
probesize =
s->probesize > 0 ?
s->probesize : 1024 * 4;
1989 if (
c->cenc_decryption_key)
1990 av_dict_set(&in_fmt_opts,
"decryption_key",
c->cenc_decryption_key, 0);
1991 if (
c->cenc_decryption_keys)
1992 av_dict_set(&in_fmt_opts,
"decryption_keys",
c->cenc_decryption_keys, 0);
2000#if FF_API_R_FRAME_RATE
2062 stg->
id =
s->nb_stream_groups;
2072 switch (stg->
type) {
2082 av_unreachable(
"Unsupported Stream Group type should have been checked above");
2100 if (first_init_section ==
NULL || n_pls == 0)
2103 url = first_init_section->
url;
2106 for (
i=0;
i<n_pls;
i++) {
2107 if (!pls[
i]->init_section)
2151 c->interrupt_callback = &
s->interrupt_callback;
2171 for (
i = 0;
i <
c->n_videos;
i++) {
2173 if (
i > 0 &&
c->is_init_section_common_video) {
2191 for (
i = 0;
i <
c->n_audios;
i++) {
2193 if (
i > 0 &&
c->is_init_section_common_audio) {
2211 for (
i = 0;
i <
c->n_subtitles;
i++) {
2212 rep =
c->subtitles[
i];
2213 if (
i > 0 &&
c->is_init_section_common_subtitle) {
2236 for (
i = 0;
i <
c->n_videos;
i++) {
2250 for (
i = 0;
i <
c->n_audios;
i++) {
2265 for (
i = 0;
i <
c->n_subtitles;
i++) {
2266 rep =
c->subtitles[
i];
2280 for (
i = 0;
i <
c->n_videos;
i++) {
2285 for (j = 0; j <
c->n_videos; j++) {
2289 if (!
ref->nb_assoc_stream)
2320 for (
i = 0;
i < n;
i++) {
2327 if (needed && !pls->
ctx) {
2331 for (j = 0; j < n; j++) {
2336 }
else if (!needed && pls->
ctx) {
2356 for (
i = 0;
i <
c->n_videos;
i++) {
2365 for (
i = 0;
i <
c->n_audios;
i++) {
2375 for (
i = 0;
i <
c->n_subtitles;
i++) {
2376 rep =
c->subtitles[
i];
2434 seek_pos_msec, dry_run ?
" (dry)" :
"");
2452 "last_seq_no[%"PRId64
"].\n",
2502 for (
i = 0;
i <
c->n_videos;
i++) {
2506 for (
i = 0;
i <
c->n_audios;
i++) {
2510 for (
i = 0;
i <
c->n_subtitles;
i++) {
2523 if (
av_stristr(p->buf,
"dash:profile:isoff-on-demand:2011") ||
2524 av_stristr(p->buf,
"dash:profile:isoff-live:2011") ||
2525 av_stristr(p->buf,
"dash:profile:isoff-live:2012") ||
2526 av_stristr(p->buf,
"dash:profile:isoff-main:2011") ||
2527 av_stristr(p->buf,
"3GPP:PSS:profile:DASH1")) {
2537#define OFFSET(x) offsetof(DASHContext, x)
2538#define FLAGS AV_OPT_FLAG_DECODING_PARAM
2540 {
"allowed_extensions",
"List of file extensions that dash is allowed to access",
2542 {.str =
"aac,m4a,m4s,m4v,mov,mp4,webm,ts"},
2543 INT_MIN, INT_MAX,
FLAGS},
2544 {
"cenc_decryption_key",
"Media default decryption key (hex)",
OFFSET(cenc_decryption_key),
AV_OPT_TYPE_STRING, {.str =
NULL}, INT_MIN, INT_MAX, .flags =
FLAGS },
2545 {
"cenc_decryption_keys",
"Media decryption keys by KID (hex)",
OFFSET(cenc_decryption_keys),
AV_OPT_TYPE_STRING, {.str =
NULL}, INT_MIN, INT_MAX, .flags =
FLAGS },
2546 {
"max_reload",
"Maximum number of manifest reloads in get_current_fragment() before giving up",
2552 .class_name =
"dash",
static double val(void *priv, double ch)
static AVDictionary * opts
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_unreachable(msg)
Asserts that are used as compiler optimization hints depending upon ASSERT_LEVEL and NBDEBUG.
int ff_check_interrupt(AVIOInterruptCB *cb)
Check if the user has requested to interrupt a blocking function associated with cb.
const char * avio_find_protocol_name(const char *url)
Return the name of the protocol that will handle the passed URL.
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
#define AVIO_FLAG_READ
read-only
int64_t avio_size(AVIOContext *s)
Get the filesize.
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size)
Read contents of h into print buffer, up to max_size bytes, or up to EOF.
void ffio_init_context(FFIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, const uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
int ffio_copy_url_options(AVIOContext *pb, AVDictionary **avio_opts)
Read url related dictionary options from the AVIOContext and write to the given dictionary.
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
#define flags(name, subs,...)
#define i(width, name, range_min, range_max)
static int read_probe(const AVProbeData *p)
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
void ff_dash_fill_tmpl_params(char *dst, size_t buffer_size, const char *template, int rep_id, int number, int bit_rate, int64_t time)
static int dash_read_header(AVFormatContext *s)
#define SET_REPRESENTATION_SEQUENCE_BASE_INFO(arg, cnt)
static enum AVMediaType get_content_type(xmlNodePtr node)
static int open_url(AVFormatContext *s, AVIOContext **pb, const char *url, AVDictionary **opts, AVDictionary *opts2, int *is_http)
#define INITIAL_BUFFER_SIZE
static int is_common_init_section_exist(struct representation **pls, int n_pls)
static const AVOption dash_options[]
static struct fragment * get_current_fragment(struct representation *pls)
static int ishttp(char *url)
static int update_init_section(struct representation *pls)
static int dash_seek(AVFormatContext *s, struct representation *pls, int64_t seek_pos_msec, int flags, int dry_run)
static int read_data(void *opaque, uint8_t *buf, int buf_size)
static int open_demux_for_component(AVFormatContext *s, struct representation *pls)
static int parse_manifest_adaptationset_attr(AVFormatContext *s, xmlNodePtr adaptionset_node)
static int parse_manifest_segmenturlnode(AVFormatContext *s, struct representation *rep, xmlNodePtr fragmenturl_node, xmlNodePtr *baseurl_nodes, char *rep_id_val, char *rep_bandwidth_val)
static int64_t get_utc_date_time_insec(AVFormatContext *s, const char *datetime)
static void recheck_discard_flags(AVFormatContext *s, struct representation **p, int n)
static void move_metadata(AVStream *st, const char *key, char **value)
static int parse_manifest_representation(AVFormatContext *s, const char *url, xmlNodePtr node, xmlNodePtr adaptionset_node, xmlNodePtr mpd_baseurl_node, xmlNodePtr period_baseurl_node, xmlNodePtr period_segmenttemplate_node, xmlNodePtr period_segmentlist_node, xmlNodePtr fragment_template_node, xmlNodePtr content_component_node, xmlNodePtr adaptionset_baseurl_node, xmlNodePtr adaptionset_segmentlist_node, xmlNodePtr adaptionset_supplementalproperty_node)
static char * get_content_url(xmlNodePtr *baseurl_nodes, int n_baseurl_nodes, int max_url_size, char *rep_id_val, char *rep_bandwidth_val, char *val)
static int copy_init_section(struct representation *rep_dest, struct representation *rep_src)
static const AVClass dash_class
static int64_t get_segment_start_time_based_on_timeline(struct representation *pls, int64_t cur_seq_no)
static int aligned(int val)
static int reopen_demux_for_component(AVFormatContext *s, struct representation *pls)
static int dash_read_packet(AVFormatContext *s, AVPacket *pkt)
static int64_t calc_min_seg_no(AVFormatContext *s, struct representation *pls)
static int64_t get_current_time_in_sec(void)
static int nested_io_open(AVFormatContext *s, AVIOContext **pb, const char *url, int flags, AVDictionary **opts)
static void free_representation(struct representation *pls)
static void free_audio_list(DASHContext *c)
static uint32_t get_duration_insec(AVFormatContext *s, const char *duration)
static void move_timelines(struct representation *rep_src, struct representation *rep_dest, DASHContext *c)
static int64_t calc_cur_seg_no(AVFormatContext *s, struct representation *pls)
static void free_subtitle_list(DASHContext *c)
static int dash_close(AVFormatContext *s)
static void close_demux_for_component(struct representation *pls)
static int64_t seek_data(void *opaque, int64_t offset, int whence)
static int dash_probe(const AVProbeData *p)
static int open_input(DASHContext *c, struct representation *pls, struct fragment *seg)
static xmlNodePtr find_child_node_by_name(xmlNodePtr rootnode, const char *nodename)
static int refresh_manifest(AVFormatContext *s)
static struct fragment * get_fragment(AVFormatContext *s, char *range)
static int64_t calc_next_seg_no_from_timelines(struct representation *pls, int64_t cur_time)
static void free_fragment(struct fragment **seg)
static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in)
static void move_segments(struct representation *rep_src, struct representation *rep_dest, DASHContext *c)
static int64_t calc_max_seg_no(struct representation *pls, DASHContext *c)
static int read_from_url(struct representation *pls, struct fragment *seg, uint8_t *buf, int buf_size)
static int parse_programinformation(AVFormatContext *s, xmlNodePtr node)
static char * get_val_from_nodes_tab(xmlNodePtr *nodes, const int n_nodes, const char *attrname)
static int dash_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
static int parse_manifest_adaptationset(AVFormatContext *s, const char *url, xmlNodePtr adaptionset_node, xmlNodePtr mpd_baseurl_node, xmlNodePtr period_baseurl_node, xmlNodePtr period_segmenttemplate_node, xmlNodePtr period_segmentlist_node)
static void free_fragment_list(struct representation *pls)
static int parse_manifest_segmenttimeline(AVFormatContext *s, struct representation *rep, xmlNodePtr fragment_timeline_node)
static void free_timelines_list(struct representation *pls)
static void free_video_list(DASHContext *c)
static int resolve_content_path(AVFormatContext *s, const char *url, int *max_url_size, xmlNodePtr *baseurl_nodes, int n_baseurl_nodes)
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
void ff_read_frame_flush(AVFormatContext *s)
Flush the frame reader.
#define FFERROR_REDO
Returned by demuxers to indicate that data was consumed but discarded (ignored streams or junk data).
static int64_t start_time
static int read_header(FFV1Context *f, RangeCoder *c)
static av_cold void cleanup(FlashSV2Context *s)
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
@ AVDISCARD_ALL
discard all
AVProgram * av_new_program(AVFormatContext *ac, int id)
AVStreamGroup * avformat_stream_group_create(AVFormatContext *s, enum AVStreamGroupParamsType type, AVDictionary **options)
Add a new empty stream group to a media file.
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int avformat_stream_group_add_stream(AVStreamGroup *stg, AVStream *st)
Add an already allocated stream to a stream group.
AVFormatContext * avformat_alloc_context(void)
Allocate an AVFormatContext.
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
int av_probe_input_buffer(AVIOContext *pb, const AVInputFormat **fmt, const char *url, void *logctx, unsigned int offset, unsigned int max_probe_size)
Like av_probe_input_buffer2() but returns 0 on success.
int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Seek to the keyframe at timestamp.
int avformat_open_input(AVFormatContext **ps, const char *url, const AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
int av_match_ext(const char *filename, const char *extensions)
Return a positive value if the given filename has one of the given extensions, 0 otherwise.
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
#define AV_DICT_MATCH_CASE
Only get an entry with exact-case key match.
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set() that converts the value to a string and stores it.
#define AVERROR_EXIT
Immediate exit was requested; the called function should not be restarted.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AVERROR_EOF
End of file.
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_VERBOSE
Detailed information.
#define AV_LOG_INFO
Standard information.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
const char * av_default_item_name(void *ptr)
Return the context name.
static AVRational av_make_q(int num, int den)
Create an AVRational.
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
@ AV_ROUND_DOWN
Round toward -infinity.
@ AV_ROUND_UP
Round toward +infinity.
int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem)
Add an element to a dynamic array.
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
@ AVMEDIA_TYPE_UNKNOWN
Usually treated as AVMEDIA_TYPE_DATA.
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes,...
char * av_stristr(const char *s1, const char *s2)
Locate the first case-independent occurrence in the string haystack of the string needle.
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
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.
char * av_strireplace(const char *str, const char *from, const char *to)
Locale-independent strings replace.
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
#define AV_TIME_BASE
Internal time base represented as integer.
#define LIBAVUTIL_VERSION_INT
int av_opt_get(void *obj, const char *name, int search_flags, uint8_t **out_val)
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
int av_opt_copy(void *dst, const void *src)
Copy options from src object into dest object.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static av_cold int read_close(AVFormatContext *ctx)
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Memory handling functions.
int av_parse_video_rate(AVRational *rate, const char *arg)
Parse str and store the detected values in *rate.
time_t av_timegm(struct tm *tm)
Convert the decomposed UTC time in tm to a time_t value.
Describe the class of an AVClass context structure.
int height
The height of the video frame in pixels.
int width
The width of the video frame in pixels.
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
AVStreamGroup ** stream_groups
A list of all stream groups in the file.
AVIOContext * pb
I/O context.
int flags
Flags modifying the (de)muxer behaviour.
int64_t max_analyze_duration
Maximum duration (in AV_TIME_BASE units) of the data read from input in avformat_find_stream_info().
AVIOInterruptCB interrupt_callback
Custom interrupt callbacks for the I/O layer.
unsigned int nb_stream_groups
Number of elements in AVFormatContext.stream_groups.
void * priv_data
Format private data.
int64_t probesize
Maximum number of bytes read from input in order to determine stream properties.
AVStream ** streams
A list of all streams in the file.
int(* io_open)(struct AVFormatContext *s, AVIOContext **pb, const char *url, int flags, AVDictionary **options)
A callback for opening new IO streams.
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
unsigned char * buffer
Start of the buffer.
Callback for checking whether to abort blocking functions.
This structure stores compressed data.
This structure contains the data a format has to probe a file.
New fields can be added to the end with minor version bumps.
Rational number (pair of numerator and denominator).
AVStreamGroupLayeredVideo is meant to define the relation between a base layer video stream and a sep...
int height
Height of the final image for presentation.
unsigned int el_index
Index of the enhancement layer stream in AVStreamGroup.
int width
Width of the final stream for presentation.
union AVStreamGroup::@166361102046003066253145020066347265153020354020 params
Group type-specific parameters.
enum AVStreamGroupParamsType type
Group type.
unsigned int nb_streams
Number of elements in AVStreamGroup.streams.
unsigned int index
Group index in AVFormatContext.
int disposition
Stream group disposition - a combination of AV_DISPOSITION_* flags.
int64_t id
Group type-specific group ID.
AVStream ** streams
A list of streams in the group.
struct AVStreamGroupLayeredVideo * layered_video
AVCodecParameters * codecpar
Codec parameters associated with this stream.
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
int id
Format-specific stream ID.
int index
stream index in AVFormatContext
int pts_wrap_bits
Number of bits in timestamps.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
AVRational r_frame_rate
Real base framerate of the stream.
int disposition
Stream disposition - a combination of AV_DISPOSITION_* flags.
int is_init_section_common_video
int64_t availability_end_time
int64_t minimum_update_period
int is_init_section_common_audio
int64_t media_presentation_duration
int64_t suggested_presentation_delay
char * cenc_decryption_key
struct representation ** videos
struct representation ** subtitles
int is_init_section_common_subtitle
char * allowed_extensions
int64_t availability_start_time
int64_t time_shift_buffer_depth
AVIOInterruptCB * interrupt_callback
char * cenc_decryption_keys
struct representation ** audios
enum AVStreamParseType need_parsing
uint32_t init_sec_data_len
struct timeline ** timelines
struct fragment * cur_seg
uint32_t init_sec_buf_size
uint32_t init_sec_buf_read_offset
int64_t presentation_timeoffset
struct fragment ** fragments
int64_t fragment_timescale
struct fragment * init_section
int64_t fragment_duration
#define av_malloc_array(a, b)
static int ref[MAX_W *MAX_W]
int64_t av_gettime(void)
Get the current time in microseconds.
int ff_make_absolute_url(char *buf, int size, const char *base, const char *rel)
Convert a relative url into an absolute url, given a base url.
unbuffered private I/O API