You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1724 lines
58KB

  1. /*
  2. * Apple HTTP Live Streaming demuxer
  3. * Copyright (c) 2010 Martin Storsjo
  4. * Copyright (c) 2013 Anssi Hannula
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * Apple HTTP Live Streaming demuxer
  25. * http://tools.ietf.org/html/draft-pantos-http-live-streaming
  26. */
  27. #include "libavutil/avstring.h"
  28. #include "libavutil/avassert.h"
  29. #include "libavutil/intreadwrite.h"
  30. #include "libavutil/mathematics.h"
  31. #include "libavutil/opt.h"
  32. #include "libavutil/dict.h"
  33. #include "libavutil/time.h"
  34. #include "avformat.h"
  35. #include "internal.h"
  36. #include "avio_internal.h"
  37. #include "url.h"
  38. #include "id3v2.h"
  39. #define INITIAL_BUFFER_SIZE 32768
  40. #define MAX_FIELD_LEN 64
  41. #define MAX_CHARACTERISTICS_LEN 512
  42. #define MPEG_TIME_BASE 90000
  43. #define MPEG_TIME_BASE_Q (AVRational){1, MPEG_TIME_BASE}
  44. /*
  45. * An apple http stream consists of a playlist with media segment files,
  46. * played sequentially. There may be several playlists with the same
  47. * video content, in different bandwidth variants, that are played in
  48. * parallel (preferably only one bandwidth variant at a time). In this case,
  49. * the user supplied the url to a main playlist that only lists the variant
  50. * playlists.
  51. *
  52. * If the main playlist doesn't point at any variants, we still create
  53. * one anonymous toplevel variant for this, to maintain the structure.
  54. */
  55. enum KeyType {
  56. KEY_NONE,
  57. KEY_AES_128,
  58. };
  59. struct segment {
  60. int64_t duration;
  61. int64_t url_offset;
  62. int64_t size;
  63. char *url;
  64. char *key;
  65. enum KeyType key_type;
  66. uint8_t iv[16];
  67. };
  68. struct rendition;
  69. enum PlaylistType {
  70. PLS_TYPE_UNSPECIFIED,
  71. PLS_TYPE_EVENT,
  72. PLS_TYPE_VOD
  73. };
  74. /*
  75. * Each playlist has its own demuxer. If it currently is active,
  76. * it has an open AVIOContext too, and potentially an AVPacket
  77. * containing the next packet from this stream.
  78. */
  79. struct playlist {
  80. char url[MAX_URL_SIZE];
  81. AVIOContext pb;
  82. uint8_t* read_buffer;
  83. URLContext *input;
  84. AVFormatContext *parent;
  85. int index;
  86. AVFormatContext *ctx;
  87. AVPacket pkt;
  88. int stream_offset;
  89. int finished;
  90. enum PlaylistType type;
  91. int64_t target_duration;
  92. int start_seq_no;
  93. int n_segments;
  94. struct segment **segments;
  95. int needed, cur_needed;
  96. int cur_seq_no;
  97. int64_t cur_seg_offset;
  98. int64_t last_load_time;
  99. char key_url[MAX_URL_SIZE];
  100. uint8_t key[16];
  101. /* ID3 timestamp handling (elementary audio streams have ID3 timestamps
  102. * (and possibly other ID3 tags) in the beginning of each segment) */
  103. int is_id3_timestamped; /* -1: not yet known */
  104. int64_t id3_mpegts_timestamp; /* in mpegts tb */
  105. int64_t id3_offset; /* in stream original tb */
  106. uint8_t* id3_buf; /* temp buffer for id3 parsing */
  107. unsigned int id3_buf_size;
  108. AVDictionary *id3_initial; /* data from first id3 tag */
  109. int id3_found; /* ID3 tag found at some point */
  110. int id3_changed; /* ID3 tag data has changed at some point */
  111. ID3v2ExtraMeta *id3_deferred_extra; /* stored here until subdemuxer is opened */
  112. int64_t seek_timestamp;
  113. int seek_flags;
  114. int seek_stream_index; /* into subdemuxer stream array */
  115. /* Renditions associated with this playlist, if any.
  116. * Alternative rendition playlists have a single rendition associated
  117. * with them, and variant main Media Playlists may have
  118. * multiple (playlist-less) renditions associated with them. */
  119. int n_renditions;
  120. struct rendition **renditions;
  121. };
  122. /*
  123. * Renditions are e.g. alternative subtitle or audio streams.
  124. * The rendition may either be an external playlist or it may be
  125. * contained in the main Media Playlist of the variant (in which case
  126. * playlist is NULL).
  127. */
  128. struct rendition {
  129. enum AVMediaType type;
  130. struct playlist *playlist;
  131. char group_id[MAX_FIELD_LEN];
  132. char language[MAX_FIELD_LEN];
  133. char name[MAX_FIELD_LEN];
  134. int disposition;
  135. };
  136. struct variant {
  137. int bandwidth;
  138. /* every variant contains at least the main Media Playlist in index 0 */
  139. int n_playlists;
  140. struct playlist **playlists;
  141. char audio_group[MAX_FIELD_LEN];
  142. char video_group[MAX_FIELD_LEN];
  143. char subtitles_group[MAX_FIELD_LEN];
  144. };
  145. typedef struct HLSContext {
  146. int n_variants;
  147. struct variant **variants;
  148. int n_playlists;
  149. struct playlist **playlists;
  150. int n_renditions;
  151. struct rendition **renditions;
  152. int cur_seq_no;
  153. int first_packet;
  154. int64_t first_timestamp;
  155. int64_t cur_timestamp;
  156. AVIOInterruptCB *interrupt_callback;
  157. char *user_agent; ///< holds HTTP user agent set as an AVOption to the HTTP protocol context
  158. char *cookies; ///< holds HTTP cookie values set in either the initial response or as an AVOption to the HTTP protocol context
  159. char *headers; ///< holds HTTP headers set as an AVOption to the HTTP protocol context
  160. } HLSContext;
  161. static int read_chomp_line(AVIOContext *s, char *buf, int maxlen)
  162. {
  163. int len = ff_get_line(s, buf, maxlen);
  164. while (len > 0 && av_isspace(buf[len - 1]))
  165. buf[--len] = '\0';
  166. return len;
  167. }
  168. static void free_segment_list(struct playlist *pls)
  169. {
  170. int i;
  171. for (i = 0; i < pls->n_segments; i++) {
  172. av_free(pls->segments[i]->key);
  173. av_free(pls->segments[i]->url);
  174. av_free(pls->segments[i]);
  175. }
  176. av_freep(&pls->segments);
  177. pls->n_segments = 0;
  178. }
  179. static void free_playlist_list(HLSContext *c)
  180. {
  181. int i;
  182. for (i = 0; i < c->n_playlists; i++) {
  183. struct playlist *pls = c->playlists[i];
  184. free_segment_list(pls);
  185. av_freep(&pls->renditions);
  186. av_freep(&pls->id3_buf);
  187. av_dict_free(&pls->id3_initial);
  188. ff_id3v2_free_extra_meta(&pls->id3_deferred_extra);
  189. av_free_packet(&pls->pkt);
  190. av_free(pls->pb.buffer);
  191. if (pls->input)
  192. ffurl_close(pls->input);
  193. if (pls->ctx) {
  194. pls->ctx->pb = NULL;
  195. avformat_close_input(&pls->ctx);
  196. }
  197. av_free(pls);
  198. }
  199. av_freep(&c->playlists);
  200. av_freep(&c->cookies);
  201. av_freep(&c->user_agent);
  202. c->n_playlists = 0;
  203. }
  204. static void free_variant_list(HLSContext *c)
  205. {
  206. int i;
  207. for (i = 0; i < c->n_variants; i++) {
  208. struct variant *var = c->variants[i];
  209. av_freep(&var->playlists);
  210. av_free(var);
  211. }
  212. av_freep(&c->variants);
  213. c->n_variants = 0;
  214. }
  215. static void free_rendition_list(HLSContext *c)
  216. {
  217. int i;
  218. for (i = 0; i < c->n_renditions; i++)
  219. av_free(c->renditions[i]);
  220. av_freep(&c->renditions);
  221. c->n_renditions = 0;
  222. }
  223. /*
  224. * Used to reset a statically allocated AVPacket to a clean slate,
  225. * containing no data.
  226. */
  227. static void reset_packet(AVPacket *pkt)
  228. {
  229. av_init_packet(pkt);
  230. pkt->data = NULL;
  231. }
  232. static struct playlist *new_playlist(HLSContext *c, const char *url,
  233. const char *base)
  234. {
  235. struct playlist *pls = av_mallocz(sizeof(struct playlist));
  236. if (!pls)
  237. return NULL;
  238. reset_packet(&pls->pkt);
  239. ff_make_absolute_url(pls->url, sizeof(pls->url), base, url);
  240. pls->seek_timestamp = AV_NOPTS_VALUE;
  241. pls->is_id3_timestamped = -1;
  242. pls->id3_mpegts_timestamp = AV_NOPTS_VALUE;
  243. dynarray_add(&c->playlists, &c->n_playlists, pls);
  244. return pls;
  245. }
  246. struct variant_info {
  247. char bandwidth[20];
  248. /* variant group ids: */
  249. char audio[MAX_FIELD_LEN];
  250. char video[MAX_FIELD_LEN];
  251. char subtitles[MAX_FIELD_LEN];
  252. };
  253. static struct variant *new_variant(HLSContext *c, struct variant_info *info,
  254. const char *url, const char *base)
  255. {
  256. struct variant *var;
  257. struct playlist *pls;
  258. pls = new_playlist(c, url, base);
  259. if (!pls)
  260. return NULL;
  261. var = av_mallocz(sizeof(struct variant));
  262. if (!var)
  263. return NULL;
  264. if (info) {
  265. var->bandwidth = atoi(info->bandwidth);
  266. strcpy(var->audio_group, info->audio);
  267. strcpy(var->video_group, info->video);
  268. strcpy(var->subtitles_group, info->subtitles);
  269. }
  270. dynarray_add(&c->variants, &c->n_variants, var);
  271. dynarray_add(&var->playlists, &var->n_playlists, pls);
  272. return var;
  273. }
  274. static void handle_variant_args(struct variant_info *info, const char *key,
  275. int key_len, char **dest, int *dest_len)
  276. {
  277. if (!strncmp(key, "BANDWIDTH=", key_len)) {
  278. *dest = info->bandwidth;
  279. *dest_len = sizeof(info->bandwidth);
  280. } else if (!strncmp(key, "AUDIO=", key_len)) {
  281. *dest = info->audio;
  282. *dest_len = sizeof(info->audio);
  283. } else if (!strncmp(key, "VIDEO=", key_len)) {
  284. *dest = info->video;
  285. *dest_len = sizeof(info->video);
  286. } else if (!strncmp(key, "SUBTITLES=", key_len)) {
  287. *dest = info->subtitles;
  288. *dest_len = sizeof(info->subtitles);
  289. }
  290. }
  291. struct key_info {
  292. char uri[MAX_URL_SIZE];
  293. char method[10];
  294. char iv[35];
  295. };
  296. static void handle_key_args(struct key_info *info, const char *key,
  297. int key_len, char **dest, int *dest_len)
  298. {
  299. if (!strncmp(key, "METHOD=", key_len)) {
  300. *dest = info->method;
  301. *dest_len = sizeof(info->method);
  302. } else if (!strncmp(key, "URI=", key_len)) {
  303. *dest = info->uri;
  304. *dest_len = sizeof(info->uri);
  305. } else if (!strncmp(key, "IV=", key_len)) {
  306. *dest = info->iv;
  307. *dest_len = sizeof(info->iv);
  308. }
  309. }
  310. struct rendition_info {
  311. char type[16];
  312. char uri[MAX_URL_SIZE];
  313. char group_id[MAX_FIELD_LEN];
  314. char language[MAX_FIELD_LEN];
  315. char assoc_language[MAX_FIELD_LEN];
  316. char name[MAX_FIELD_LEN];
  317. char defaultr[4];
  318. char forced[4];
  319. char characteristics[MAX_CHARACTERISTICS_LEN];
  320. };
  321. static struct rendition *new_rendition(HLSContext *c, struct rendition_info *info,
  322. const char *url_base)
  323. {
  324. struct rendition *rend;
  325. enum AVMediaType type = AVMEDIA_TYPE_UNKNOWN;
  326. char *characteristic;
  327. char *chr_ptr;
  328. char *saveptr;
  329. if (!strcmp(info->type, "AUDIO"))
  330. type = AVMEDIA_TYPE_AUDIO;
  331. else if (!strcmp(info->type, "VIDEO"))
  332. type = AVMEDIA_TYPE_VIDEO;
  333. else if (!strcmp(info->type, "SUBTITLES"))
  334. type = AVMEDIA_TYPE_SUBTITLE;
  335. else if (!strcmp(info->type, "CLOSED-CAPTIONS"))
  336. /* CLOSED-CAPTIONS is ignored since we do not support CEA-608 CC in
  337. * AVC SEI RBSP anyway */
  338. return NULL;
  339. if (type == AVMEDIA_TYPE_UNKNOWN)
  340. return NULL;
  341. /* URI is mandatory for subtitles as per spec */
  342. if (type == AVMEDIA_TYPE_SUBTITLE && !info->uri[0])
  343. return NULL;
  344. /* TODO: handle subtitles (each segment has to parsed separately) */
  345. if (type == AVMEDIA_TYPE_SUBTITLE)
  346. return NULL;
  347. rend = av_mallocz(sizeof(struct rendition));
  348. if (!rend)
  349. return NULL;
  350. dynarray_add(&c->renditions, &c->n_renditions, rend);
  351. rend->type = type;
  352. strcpy(rend->group_id, info->group_id);
  353. strcpy(rend->language, info->language);
  354. strcpy(rend->name, info->name);
  355. /* add the playlist if this is an external rendition */
  356. if (info->uri[0]) {
  357. rend->playlist = new_playlist(c, info->uri, url_base);
  358. if (rend->playlist)
  359. dynarray_add(&rend->playlist->renditions,
  360. &rend->playlist->n_renditions, rend);
  361. }
  362. if (info->assoc_language[0]) {
  363. int langlen = strlen(rend->language);
  364. if (langlen < sizeof(rend->language) - 3) {
  365. rend->language[langlen] = ',';
  366. strncpy(rend->language + langlen + 1, info->assoc_language,
  367. sizeof(rend->language) - langlen - 2);
  368. }
  369. }
  370. if (!strcmp(info->defaultr, "YES"))
  371. rend->disposition |= AV_DISPOSITION_DEFAULT;
  372. if (!strcmp(info->forced, "YES"))
  373. rend->disposition |= AV_DISPOSITION_FORCED;
  374. chr_ptr = info->characteristics;
  375. while ((characteristic = av_strtok(chr_ptr, ",", &saveptr))) {
  376. if (!strcmp(characteristic, "public.accessibility.describes-music-and-sound"))
  377. rend->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
  378. else if (!strcmp(characteristic, "public.accessibility.describes-video"))
  379. rend->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
  380. chr_ptr = NULL;
  381. }
  382. return rend;
  383. }
  384. static void handle_rendition_args(struct rendition_info *info, const char *key,
  385. int key_len, char **dest, int *dest_len)
  386. {
  387. if (!strncmp(key, "TYPE=", key_len)) {
  388. *dest = info->type;
  389. *dest_len = sizeof(info->type);
  390. } else if (!strncmp(key, "URI=", key_len)) {
  391. *dest = info->uri;
  392. *dest_len = sizeof(info->uri);
  393. } else if (!strncmp(key, "GROUP-ID=", key_len)) {
  394. *dest = info->group_id;
  395. *dest_len = sizeof(info->group_id);
  396. } else if (!strncmp(key, "LANGUAGE=", key_len)) {
  397. *dest = info->language;
  398. *dest_len = sizeof(info->language);
  399. } else if (!strncmp(key, "ASSOC-LANGUAGE=", key_len)) {
  400. *dest = info->assoc_language;
  401. *dest_len = sizeof(info->assoc_language);
  402. } else if (!strncmp(key, "NAME=", key_len)) {
  403. *dest = info->name;
  404. *dest_len = sizeof(info->name);
  405. } else if (!strncmp(key, "DEFAULT=", key_len)) {
  406. *dest = info->defaultr;
  407. *dest_len = sizeof(info->defaultr);
  408. } else if (!strncmp(key, "FORCED=", key_len)) {
  409. *dest = info->forced;
  410. *dest_len = sizeof(info->forced);
  411. } else if (!strncmp(key, "CHARACTERISTICS=", key_len)) {
  412. *dest = info->characteristics;
  413. *dest_len = sizeof(info->characteristics);
  414. }
  415. /*
  416. * ignored:
  417. * - AUTOSELECT: client may autoselect based on e.g. system language
  418. * - INSTREAM-ID: EIA-608 closed caption number ("CC1".."CC4")
  419. */
  420. }
  421. /* used by parse_playlist to allocate a new variant+playlist when the
  422. * playlist is detected to be a Media Playlist (not Master Playlist)
  423. * and we have no parent Master Playlist (parsing of which would have
  424. * allocated the variant and playlist already) */
  425. static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url)
  426. {
  427. if (*pls)
  428. return 0;
  429. if (!new_variant(c, NULL, url, NULL))
  430. return AVERROR(ENOMEM);
  431. *pls = c->playlists[c->n_playlists - 1];
  432. return 0;
  433. }
  434. /* pls = NULL => Master Playlist or parentless Media Playlist
  435. * pls = !NULL => parented Media Playlist, playlist+variant allocated */
  436. static int parse_playlist(HLSContext *c, const char *url,
  437. struct playlist *pls, AVIOContext *in)
  438. {
  439. int ret = 0, is_segment = 0, is_variant = 0;
  440. int64_t duration = 0;
  441. enum KeyType key_type = KEY_NONE;
  442. uint8_t iv[16] = "";
  443. int has_iv = 0;
  444. char key[MAX_URL_SIZE] = "";
  445. char line[MAX_URL_SIZE];
  446. const char *ptr;
  447. int close_in = 0;
  448. int64_t seg_offset = 0;
  449. int64_t seg_size = -1;
  450. uint8_t *new_url = NULL;
  451. struct variant_info variant_info;
  452. char tmp_str[MAX_URL_SIZE];
  453. if (!in) {
  454. AVDictionary *opts = NULL;
  455. close_in = 1;
  456. /* Some HLS servers don't like being sent the range header */
  457. av_dict_set(&opts, "seekable", "0", 0);
  458. // broker prior HTTP options that should be consistent across requests
  459. av_dict_set(&opts, "user-agent", c->user_agent, 0);
  460. av_dict_set(&opts, "cookies", c->cookies, 0);
  461. av_dict_set(&opts, "headers", c->headers, 0);
  462. ret = avio_open2(&in, url, AVIO_FLAG_READ,
  463. c->interrupt_callback, &opts);
  464. av_dict_free(&opts);
  465. if (ret < 0)
  466. return ret;
  467. }
  468. if (av_opt_get(in, "location", AV_OPT_SEARCH_CHILDREN, &new_url) >= 0)
  469. url = new_url;
  470. read_chomp_line(in, line, sizeof(line));
  471. if (strcmp(line, "#EXTM3U")) {
  472. ret = AVERROR_INVALIDDATA;
  473. goto fail;
  474. }
  475. if (pls) {
  476. free_segment_list(pls);
  477. pls->finished = 0;
  478. pls->type = PLS_TYPE_UNSPECIFIED;
  479. }
  480. while (!url_feof(in)) {
  481. read_chomp_line(in, line, sizeof(line));
  482. if (av_strstart(line, "#EXT-X-STREAM-INF:", &ptr)) {
  483. is_variant = 1;
  484. memset(&variant_info, 0, sizeof(variant_info));
  485. ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_variant_args,
  486. &variant_info);
  487. } else if (av_strstart(line, "#EXT-X-KEY:", &ptr)) {
  488. struct key_info info = {{0}};
  489. ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_key_args,
  490. &info);
  491. key_type = KEY_NONE;
  492. has_iv = 0;
  493. if (!strcmp(info.method, "AES-128"))
  494. key_type = KEY_AES_128;
  495. if (!strncmp(info.iv, "0x", 2) || !strncmp(info.iv, "0X", 2)) {
  496. ff_hex_to_data(iv, info.iv + 2);
  497. has_iv = 1;
  498. }
  499. av_strlcpy(key, info.uri, sizeof(key));
  500. } else if (av_strstart(line, "#EXT-X-MEDIA:", &ptr)) {
  501. struct rendition_info info = {{0}};
  502. ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_rendition_args,
  503. &info);
  504. new_rendition(c, &info, url);
  505. } else if (av_strstart(line, "#EXT-X-TARGETDURATION:", &ptr)) {
  506. ret = ensure_playlist(c, &pls, url);
  507. if (ret < 0)
  508. goto fail;
  509. pls->target_duration = atoi(ptr) * AV_TIME_BASE;
  510. } else if (av_strstart(line, "#EXT-X-MEDIA-SEQUENCE:", &ptr)) {
  511. ret = ensure_playlist(c, &pls, url);
  512. if (ret < 0)
  513. goto fail;
  514. pls->start_seq_no = atoi(ptr);
  515. } else if (av_strstart(line, "#EXT-X-PLAYLIST-TYPE:", &ptr)) {
  516. ret = ensure_playlist(c, &pls, url);
  517. if (ret < 0)
  518. goto fail;
  519. if (!strcmp(ptr, "EVENT"))
  520. pls->type = PLS_TYPE_EVENT;
  521. else if (!strcmp(ptr, "VOD"))
  522. pls->type = PLS_TYPE_VOD;
  523. } else if (av_strstart(line, "#EXT-X-ENDLIST", &ptr)) {
  524. if (pls)
  525. pls->finished = 1;
  526. } else if (av_strstart(line, "#EXTINF:", &ptr)) {
  527. is_segment = 1;
  528. duration = atof(ptr) * AV_TIME_BASE;
  529. } else if (av_strstart(line, "#EXT-X-BYTERANGE:", &ptr)) {
  530. seg_size = atoi(ptr);
  531. ptr = strchr(ptr, '@');
  532. if (ptr)
  533. seg_offset = atoi(ptr+1);
  534. } else if (av_strstart(line, "#", NULL)) {
  535. continue;
  536. } else if (line[0]) {
  537. if (is_variant) {
  538. if (!new_variant(c, &variant_info, line, url)) {
  539. ret = AVERROR(ENOMEM);
  540. goto fail;
  541. }
  542. is_variant = 0;
  543. }
  544. if (is_segment) {
  545. struct segment *seg;
  546. if (!pls) {
  547. if (!new_variant(c, 0, url, NULL)) {
  548. ret = AVERROR(ENOMEM);
  549. goto fail;
  550. }
  551. pls = c->playlists[c->n_playlists - 1];
  552. }
  553. seg = av_malloc(sizeof(struct segment));
  554. if (!seg) {
  555. ret = AVERROR(ENOMEM);
  556. goto fail;
  557. }
  558. seg->duration = duration;
  559. seg->key_type = key_type;
  560. if (has_iv) {
  561. memcpy(seg->iv, iv, sizeof(iv));
  562. } else {
  563. int seq = pls->start_seq_no + pls->n_segments;
  564. memset(seg->iv, 0, sizeof(seg->iv));
  565. AV_WB32(seg->iv + 12, seq);
  566. }
  567. if (key_type != KEY_NONE) {
  568. ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, key);
  569. seg->key = av_strdup(tmp_str);
  570. if (!seg->key) {
  571. av_free(seg);
  572. ret = AVERROR(ENOMEM);
  573. goto fail;
  574. }
  575. } else {
  576. seg->key = NULL;
  577. }
  578. ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, line);
  579. seg->url = av_strdup(tmp_str);
  580. if (!seg->url) {
  581. av_free(seg->key);
  582. av_free(seg);
  583. ret = AVERROR(ENOMEM);
  584. goto fail;
  585. }
  586. dynarray_add(&pls->segments, &pls->n_segments, seg);
  587. is_segment = 0;
  588. seg->size = seg_size;
  589. if (seg_size >= 0) {
  590. seg->url_offset = seg_offset;
  591. seg_offset += seg_size;
  592. seg_size = -1;
  593. } else {
  594. seg->url_offset = 0;
  595. seg_offset = 0;
  596. }
  597. }
  598. }
  599. }
  600. if (pls)
  601. pls->last_load_time = av_gettime();
  602. fail:
  603. av_free(new_url);
  604. if (close_in)
  605. avio_close(in);
  606. return ret;
  607. }
  608. enum ReadFromURLMode {
  609. READ_NORMAL,
  610. READ_COMPLETE,
  611. };
  612. /* read from URLContext, limiting read to current segment */
  613. static int read_from_url(struct playlist *pls, uint8_t *buf, int buf_size,
  614. enum ReadFromURLMode mode)
  615. {
  616. int ret;
  617. struct segment *seg = pls->segments[pls->cur_seq_no - pls->start_seq_no];
  618. /* limit read if the segment was only a part of a file */
  619. if (seg->size >= 0)
  620. buf_size = FFMIN(buf_size, seg->size - pls->cur_seg_offset);
  621. if (mode == READ_COMPLETE)
  622. ret = ffurl_read_complete(pls->input, buf, buf_size);
  623. else
  624. ret = ffurl_read(pls->input, buf, buf_size);
  625. if (ret > 0)
  626. pls->cur_seg_offset += ret;
  627. return ret;
  628. }
  629. /* Parse the raw ID3 data and pass contents to caller */
  630. static void parse_id3(AVFormatContext *s, AVIOContext *pb,
  631. AVDictionary **metadata, int64_t *dts,
  632. ID3v2ExtraMetaAPIC **apic, ID3v2ExtraMeta **extra_meta)
  633. {
  634. static const char id3_priv_owner_ts[] = "com.apple.streaming.transportStreamTimestamp";
  635. ID3v2ExtraMeta *meta;
  636. ff_id3v2_read_dict(pb, metadata, ID3v2_DEFAULT_MAGIC, extra_meta);
  637. for (meta = *extra_meta; meta; meta = meta->next) {
  638. if (!strcmp(meta->tag, "PRIV")) {
  639. ID3v2ExtraMetaPRIV *priv = meta->data;
  640. if (priv->datasize == 8 && !strcmp(priv->owner, id3_priv_owner_ts)) {
  641. /* 33-bit MPEG timestamp */
  642. int64_t ts = AV_RB64(priv->data);
  643. av_log(s, AV_LOG_DEBUG, "HLS ID3 audio timestamp %"PRId64"\n", ts);
  644. if ((ts & ~((1ULL << 33) - 1)) == 0)
  645. *dts = ts;
  646. else
  647. av_log(s, AV_LOG_ERROR, "Invalid HLS ID3 audio timestamp %"PRId64"\n", ts);
  648. }
  649. } else if (!strcmp(meta->tag, "APIC") && apic)
  650. *apic = meta->data;
  651. }
  652. }
  653. /* Check if the ID3 metadata contents have changed */
  654. static int id3_has_changed_values(struct playlist *pls, AVDictionary *metadata,
  655. ID3v2ExtraMetaAPIC *apic)
  656. {
  657. AVDictionaryEntry *entry = NULL;
  658. AVDictionaryEntry *oldentry;
  659. /* check that no keys have changed values */
  660. while ((entry = av_dict_get(metadata, "", entry, AV_DICT_IGNORE_SUFFIX))) {
  661. oldentry = av_dict_get(pls->id3_initial, entry->key, NULL, AV_DICT_MATCH_CASE);
  662. if (!oldentry || strcmp(oldentry->value, entry->value) != 0)
  663. return 1;
  664. }
  665. /* check if apic appeared */
  666. if (apic && (pls->ctx->nb_streams != 2 || !pls->ctx->streams[1]->attached_pic.data))
  667. return 1;
  668. if (apic) {
  669. int size = pls->ctx->streams[1]->attached_pic.size;
  670. if (size != apic->buf->size - FF_INPUT_BUFFER_PADDING_SIZE)
  671. return 1;
  672. if (memcmp(apic->buf->data, pls->ctx->streams[1]->attached_pic.data, size) != 0)
  673. return 1;
  674. }
  675. return 0;
  676. }
  677. /* Parse ID3 data and handle the found data */
  678. static void handle_id3(AVIOContext *pb, struct playlist *pls)
  679. {
  680. AVDictionary *metadata = NULL;
  681. ID3v2ExtraMetaAPIC *apic = NULL;
  682. ID3v2ExtraMeta *extra_meta = NULL;
  683. int64_t timestamp = AV_NOPTS_VALUE;
  684. parse_id3(pls->ctx, pb, &metadata, &timestamp, &apic, &extra_meta);
  685. if (timestamp != AV_NOPTS_VALUE) {
  686. pls->id3_mpegts_timestamp = timestamp;
  687. pls->id3_offset = 0;
  688. }
  689. if (!pls->id3_found) {
  690. /* initial ID3 tags */
  691. av_assert0(!pls->id3_deferred_extra);
  692. pls->id3_found = 1;
  693. /* get picture attachment and set text metadata */
  694. if (pls->ctx->nb_streams)
  695. ff_id3v2_parse_apic(pls->ctx, &extra_meta);
  696. else
  697. /* demuxer not yet opened, defer picture attachment */
  698. pls->id3_deferred_extra = extra_meta;
  699. av_dict_copy(&pls->ctx->metadata, metadata, 0);
  700. pls->id3_initial = metadata;
  701. } else {
  702. if (!pls->id3_changed && id3_has_changed_values(pls, metadata, apic)) {
  703. avpriv_report_missing_feature(pls->ctx, "Changing ID3 metadata in HLS audio elementary stream");
  704. pls->id3_changed = 1;
  705. }
  706. av_dict_free(&metadata);
  707. }
  708. if (!pls->id3_deferred_extra)
  709. ff_id3v2_free_extra_meta(&extra_meta);
  710. }
  711. /* Intercept and handle ID3 tags between URLContext and AVIOContext */
  712. static void intercept_id3(struct playlist *pls, uint8_t *buf,
  713. int buf_size, int *len)
  714. {
  715. /* intercept id3 tags, we do not want to pass them to the raw
  716. * demuxer on all segment switches */
  717. int bytes;
  718. int id3_buf_pos = 0;
  719. int fill_buf = 0;
  720. /* gather all the id3 tags */
  721. while (1) {
  722. /* see if we can retrieve enough data for ID3 header */
  723. if (*len < ID3v2_HEADER_SIZE && buf_size >= ID3v2_HEADER_SIZE) {
  724. bytes = read_from_url(pls, buf + *len, ID3v2_HEADER_SIZE - *len, READ_COMPLETE);
  725. if (bytes > 0) {
  726. if (bytes == ID3v2_HEADER_SIZE - *len)
  727. /* no EOF yet, so fill the caller buffer again after
  728. * we have stripped the ID3 tags */
  729. fill_buf = 1;
  730. *len += bytes;
  731. } else if (*len <= 0) {
  732. /* error/EOF */
  733. *len = bytes;
  734. fill_buf = 0;
  735. }
  736. }
  737. if (*len < ID3v2_HEADER_SIZE)
  738. break;
  739. if (ff_id3v2_match(buf, ID3v2_DEFAULT_MAGIC)) {
  740. struct segment *seg = pls->segments[pls->cur_seq_no - pls->start_seq_no];
  741. int64_t maxsize = seg->size >= 0 ? seg->size : 1024*1024;
  742. int taglen = ff_id3v2_tag_len(buf);
  743. int tag_got_bytes = FFMIN(taglen, *len);
  744. int remaining = taglen - tag_got_bytes;
  745. if (taglen > maxsize) {
  746. av_log(pls->ctx, AV_LOG_ERROR, "Too large HLS ID3 tag (%d > %"PRId64" bytes)\n",
  747. taglen, maxsize);
  748. break;
  749. }
  750. /*
  751. * Copy the id3 tag to our temporary id3 buffer.
  752. * We could read a small id3 tag directly without memcpy, but
  753. * we would still need to copy the large tags, and handling
  754. * both of those cases together with the possibility for multiple
  755. * tags would make the handling a bit complex.
  756. */
  757. pls->id3_buf = av_fast_realloc(pls->id3_buf, &pls->id3_buf_size, id3_buf_pos + taglen);
  758. if (!pls->id3_buf)
  759. break;
  760. memcpy(pls->id3_buf + id3_buf_pos, buf, tag_got_bytes);
  761. id3_buf_pos += tag_got_bytes;
  762. /* strip the intercepted bytes */
  763. *len -= tag_got_bytes;
  764. memmove(buf, buf + tag_got_bytes, *len);
  765. av_log(pls->ctx, AV_LOG_DEBUG, "Stripped %d HLS ID3 bytes\n", tag_got_bytes);
  766. if (remaining > 0) {
  767. /* read the rest of the tag in */
  768. if (read_from_url(pls, pls->id3_buf + id3_buf_pos, remaining, READ_COMPLETE) != remaining)
  769. break;
  770. id3_buf_pos += remaining;
  771. av_log(pls->ctx, AV_LOG_DEBUG, "Stripped additional %d HLS ID3 bytes\n", remaining);
  772. }
  773. } else {
  774. /* no more ID3 tags */
  775. break;
  776. }
  777. }
  778. /* re-fill buffer for the caller unless EOF */
  779. if (*len >= 0 && (fill_buf || *len == 0)) {
  780. bytes = read_from_url(pls, buf + *len, buf_size - *len, READ_NORMAL);
  781. /* ignore error if we already had some data */
  782. if (bytes >= 0)
  783. *len += bytes;
  784. else if (*len == 0)
  785. *len = bytes;
  786. }
  787. if (pls->id3_buf) {
  788. /* Now parse all the ID3 tags */
  789. AVIOContext id3ioctx;
  790. ffio_init_context(&id3ioctx, pls->id3_buf, id3_buf_pos, 0, NULL, NULL, NULL, NULL);
  791. handle_id3(&id3ioctx, pls);
  792. }
  793. if (pls->is_id3_timestamped == -1)
  794. pls->is_id3_timestamped = (pls->id3_mpegts_timestamp != AV_NOPTS_VALUE);
  795. }
  796. static int open_input(HLSContext *c, struct playlist *pls)
  797. {
  798. AVDictionary *opts = NULL;
  799. AVDictionary *opts2 = NULL;
  800. int ret;
  801. struct segment *seg = pls->segments[pls->cur_seq_no - pls->start_seq_no];
  802. // broker prior HTTP options that should be consistent across requests
  803. av_dict_set(&opts, "user-agent", c->user_agent, 0);
  804. av_dict_set(&opts, "cookies", c->cookies, 0);
  805. av_dict_set(&opts, "headers", c->headers, 0);
  806. av_dict_set(&opts, "seekable", "0", 0);
  807. // Same opts for key request (ffurl_open mutilates the opts so it cannot be used twice)
  808. av_dict_copy(&opts2, opts, 0);
  809. if (seg->size >= 0) {
  810. /* try to restrict the HTTP request to the part we want
  811. * (if this is in fact a HTTP request) */
  812. char offset[24] = { 0 };
  813. char end_offset[24] = { 0 };
  814. snprintf(offset, sizeof(offset) - 1, "%"PRId64,
  815. seg->url_offset);
  816. snprintf(end_offset, sizeof(end_offset) - 1, "%"PRId64,
  817. seg->url_offset + seg->size);
  818. av_dict_set(&opts, "offset", offset, 0);
  819. av_dict_set(&opts, "end_offset", end_offset, 0);
  820. }
  821. av_log(pls->parent, AV_LOG_VERBOSE, "HLS request for url '%s', offset %"PRId64", playlist %d\n",
  822. seg->url, seg->url_offset, pls->index);
  823. if (seg->key_type == KEY_NONE) {
  824. ret = ffurl_open(&pls->input, seg->url, AVIO_FLAG_READ,
  825. &pls->parent->interrupt_callback, &opts);
  826. } else if (seg->key_type == KEY_AES_128) {
  827. char iv[33], key[33], url[MAX_URL_SIZE];
  828. if (strcmp(seg->key, pls->key_url)) {
  829. URLContext *uc;
  830. if (ffurl_open(&uc, seg->key, AVIO_FLAG_READ,
  831. &pls->parent->interrupt_callback, &opts2) == 0) {
  832. if (ffurl_read_complete(uc, pls->key, sizeof(pls->key))
  833. != sizeof(pls->key)) {
  834. av_log(NULL, AV_LOG_ERROR, "Unable to read key file %s\n",
  835. seg->key);
  836. }
  837. ffurl_close(uc);
  838. } else {
  839. av_log(NULL, AV_LOG_ERROR, "Unable to open key file %s\n",
  840. seg->key);
  841. }
  842. av_strlcpy(pls->key_url, seg->key, sizeof(pls->key_url));
  843. }
  844. ff_data_to_hex(iv, seg->iv, sizeof(seg->iv), 0);
  845. ff_data_to_hex(key, pls->key, sizeof(pls->key), 0);
  846. iv[32] = key[32] = '\0';
  847. if (strstr(seg->url, "://"))
  848. snprintf(url, sizeof(url), "crypto+%s", seg->url);
  849. else
  850. snprintf(url, sizeof(url), "crypto:%s", seg->url);
  851. if ((ret = ffurl_alloc(&pls->input, url, AVIO_FLAG_READ,
  852. &pls->parent->interrupt_callback)) < 0)
  853. goto cleanup;
  854. av_opt_set(pls->input->priv_data, "key", key, 0);
  855. av_opt_set(pls->input->priv_data, "iv", iv, 0);
  856. if ((ret = ffurl_connect(pls->input, &opts)) < 0) {
  857. ffurl_close(pls->input);
  858. pls->input = NULL;
  859. goto cleanup;
  860. }
  861. ret = 0;
  862. }
  863. else
  864. ret = AVERROR(ENOSYS);
  865. /* Seek to the requested position. If this was a HTTP request, the offset
  866. * should already be where want it to, but this allows e.g. local testing
  867. * without a HTTP server. */
  868. if (ret == 0 && seg->key_type == KEY_NONE) {
  869. int seekret = ffurl_seek(pls->input, seg->url_offset, SEEK_SET);
  870. if (seekret < 0) {
  871. av_log(pls->parent, AV_LOG_ERROR, "Unable to seek to offset %"PRId64" of HLS segment '%s'\n", seg->url_offset, seg->url);
  872. ret = seekret;
  873. ffurl_close(pls->input);
  874. pls->input = NULL;
  875. }
  876. }
  877. cleanup:
  878. av_dict_free(&opts);
  879. av_dict_free(&opts2);
  880. pls->cur_seg_offset = 0;
  881. return ret;
  882. }
  883. static int64_t default_reload_interval(struct playlist *pls)
  884. {
  885. return pls->n_segments > 0 ?
  886. pls->segments[pls->n_segments - 1]->duration :
  887. pls->target_duration;
  888. }
  889. static int read_data(void *opaque, uint8_t *buf, int buf_size)
  890. {
  891. struct playlist *v = opaque;
  892. HLSContext *c = v->parent->priv_data;
  893. int ret, i;
  894. int just_opened = 0;
  895. restart:
  896. if (!v->needed)
  897. return AVERROR_EOF;
  898. if (!v->input) {
  899. int64_t reload_interval;
  900. /* Check that the playlist is still needed before opening a new
  901. * segment. */
  902. if (v->ctx && v->ctx->nb_streams &&
  903. v->parent->nb_streams >= v->stream_offset + v->ctx->nb_streams) {
  904. v->needed = 0;
  905. for (i = v->stream_offset; i < v->stream_offset + v->ctx->nb_streams;
  906. i++) {
  907. if (v->parent->streams[i]->discard < AVDISCARD_ALL)
  908. v->needed = 1;
  909. }
  910. }
  911. if (!v->needed) {
  912. av_log(v->parent, AV_LOG_INFO, "No longer receiving playlist %d\n",
  913. v->index);
  914. return AVERROR_EOF;
  915. }
  916. /* If this is a live stream and the reload interval has elapsed since
  917. * the last playlist reload, reload the playlists now. */
  918. reload_interval = default_reload_interval(v);
  919. reload:
  920. if (!v->finished &&
  921. av_gettime() - v->last_load_time >= reload_interval) {
  922. if ((ret = parse_playlist(c, v->url, v, NULL)) < 0) {
  923. av_log(v->parent, AV_LOG_WARNING, "Failed to reload playlist %d\n",
  924. v->index);
  925. return ret;
  926. }
  927. /* If we need to reload the playlist again below (if
  928. * there's still no more segments), switch to a reload
  929. * interval of half the target duration. */
  930. reload_interval = v->target_duration / 2;
  931. }
  932. if (v->cur_seq_no < v->start_seq_no) {
  933. av_log(NULL, AV_LOG_WARNING,
  934. "skipping %d segments ahead, expired from playlists\n",
  935. v->start_seq_no - v->cur_seq_no);
  936. v->cur_seq_no = v->start_seq_no;
  937. }
  938. if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
  939. if (v->finished)
  940. return AVERROR_EOF;
  941. while (av_gettime() - v->last_load_time < reload_interval) {
  942. if (ff_check_interrupt(c->interrupt_callback))
  943. return AVERROR_EXIT;
  944. av_usleep(100*1000);
  945. }
  946. /* Enough time has elapsed since the last reload */
  947. goto reload;
  948. }
  949. ret = open_input(c, v);
  950. if (ret < 0) {
  951. av_log(v->parent, AV_LOG_WARNING, "Failed to open segment of playlist %d\n",
  952. v->index);
  953. return ret;
  954. }
  955. just_opened = 1;
  956. }
  957. ret = read_from_url(v, buf, buf_size, READ_NORMAL);
  958. if (ret > 0) {
  959. if (just_opened && v->is_id3_timestamped != 0) {
  960. /* Intercept ID3 tags here, elementary audio streams are required
  961. * to convey timestamps using them in the beginning of each segment. */
  962. intercept_id3(v, buf, buf_size, &ret);
  963. }
  964. return ret;
  965. }
  966. ffurl_close(v->input);
  967. v->input = NULL;
  968. v->cur_seq_no++;
  969. c->cur_seq_no = v->cur_seq_no;
  970. goto restart;
  971. }
  972. static int playlist_in_multiple_variants(HLSContext *c, struct playlist *pls)
  973. {
  974. int variant_count = 0;
  975. int i, j;
  976. for (i = 0; i < c->n_variants && variant_count < 2; i++) {
  977. struct variant *v = c->variants[i];
  978. for (j = 0; j < v->n_playlists; j++) {
  979. if (v->playlists[j] == pls) {
  980. variant_count++;
  981. break;
  982. }
  983. }
  984. }
  985. return variant_count >= 2;
  986. }
  987. static void add_renditions_to_variant(HLSContext *c, struct variant *var,
  988. enum AVMediaType type, const char *group_id)
  989. {
  990. int i;
  991. for (i = 0; i < c->n_renditions; i++) {
  992. struct rendition *rend = c->renditions[i];
  993. if (rend->type == type && !strcmp(rend->group_id, group_id)) {
  994. if (rend->playlist)
  995. /* rendition is an external playlist
  996. * => add the playlist to the variant */
  997. dynarray_add(&var->playlists, &var->n_playlists, rend->playlist);
  998. else
  999. /* rendition is part of the variant main Media Playlist
  1000. * => add the rendition to the main Media Playlist */
  1001. dynarray_add(&var->playlists[0]->renditions,
  1002. &var->playlists[0]->n_renditions,
  1003. rend);
  1004. }
  1005. }
  1006. }
  1007. static void add_metadata_from_renditions(AVFormatContext *s, struct playlist *pls,
  1008. enum AVMediaType type)
  1009. {
  1010. int rend_idx = 0;
  1011. int i;
  1012. for (i = 0; i < pls->ctx->nb_streams; i++) {
  1013. AVStream *st = s->streams[pls->stream_offset + i];
  1014. if (st->codec->codec_type != type)
  1015. continue;
  1016. for (; rend_idx < pls->n_renditions; rend_idx++) {
  1017. struct rendition *rend = pls->renditions[rend_idx];
  1018. if (rend->type != type)
  1019. continue;
  1020. if (rend->language[0])
  1021. av_dict_set(&st->metadata, "language", rend->language, 0);
  1022. if (rend->name[0])
  1023. av_dict_set(&st->metadata, "comment", rend->name, 0);
  1024. st->disposition |= rend->disposition;
  1025. }
  1026. if (rend_idx >=pls->n_renditions)
  1027. break;
  1028. }
  1029. }
  1030. /* if timestamp was in valid range: returns 1 and sets seq_no
  1031. * if not: returns 0 and sets seq_no to closest segment */
  1032. static int find_timestamp_in_playlist(HLSContext *c, struct playlist *pls,
  1033. int64_t timestamp, int *seq_no)
  1034. {
  1035. int i;
  1036. int64_t pos = c->first_timestamp == AV_NOPTS_VALUE ?
  1037. 0 : c->first_timestamp;
  1038. if (timestamp < pos) {
  1039. *seq_no = pls->start_seq_no;
  1040. return 0;
  1041. }
  1042. for (i = 0; i < pls->n_segments; i++) {
  1043. int64_t diff = pos + pls->segments[i]->duration - timestamp;
  1044. if (diff > 0) {
  1045. *seq_no = pls->start_seq_no + i;
  1046. return 1;
  1047. }
  1048. pos += pls->segments[i]->duration;
  1049. }
  1050. *seq_no = pls->start_seq_no + pls->n_segments - 1;
  1051. return 0;
  1052. }
  1053. static int select_cur_seq_no(HLSContext *c, struct playlist *pls)
  1054. {
  1055. int seq_no;
  1056. if (!pls->finished && !c->first_packet &&
  1057. av_gettime() - pls->last_load_time >= default_reload_interval(pls))
  1058. /* reload the playlist since it was suspended */
  1059. parse_playlist(c, pls->url, pls, NULL);
  1060. /* If playback is already in progress (we are just selecting a new
  1061. * playlist) and this is a complete file, find the matching segment
  1062. * by counting durations. */
  1063. if (pls->finished && c->cur_timestamp != AV_NOPTS_VALUE) {
  1064. find_timestamp_in_playlist(c, pls, c->cur_timestamp, &seq_no);
  1065. return seq_no;
  1066. }
  1067. if (!pls->finished) {
  1068. if (!c->first_packet && /* we are doing a segment selection during playback */
  1069. c->cur_seq_no >= pls->start_seq_no &&
  1070. c->cur_seq_no < pls->start_seq_no + pls->n_segments)
  1071. /* While spec 3.4.3 says that we cannot assume anything about the
  1072. * content at the same sequence number on different playlists,
  1073. * in practice this seems to work and doing it otherwise would
  1074. * require us to download a segment to inspect its timestamps. */
  1075. return c->cur_seq_no;
  1076. /* If this is a live stream with more than 3 segments, start at the
  1077. * third last segment. */
  1078. if (pls->n_segments > 3)
  1079. return pls->start_seq_no + pls->n_segments - 3;
  1080. }
  1081. /* Otherwise just start on the first segment. */
  1082. return pls->start_seq_no;
  1083. }
  1084. static int hls_read_header(AVFormatContext *s)
  1085. {
  1086. URLContext *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
  1087. HLSContext *c = s->priv_data;
  1088. int ret = 0, i, j, stream_offset = 0;
  1089. c->interrupt_callback = &s->interrupt_callback;
  1090. c->first_packet = 1;
  1091. c->first_timestamp = AV_NOPTS_VALUE;
  1092. c->cur_timestamp = AV_NOPTS_VALUE;
  1093. // if the URL context is good, read important options we must broker later
  1094. if (u && u->prot->priv_data_class) {
  1095. // get the previous user agent & set back to null if string size is zero
  1096. av_freep(&c->user_agent);
  1097. av_opt_get(u->priv_data, "user-agent", 0, (uint8_t**)&(c->user_agent));
  1098. if (c->user_agent && !strlen(c->user_agent))
  1099. av_freep(&c->user_agent);
  1100. // get the previous cookies & set back to null if string size is zero
  1101. av_freep(&c->cookies);
  1102. av_opt_get(u->priv_data, "cookies", 0, (uint8_t**)&(c->cookies));
  1103. if (c->cookies && !strlen(c->cookies))
  1104. av_freep(&c->cookies);
  1105. // get the previous headers & set back to null if string size is zero
  1106. av_freep(&c->headers);
  1107. av_opt_get(u->priv_data, "headers", 0, (uint8_t**)&(c->headers));
  1108. if (c->headers && !strlen(c->headers))
  1109. av_freep(&c->headers);
  1110. }
  1111. if ((ret = parse_playlist(c, s->filename, NULL, s->pb)) < 0)
  1112. goto fail;
  1113. if (c->n_variants == 0) {
  1114. av_log(NULL, AV_LOG_WARNING, "Empty playlist\n");
  1115. ret = AVERROR_EOF;
  1116. goto fail;
  1117. }
  1118. /* If the playlist only contained playlists (Master Playlist),
  1119. * parse each individual playlist. */
  1120. if (c->n_playlists > 1 || c->playlists[0]->n_segments == 0) {
  1121. for (i = 0; i < c->n_playlists; i++) {
  1122. struct playlist *pls = c->playlists[i];
  1123. if ((ret = parse_playlist(c, pls->url, pls, NULL)) < 0)
  1124. goto fail;
  1125. }
  1126. }
  1127. if (c->variants[0]->playlists[0]->n_segments == 0) {
  1128. av_log(NULL, AV_LOG_WARNING, "Empty playlist\n");
  1129. ret = AVERROR_EOF;
  1130. goto fail;
  1131. }
  1132. /* If this isn't a live stream, calculate the total duration of the
  1133. * stream. */
  1134. if (c->variants[0]->playlists[0]->finished) {
  1135. int64_t duration = 0;
  1136. for (i = 0; i < c->variants[0]->playlists[0]->n_segments; i++)
  1137. duration += c->variants[0]->playlists[0]->segments[i]->duration;
  1138. s->duration = duration;
  1139. }
  1140. /* Associate renditions with variants */
  1141. for (i = 0; i < c->n_variants; i++) {
  1142. struct variant *var = c->variants[i];
  1143. if (var->audio_group[0])
  1144. add_renditions_to_variant(c, var, AVMEDIA_TYPE_AUDIO, var->audio_group);
  1145. if (var->video_group[0])
  1146. add_renditions_to_variant(c, var, AVMEDIA_TYPE_VIDEO, var->video_group);
  1147. if (var->subtitles_group[0])
  1148. add_renditions_to_variant(c, var, AVMEDIA_TYPE_SUBTITLE, var->subtitles_group);
  1149. }
  1150. /* Open the demuxer for each playlist */
  1151. for (i = 0; i < c->n_playlists; i++) {
  1152. struct playlist *pls = c->playlists[i];
  1153. AVInputFormat *in_fmt = NULL;
  1154. if (pls->n_segments == 0)
  1155. continue;
  1156. if (!(pls->ctx = avformat_alloc_context())) {
  1157. ret = AVERROR(ENOMEM);
  1158. goto fail;
  1159. }
  1160. pls->index = i;
  1161. pls->needed = 1;
  1162. pls->parent = s;
  1163. pls->cur_seq_no = select_cur_seq_no(c, pls);
  1164. pls->read_buffer = av_malloc(INITIAL_BUFFER_SIZE);
  1165. ffio_init_context(&pls->pb, pls->read_buffer, INITIAL_BUFFER_SIZE, 0, pls,
  1166. read_data, NULL, NULL);
  1167. pls->pb.seekable = 0;
  1168. ret = av_probe_input_buffer(&pls->pb, &in_fmt, pls->segments[0]->url,
  1169. NULL, 0, 0);
  1170. if (ret < 0) {
  1171. /* Free the ctx - it isn't initialized properly at this point,
  1172. * so avformat_close_input shouldn't be called. If
  1173. * avformat_open_input fails below, it frees and zeros the
  1174. * context, so it doesn't need any special treatment like this. */
  1175. av_log(s, AV_LOG_ERROR, "Error when loading first segment '%s'\n", pls->segments[0]->url);
  1176. avformat_free_context(pls->ctx);
  1177. pls->ctx = NULL;
  1178. goto fail;
  1179. }
  1180. pls->ctx->pb = &pls->pb;
  1181. pls->stream_offset = stream_offset;
  1182. ret = avformat_open_input(&pls->ctx, pls->segments[0]->url, in_fmt, NULL);
  1183. if (ret < 0)
  1184. goto fail;
  1185. if (pls->id3_deferred_extra && pls->ctx->nb_streams == 1) {
  1186. ff_id3v2_parse_apic(pls->ctx, &pls->id3_deferred_extra);
  1187. avformat_queue_attached_pictures(pls->ctx);
  1188. ff_id3v2_free_extra_meta(&pls->id3_deferred_extra);
  1189. pls->id3_deferred_extra = NULL;
  1190. }
  1191. pls->ctx->ctx_flags &= ~AVFMTCTX_NOHEADER;
  1192. ret = avformat_find_stream_info(pls->ctx, NULL);
  1193. if (ret < 0)
  1194. goto fail;
  1195. if (pls->is_id3_timestamped == -1)
  1196. av_log(s, AV_LOG_WARNING, "No expected HTTP requests have been made\n");
  1197. /* Create new AVStreams for each stream in this playlist */
  1198. for (j = 0; j < pls->ctx->nb_streams; j++) {
  1199. AVStream *st = avformat_new_stream(s, NULL);
  1200. AVStream *ist = pls->ctx->streams[j];
  1201. if (!st) {
  1202. ret = AVERROR(ENOMEM);
  1203. goto fail;
  1204. }
  1205. st->id = i;
  1206. avcodec_copy_context(st->codec, pls->ctx->streams[j]->codec);
  1207. if (pls->is_id3_timestamped) /* custom timestamps via id3 */
  1208. avpriv_set_pts_info(st, 33, 1, MPEG_TIME_BASE);
  1209. else
  1210. avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
  1211. }
  1212. add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_AUDIO);
  1213. add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_VIDEO);
  1214. add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_SUBTITLE);
  1215. stream_offset += pls->ctx->nb_streams;
  1216. }
  1217. /* Create a program for each variant */
  1218. for (i = 0; i < c->n_variants; i++) {
  1219. struct variant *v = c->variants[i];
  1220. char bitrate_str[20];
  1221. AVProgram *program;
  1222. snprintf(bitrate_str, sizeof(bitrate_str), "%d", v->bandwidth);
  1223. program = av_new_program(s, i);
  1224. if (!program)
  1225. goto fail;
  1226. av_dict_set(&program->metadata, "variant_bitrate", bitrate_str, 0);
  1227. for (j = 0; j < v->n_playlists; j++) {
  1228. struct playlist *pls = v->playlists[j];
  1229. int is_shared = playlist_in_multiple_variants(c, pls);
  1230. int k;
  1231. for (k = 0; k < pls->ctx->nb_streams; k++) {
  1232. struct AVStream *st = s->streams[pls->stream_offset + k];
  1233. ff_program_add_stream_index(s, i, pls->stream_offset + k);
  1234. /* Set variant_bitrate for streams unique to this variant */
  1235. if (!is_shared && v->bandwidth)
  1236. av_dict_set(&st->metadata, "variant_bitrate", bitrate_str, 0);
  1237. }
  1238. }
  1239. }
  1240. return 0;
  1241. fail:
  1242. free_playlist_list(c);
  1243. free_variant_list(c);
  1244. free_rendition_list(c);
  1245. return ret;
  1246. }
  1247. static int recheck_discard_flags(AVFormatContext *s, int first)
  1248. {
  1249. HLSContext *c = s->priv_data;
  1250. int i, changed = 0;
  1251. /* Check if any new streams are needed */
  1252. for (i = 0; i < c->n_playlists; i++)
  1253. c->playlists[i]->cur_needed = 0;
  1254. for (i = 0; i < s->nb_streams; i++) {
  1255. AVStream *st = s->streams[i];
  1256. struct playlist *pls = c->playlists[s->streams[i]->id];
  1257. if (st->discard < AVDISCARD_ALL)
  1258. pls->cur_needed = 1;
  1259. }
  1260. for (i = 0; i < c->n_playlists; i++) {
  1261. struct playlist *pls = c->playlists[i];
  1262. if (pls->cur_needed && !pls->needed) {
  1263. pls->needed = 1;
  1264. changed = 1;
  1265. pls->cur_seq_no = select_cur_seq_no(c, pls);
  1266. pls->pb.eof_reached = 0;
  1267. if (c->cur_timestamp != AV_NOPTS_VALUE) {
  1268. /* catch up */
  1269. pls->seek_timestamp = c->cur_timestamp;
  1270. pls->seek_flags = AVSEEK_FLAG_ANY;
  1271. pls->seek_stream_index = -1;
  1272. }
  1273. av_log(s, AV_LOG_INFO, "Now receiving playlist %d, segment %d\n", i, pls->cur_seq_no);
  1274. } else if (first && !pls->cur_needed && pls->needed) {
  1275. if (pls->input)
  1276. ffurl_close(pls->input);
  1277. pls->input = NULL;
  1278. pls->needed = 0;
  1279. changed = 1;
  1280. av_log(s, AV_LOG_INFO, "No longer receiving playlist %d\n", i);
  1281. }
  1282. }
  1283. return changed;
  1284. }
  1285. static void fill_timing_for_id3_timestamped_stream(struct playlist *pls)
  1286. {
  1287. if (pls->id3_offset >= 0) {
  1288. pls->pkt.dts = pls->id3_mpegts_timestamp +
  1289. av_rescale_q(pls->id3_offset,
  1290. pls->ctx->streams[pls->pkt.stream_index]->time_base,
  1291. MPEG_TIME_BASE_Q);
  1292. if (pls->pkt.duration)
  1293. pls->id3_offset += pls->pkt.duration;
  1294. else
  1295. pls->id3_offset = -1;
  1296. } else {
  1297. /* there have been packets with unknown duration
  1298. * since the last id3 tag, should not normally happen */
  1299. pls->pkt.dts = AV_NOPTS_VALUE;
  1300. }
  1301. if (pls->pkt.duration)
  1302. pls->pkt.duration = av_rescale_q(pls->pkt.duration,
  1303. pls->ctx->streams[pls->pkt.stream_index]->time_base,
  1304. MPEG_TIME_BASE_Q);
  1305. pls->pkt.pts = AV_NOPTS_VALUE;
  1306. }
  1307. static AVRational get_timebase(struct playlist *pls)
  1308. {
  1309. if (pls->is_id3_timestamped)
  1310. return MPEG_TIME_BASE_Q;
  1311. return pls->ctx->streams[pls->pkt.stream_index]->time_base;
  1312. }
  1313. static int compare_ts_with_wrapdetect(int64_t ts_a, struct playlist *pls_a,
  1314. int64_t ts_b, struct playlist *pls_b)
  1315. {
  1316. int64_t scaled_ts_a = av_rescale_q(ts_a, get_timebase(pls_a), MPEG_TIME_BASE_Q);
  1317. int64_t scaled_ts_b = av_rescale_q(ts_b, get_timebase(pls_b), MPEG_TIME_BASE_Q);
  1318. return av_compare_mod(scaled_ts_a, scaled_ts_b, 1LL << 33);
  1319. }
  1320. static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
  1321. {
  1322. HLSContext *c = s->priv_data;
  1323. int ret, i, minplaylist = -1;
  1324. recheck_discard_flags(s, c->first_packet);
  1325. for (i = 0; i < c->n_playlists; i++) {
  1326. struct playlist *pls = c->playlists[i];
  1327. /* Make sure we've got one buffered packet from each open playlist
  1328. * stream */
  1329. if (pls->needed && !pls->pkt.data) {
  1330. while (1) {
  1331. int64_t ts_diff;
  1332. AVRational tb;
  1333. ret = av_read_frame(pls->ctx, &pls->pkt);
  1334. if (ret < 0) {
  1335. if (!url_feof(&pls->pb) && ret != AVERROR_EOF)
  1336. return ret;
  1337. reset_packet(&pls->pkt);
  1338. break;
  1339. } else {
  1340. /* stream_index check prevents matching picture attachments etc. */
  1341. if (pls->is_id3_timestamped && pls->pkt.stream_index == 0) {
  1342. /* audio elementary streams are id3 timestamped */
  1343. fill_timing_for_id3_timestamped_stream(pls);
  1344. }
  1345. if (c->first_timestamp == AV_NOPTS_VALUE &&
  1346. pls->pkt.dts != AV_NOPTS_VALUE)
  1347. c->first_timestamp = av_rescale_q(pls->pkt.dts,
  1348. get_timebase(pls), AV_TIME_BASE_Q);
  1349. }
  1350. if (pls->seek_timestamp == AV_NOPTS_VALUE)
  1351. break;
  1352. if (pls->seek_stream_index < 0 ||
  1353. pls->seek_stream_index == pls->pkt.stream_index) {
  1354. if (pls->pkt.dts == AV_NOPTS_VALUE) {
  1355. pls->seek_timestamp = AV_NOPTS_VALUE;
  1356. break;
  1357. }
  1358. tb = get_timebase(pls);
  1359. ts_diff = av_rescale_rnd(pls->pkt.dts, AV_TIME_BASE,
  1360. tb.den, AV_ROUND_DOWN) -
  1361. pls->seek_timestamp;
  1362. if (ts_diff >= 0 && (pls->seek_flags & AVSEEK_FLAG_ANY ||
  1363. pls->pkt.flags & AV_PKT_FLAG_KEY)) {
  1364. pls->seek_timestamp = AV_NOPTS_VALUE;
  1365. break;
  1366. }
  1367. }
  1368. av_free_packet(&pls->pkt);
  1369. reset_packet(&pls->pkt);
  1370. }
  1371. }
  1372. /* Check if this stream has the packet with the lowest dts */
  1373. if (pls->pkt.data) {
  1374. struct playlist *minpls = minplaylist < 0 ?
  1375. NULL : c->playlists[minplaylist];
  1376. if (minplaylist < 0) {
  1377. minplaylist = i;
  1378. } else {
  1379. int64_t dts = pls->pkt.dts;
  1380. int64_t mindts = minpls->pkt.dts;
  1381. if (dts == AV_NOPTS_VALUE ||
  1382. (mindts != AV_NOPTS_VALUE && compare_ts_with_wrapdetect(dts, pls, mindts, minpls) < 0))
  1383. minplaylist = i;
  1384. }
  1385. }
  1386. }
  1387. /* If we got a packet, return it */
  1388. if (minplaylist >= 0) {
  1389. struct playlist *pls = c->playlists[minplaylist];
  1390. *pkt = pls->pkt;
  1391. pkt->stream_index += pls->stream_offset;
  1392. reset_packet(&c->playlists[minplaylist]->pkt);
  1393. if (pkt->dts != AV_NOPTS_VALUE)
  1394. c->cur_timestamp = av_rescale_q(pkt->dts,
  1395. pls->ctx->streams[pls->pkt.stream_index]->time_base,
  1396. AV_TIME_BASE_Q);
  1397. return 0;
  1398. }
  1399. return AVERROR_EOF;
  1400. }
  1401. static int hls_close(AVFormatContext *s)
  1402. {
  1403. HLSContext *c = s->priv_data;
  1404. free_playlist_list(c);
  1405. free_variant_list(c);
  1406. free_rendition_list(c);
  1407. return 0;
  1408. }
  1409. static int hls_read_seek(AVFormatContext *s, int stream_index,
  1410. int64_t timestamp, int flags)
  1411. {
  1412. HLSContext *c = s->priv_data;
  1413. struct playlist *seek_pls = NULL;
  1414. int i, seq_no;
  1415. int64_t first_timestamp, seek_timestamp, duration;
  1416. if ((flags & AVSEEK_FLAG_BYTE) ||
  1417. !(c->variants[0]->playlists[0]->finished || c->variants[0]->playlists[0]->type == PLS_TYPE_EVENT))
  1418. return AVERROR(ENOSYS);
  1419. first_timestamp = c->first_timestamp == AV_NOPTS_VALUE ?
  1420. 0 : c->first_timestamp;
  1421. seek_timestamp = av_rescale_rnd(timestamp, AV_TIME_BASE,
  1422. s->streams[stream_index]->time_base.den,
  1423. flags & AVSEEK_FLAG_BACKWARD ?
  1424. AV_ROUND_DOWN : AV_ROUND_UP);
  1425. duration = s->duration == AV_NOPTS_VALUE ?
  1426. 0 : s->duration;
  1427. if (0 < duration && duration < seek_timestamp - first_timestamp)
  1428. return AVERROR(EIO);
  1429. /* find the playlist with the specified stream */
  1430. for (i = 0; i < c->n_playlists; i++) {
  1431. struct playlist *pls = c->playlists[i];
  1432. if (stream_index >= pls->stream_offset &&
  1433. stream_index - pls->stream_offset < pls->ctx->nb_streams) {
  1434. seek_pls = pls;
  1435. break;
  1436. }
  1437. }
  1438. /* check if the timestamp is valid for the playlist with the
  1439. * specified stream index */
  1440. if (!seek_pls || !find_timestamp_in_playlist(c, seek_pls, seek_timestamp, &seq_no))
  1441. return AVERROR(EIO);
  1442. /* set segment now so we do not need to search again below */
  1443. seek_pls->cur_seq_no = seq_no;
  1444. seek_pls->seek_stream_index = stream_index - seek_pls->stream_offset;
  1445. for (i = 0; i < c->n_playlists; i++) {
  1446. /* Reset reading */
  1447. struct playlist *pls = c->playlists[i];
  1448. if (pls->input) {
  1449. ffurl_close(pls->input);
  1450. pls->input = NULL;
  1451. }
  1452. av_free_packet(&pls->pkt);
  1453. reset_packet(&pls->pkt);
  1454. pls->pb.eof_reached = 0;
  1455. /* Clear any buffered data */
  1456. pls->pb.buf_end = pls->pb.buf_ptr = pls->pb.buffer;
  1457. /* Reset the pos, to let the mpegts demuxer know we've seeked. */
  1458. pls->pb.pos = 0;
  1459. /* Flush the packet queue of the subdemuxer. */
  1460. ff_read_frame_flush(pls->ctx);
  1461. pls->seek_timestamp = seek_timestamp;
  1462. pls->seek_flags = flags;
  1463. if (pls != seek_pls) {
  1464. /* set closest segment seq_no for playlists not handled above */
  1465. find_timestamp_in_playlist(c, pls, seek_timestamp, &pls->cur_seq_no);
  1466. /* seek the playlist to the given position without taking
  1467. * keyframes into account since this playlist does not have the
  1468. * specified stream where we should look for the keyframes */
  1469. pls->seek_stream_index = -1;
  1470. pls->seek_flags |= AVSEEK_FLAG_ANY;
  1471. }
  1472. }
  1473. c->cur_timestamp = seek_timestamp;
  1474. return 0;
  1475. }
  1476. static int hls_probe(AVProbeData *p)
  1477. {
  1478. /* Require #EXTM3U at the start, and either one of the ones below
  1479. * somewhere for a proper match. */
  1480. if (strncmp(p->buf, "#EXTM3U", 7))
  1481. return 0;
  1482. if (strstr(p->buf, "#EXT-X-STREAM-INF:") ||
  1483. strstr(p->buf, "#EXT-X-TARGETDURATION:") ||
  1484. strstr(p->buf, "#EXT-X-MEDIA-SEQUENCE:"))
  1485. return AVPROBE_SCORE_MAX;
  1486. return 0;
  1487. }
  1488. AVInputFormat ff_hls_demuxer = {
  1489. .name = "hls,applehttp",
  1490. .long_name = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming"),
  1491. .priv_data_size = sizeof(HLSContext),
  1492. .read_probe = hls_probe,
  1493. .read_header = hls_read_header,
  1494. .read_packet = hls_read_packet,
  1495. .read_close = hls_close,
  1496. .read_seek = hls_read_seek,
  1497. };