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.

1719 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_freep(&pls->segments[i]->key);
  173. av_freep(&pls->segments[i]->url);
  174. av_freep(&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_freep(&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_freep(&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 (!avio_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_relative();
  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. av_dict_set_int(&opts, "offset", seg->url_offset, 0);
  813. av_dict_set_int(&opts, "end_offset", seg->url_offset + seg->size, 0);
  814. }
  815. av_log(pls->parent, AV_LOG_VERBOSE, "HLS request for url '%s', offset %"PRId64", playlist %d\n",
  816. seg->url, seg->url_offset, pls->index);
  817. if (seg->key_type == KEY_NONE) {
  818. ret = ffurl_open(&pls->input, seg->url, AVIO_FLAG_READ,
  819. &pls->parent->interrupt_callback, &opts);
  820. } else if (seg->key_type == KEY_AES_128) {
  821. char iv[33], key[33], url[MAX_URL_SIZE];
  822. if (strcmp(seg->key, pls->key_url)) {
  823. URLContext *uc;
  824. if (ffurl_open(&uc, seg->key, AVIO_FLAG_READ,
  825. &pls->parent->interrupt_callback, &opts2) == 0) {
  826. if (ffurl_read_complete(uc, pls->key, sizeof(pls->key))
  827. != sizeof(pls->key)) {
  828. av_log(NULL, AV_LOG_ERROR, "Unable to read key file %s\n",
  829. seg->key);
  830. }
  831. ffurl_close(uc);
  832. } else {
  833. av_log(NULL, AV_LOG_ERROR, "Unable to open key file %s\n",
  834. seg->key);
  835. }
  836. av_strlcpy(pls->key_url, seg->key, sizeof(pls->key_url));
  837. }
  838. ff_data_to_hex(iv, seg->iv, sizeof(seg->iv), 0);
  839. ff_data_to_hex(key, pls->key, sizeof(pls->key), 0);
  840. iv[32] = key[32] = '\0';
  841. if (strstr(seg->url, "://"))
  842. snprintf(url, sizeof(url), "crypto+%s", seg->url);
  843. else
  844. snprintf(url, sizeof(url), "crypto:%s", seg->url);
  845. if ((ret = ffurl_alloc(&pls->input, url, AVIO_FLAG_READ,
  846. &pls->parent->interrupt_callback)) < 0)
  847. goto cleanup;
  848. av_opt_set(pls->input->priv_data, "key", key, 0);
  849. av_opt_set(pls->input->priv_data, "iv", iv, 0);
  850. if ((ret = ffurl_connect(pls->input, &opts)) < 0) {
  851. ffurl_close(pls->input);
  852. pls->input = NULL;
  853. goto cleanup;
  854. }
  855. ret = 0;
  856. }
  857. else
  858. ret = AVERROR(ENOSYS);
  859. /* Seek to the requested position. If this was a HTTP request, the offset
  860. * should already be where want it to, but this allows e.g. local testing
  861. * without a HTTP server. */
  862. if (ret == 0 && seg->key_type == KEY_NONE) {
  863. int seekret = ffurl_seek(pls->input, seg->url_offset, SEEK_SET);
  864. if (seekret < 0) {
  865. av_log(pls->parent, AV_LOG_ERROR, "Unable to seek to offset %"PRId64" of HLS segment '%s'\n", seg->url_offset, seg->url);
  866. ret = seekret;
  867. ffurl_close(pls->input);
  868. pls->input = NULL;
  869. }
  870. }
  871. cleanup:
  872. av_dict_free(&opts);
  873. av_dict_free(&opts2);
  874. pls->cur_seg_offset = 0;
  875. return ret;
  876. }
  877. static int64_t default_reload_interval(struct playlist *pls)
  878. {
  879. return pls->n_segments > 0 ?
  880. pls->segments[pls->n_segments - 1]->duration :
  881. pls->target_duration;
  882. }
  883. static int read_data(void *opaque, uint8_t *buf, int buf_size)
  884. {
  885. struct playlist *v = opaque;
  886. HLSContext *c = v->parent->priv_data;
  887. int ret, i;
  888. int just_opened = 0;
  889. restart:
  890. if (!v->needed)
  891. return AVERROR_EOF;
  892. if (!v->input) {
  893. int64_t reload_interval;
  894. /* Check that the playlist is still needed before opening a new
  895. * segment. */
  896. if (v->ctx && v->ctx->nb_streams &&
  897. v->parent->nb_streams >= v->stream_offset + v->ctx->nb_streams) {
  898. v->needed = 0;
  899. for (i = v->stream_offset; i < v->stream_offset + v->ctx->nb_streams;
  900. i++) {
  901. if (v->parent->streams[i]->discard < AVDISCARD_ALL)
  902. v->needed = 1;
  903. }
  904. }
  905. if (!v->needed) {
  906. av_log(v->parent, AV_LOG_INFO, "No longer receiving playlist %d\n",
  907. v->index);
  908. return AVERROR_EOF;
  909. }
  910. /* If this is a live stream and the reload interval has elapsed since
  911. * the last playlist reload, reload the playlists now. */
  912. reload_interval = default_reload_interval(v);
  913. reload:
  914. if (!v->finished &&
  915. av_gettime_relative() - v->last_load_time >= reload_interval) {
  916. if ((ret = parse_playlist(c, v->url, v, NULL)) < 0) {
  917. av_log(v->parent, AV_LOG_WARNING, "Failed to reload playlist %d\n",
  918. v->index);
  919. return ret;
  920. }
  921. /* If we need to reload the playlist again below (if
  922. * there's still no more segments), switch to a reload
  923. * interval of half the target duration. */
  924. reload_interval = v->target_duration / 2;
  925. }
  926. if (v->cur_seq_no < v->start_seq_no) {
  927. av_log(NULL, AV_LOG_WARNING,
  928. "skipping %d segments ahead, expired from playlists\n",
  929. v->start_seq_no - v->cur_seq_no);
  930. v->cur_seq_no = v->start_seq_no;
  931. }
  932. if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
  933. if (v->finished)
  934. return AVERROR_EOF;
  935. while (av_gettime_relative() - v->last_load_time < reload_interval) {
  936. if (ff_check_interrupt(c->interrupt_callback))
  937. return AVERROR_EXIT;
  938. av_usleep(100*1000);
  939. }
  940. /* Enough time has elapsed since the last reload */
  941. goto reload;
  942. }
  943. ret = open_input(c, v);
  944. if (ret < 0) {
  945. av_log(v->parent, AV_LOG_WARNING, "Failed to open segment of playlist %d\n",
  946. v->index);
  947. return ret;
  948. }
  949. just_opened = 1;
  950. }
  951. ret = read_from_url(v, buf, buf_size, READ_NORMAL);
  952. if (ret > 0) {
  953. if (just_opened && v->is_id3_timestamped != 0) {
  954. /* Intercept ID3 tags here, elementary audio streams are required
  955. * to convey timestamps using them in the beginning of each segment. */
  956. intercept_id3(v, buf, buf_size, &ret);
  957. }
  958. return ret;
  959. }
  960. ffurl_close(v->input);
  961. v->input = NULL;
  962. v->cur_seq_no++;
  963. c->cur_seq_no = v->cur_seq_no;
  964. goto restart;
  965. }
  966. static int playlist_in_multiple_variants(HLSContext *c, struct playlist *pls)
  967. {
  968. int variant_count = 0;
  969. int i, j;
  970. for (i = 0; i < c->n_variants && variant_count < 2; i++) {
  971. struct variant *v = c->variants[i];
  972. for (j = 0; j < v->n_playlists; j++) {
  973. if (v->playlists[j] == pls) {
  974. variant_count++;
  975. break;
  976. }
  977. }
  978. }
  979. return variant_count >= 2;
  980. }
  981. static void add_renditions_to_variant(HLSContext *c, struct variant *var,
  982. enum AVMediaType type, const char *group_id)
  983. {
  984. int i;
  985. for (i = 0; i < c->n_renditions; i++) {
  986. struct rendition *rend = c->renditions[i];
  987. if (rend->type == type && !strcmp(rend->group_id, group_id)) {
  988. if (rend->playlist)
  989. /* rendition is an external playlist
  990. * => add the playlist to the variant */
  991. dynarray_add(&var->playlists, &var->n_playlists, rend->playlist);
  992. else
  993. /* rendition is part of the variant main Media Playlist
  994. * => add the rendition to the main Media Playlist */
  995. dynarray_add(&var->playlists[0]->renditions,
  996. &var->playlists[0]->n_renditions,
  997. rend);
  998. }
  999. }
  1000. }
  1001. static void add_metadata_from_renditions(AVFormatContext *s, struct playlist *pls,
  1002. enum AVMediaType type)
  1003. {
  1004. int rend_idx = 0;
  1005. int i;
  1006. for (i = 0; i < pls->ctx->nb_streams; i++) {
  1007. AVStream *st = s->streams[pls->stream_offset + i];
  1008. if (st->codec->codec_type != type)
  1009. continue;
  1010. for (; rend_idx < pls->n_renditions; rend_idx++) {
  1011. struct rendition *rend = pls->renditions[rend_idx];
  1012. if (rend->type != type)
  1013. continue;
  1014. if (rend->language[0])
  1015. av_dict_set(&st->metadata, "language", rend->language, 0);
  1016. if (rend->name[0])
  1017. av_dict_set(&st->metadata, "comment", rend->name, 0);
  1018. st->disposition |= rend->disposition;
  1019. }
  1020. if (rend_idx >=pls->n_renditions)
  1021. break;
  1022. }
  1023. }
  1024. /* if timestamp was in valid range: returns 1 and sets seq_no
  1025. * if not: returns 0 and sets seq_no to closest segment */
  1026. static int find_timestamp_in_playlist(HLSContext *c, struct playlist *pls,
  1027. int64_t timestamp, int *seq_no)
  1028. {
  1029. int i;
  1030. int64_t pos = c->first_timestamp == AV_NOPTS_VALUE ?
  1031. 0 : c->first_timestamp;
  1032. if (timestamp < pos) {
  1033. *seq_no = pls->start_seq_no;
  1034. return 0;
  1035. }
  1036. for (i = 0; i < pls->n_segments; i++) {
  1037. int64_t diff = pos + pls->segments[i]->duration - timestamp;
  1038. if (diff > 0) {
  1039. *seq_no = pls->start_seq_no + i;
  1040. return 1;
  1041. }
  1042. pos += pls->segments[i]->duration;
  1043. }
  1044. *seq_no = pls->start_seq_no + pls->n_segments - 1;
  1045. return 0;
  1046. }
  1047. static int select_cur_seq_no(HLSContext *c, struct playlist *pls)
  1048. {
  1049. int seq_no;
  1050. if (!pls->finished && !c->first_packet &&
  1051. av_gettime_relative() - pls->last_load_time >= default_reload_interval(pls))
  1052. /* reload the playlist since it was suspended */
  1053. parse_playlist(c, pls->url, pls, NULL);
  1054. /* If playback is already in progress (we are just selecting a new
  1055. * playlist) and this is a complete file, find the matching segment
  1056. * by counting durations. */
  1057. if (pls->finished && c->cur_timestamp != AV_NOPTS_VALUE) {
  1058. find_timestamp_in_playlist(c, pls, c->cur_timestamp, &seq_no);
  1059. return seq_no;
  1060. }
  1061. if (!pls->finished) {
  1062. if (!c->first_packet && /* we are doing a segment selection during playback */
  1063. c->cur_seq_no >= pls->start_seq_no &&
  1064. c->cur_seq_no < pls->start_seq_no + pls->n_segments)
  1065. /* While spec 3.4.3 says that we cannot assume anything about the
  1066. * content at the same sequence number on different playlists,
  1067. * in practice this seems to work and doing it otherwise would
  1068. * require us to download a segment to inspect its timestamps. */
  1069. return c->cur_seq_no;
  1070. /* If this is a live stream with more than 3 segments, start at the
  1071. * third last segment. */
  1072. if (pls->n_segments > 3)
  1073. return pls->start_seq_no + pls->n_segments - 3;
  1074. }
  1075. /* Otherwise just start on the first segment. */
  1076. return pls->start_seq_no;
  1077. }
  1078. static int hls_read_header(AVFormatContext *s)
  1079. {
  1080. URLContext *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
  1081. HLSContext *c = s->priv_data;
  1082. int ret = 0, i, j, stream_offset = 0;
  1083. c->interrupt_callback = &s->interrupt_callback;
  1084. c->first_packet = 1;
  1085. c->first_timestamp = AV_NOPTS_VALUE;
  1086. c->cur_timestamp = AV_NOPTS_VALUE;
  1087. // if the URL context is good, read important options we must broker later
  1088. if (u && u->prot->priv_data_class) {
  1089. // get the previous user agent & set back to null if string size is zero
  1090. av_freep(&c->user_agent);
  1091. av_opt_get(u->priv_data, "user-agent", 0, (uint8_t**)&(c->user_agent));
  1092. if (c->user_agent && !strlen(c->user_agent))
  1093. av_freep(&c->user_agent);
  1094. // get the previous cookies & set back to null if string size is zero
  1095. av_freep(&c->cookies);
  1096. av_opt_get(u->priv_data, "cookies", 0, (uint8_t**)&(c->cookies));
  1097. if (c->cookies && !strlen(c->cookies))
  1098. av_freep(&c->cookies);
  1099. // get the previous headers & set back to null if string size is zero
  1100. av_freep(&c->headers);
  1101. av_opt_get(u->priv_data, "headers", 0, (uint8_t**)&(c->headers));
  1102. if (c->headers && !strlen(c->headers))
  1103. av_freep(&c->headers);
  1104. }
  1105. if ((ret = parse_playlist(c, s->filename, NULL, s->pb)) < 0)
  1106. goto fail;
  1107. if (c->n_variants == 0) {
  1108. av_log(NULL, AV_LOG_WARNING, "Empty playlist\n");
  1109. ret = AVERROR_EOF;
  1110. goto fail;
  1111. }
  1112. /* If the playlist only contained playlists (Master Playlist),
  1113. * parse each individual playlist. */
  1114. if (c->n_playlists > 1 || c->playlists[0]->n_segments == 0) {
  1115. for (i = 0; i < c->n_playlists; i++) {
  1116. struct playlist *pls = c->playlists[i];
  1117. if ((ret = parse_playlist(c, pls->url, pls, NULL)) < 0)
  1118. goto fail;
  1119. }
  1120. }
  1121. if (c->variants[0]->playlists[0]->n_segments == 0) {
  1122. av_log(NULL, AV_LOG_WARNING, "Empty playlist\n");
  1123. ret = AVERROR_EOF;
  1124. goto fail;
  1125. }
  1126. /* If this isn't a live stream, calculate the total duration of the
  1127. * stream. */
  1128. if (c->variants[0]->playlists[0]->finished) {
  1129. int64_t duration = 0;
  1130. for (i = 0; i < c->variants[0]->playlists[0]->n_segments; i++)
  1131. duration += c->variants[0]->playlists[0]->segments[i]->duration;
  1132. s->duration = duration;
  1133. }
  1134. /* Associate renditions with variants */
  1135. for (i = 0; i < c->n_variants; i++) {
  1136. struct variant *var = c->variants[i];
  1137. if (var->audio_group[0])
  1138. add_renditions_to_variant(c, var, AVMEDIA_TYPE_AUDIO, var->audio_group);
  1139. if (var->video_group[0])
  1140. add_renditions_to_variant(c, var, AVMEDIA_TYPE_VIDEO, var->video_group);
  1141. if (var->subtitles_group[0])
  1142. add_renditions_to_variant(c, var, AVMEDIA_TYPE_SUBTITLE, var->subtitles_group);
  1143. }
  1144. /* Open the demuxer for each playlist */
  1145. for (i = 0; i < c->n_playlists; i++) {
  1146. struct playlist *pls = c->playlists[i];
  1147. AVInputFormat *in_fmt = NULL;
  1148. if (!(pls->ctx = avformat_alloc_context())) {
  1149. ret = AVERROR(ENOMEM);
  1150. goto fail;
  1151. }
  1152. if (pls->n_segments == 0)
  1153. continue;
  1154. pls->index = i;
  1155. pls->needed = 1;
  1156. pls->parent = s;
  1157. pls->cur_seq_no = select_cur_seq_no(c, pls);
  1158. pls->read_buffer = av_malloc(INITIAL_BUFFER_SIZE);
  1159. ffio_init_context(&pls->pb, pls->read_buffer, INITIAL_BUFFER_SIZE, 0, pls,
  1160. read_data, NULL, NULL);
  1161. pls->pb.seekable = 0;
  1162. ret = av_probe_input_buffer(&pls->pb, &in_fmt, pls->segments[0]->url,
  1163. NULL, 0, 0);
  1164. if (ret < 0) {
  1165. /* Free the ctx - it isn't initialized properly at this point,
  1166. * so avformat_close_input shouldn't be called. If
  1167. * avformat_open_input fails below, it frees and zeros the
  1168. * context, so it doesn't need any special treatment like this. */
  1169. av_log(s, AV_LOG_ERROR, "Error when loading first segment '%s'\n", pls->segments[0]->url);
  1170. avformat_free_context(pls->ctx);
  1171. pls->ctx = NULL;
  1172. goto fail;
  1173. }
  1174. pls->ctx->pb = &pls->pb;
  1175. pls->stream_offset = stream_offset;
  1176. if ((ret = ff_copy_whitelists(pls->ctx, s)) < 0)
  1177. goto fail;
  1178. ret = avformat_open_input(&pls->ctx, pls->segments[0]->url, in_fmt, NULL);
  1179. if (ret < 0)
  1180. goto fail;
  1181. if (pls->id3_deferred_extra && pls->ctx->nb_streams == 1) {
  1182. ff_id3v2_parse_apic(pls->ctx, &pls->id3_deferred_extra);
  1183. avformat_queue_attached_pictures(pls->ctx);
  1184. ff_id3v2_free_extra_meta(&pls->id3_deferred_extra);
  1185. pls->id3_deferred_extra = NULL;
  1186. }
  1187. pls->ctx->ctx_flags &= ~AVFMTCTX_NOHEADER;
  1188. ret = avformat_find_stream_info(pls->ctx, NULL);
  1189. if (ret < 0)
  1190. goto fail;
  1191. if (pls->is_id3_timestamped == -1)
  1192. av_log(s, AV_LOG_WARNING, "No expected HTTP requests have been made\n");
  1193. /* Create new AVStreams for each stream in this playlist */
  1194. for (j = 0; j < pls->ctx->nb_streams; j++) {
  1195. AVStream *st = avformat_new_stream(s, NULL);
  1196. AVStream *ist = pls->ctx->streams[j];
  1197. if (!st) {
  1198. ret = AVERROR(ENOMEM);
  1199. goto fail;
  1200. }
  1201. st->id = i;
  1202. avcodec_copy_context(st->codec, pls->ctx->streams[j]->codec);
  1203. if (pls->is_id3_timestamped) /* custom timestamps via id3 */
  1204. avpriv_set_pts_info(st, 33, 1, MPEG_TIME_BASE);
  1205. else
  1206. avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
  1207. }
  1208. add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_AUDIO);
  1209. add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_VIDEO);
  1210. add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_SUBTITLE);
  1211. stream_offset += pls->ctx->nb_streams;
  1212. }
  1213. /* Create a program for each variant */
  1214. for (i = 0; i < c->n_variants; i++) {
  1215. struct variant *v = c->variants[i];
  1216. AVProgram *program;
  1217. program = av_new_program(s, i);
  1218. if (!program)
  1219. goto fail;
  1220. av_dict_set_int(&program->metadata, "variant_bitrate", v->bandwidth, 0);
  1221. for (j = 0; j < v->n_playlists; j++) {
  1222. struct playlist *pls = v->playlists[j];
  1223. int is_shared = playlist_in_multiple_variants(c, pls);
  1224. int k;
  1225. for (k = 0; k < pls->ctx->nb_streams; k++) {
  1226. struct AVStream *st = s->streams[pls->stream_offset + k];
  1227. ff_program_add_stream_index(s, i, pls->stream_offset + k);
  1228. /* Set variant_bitrate for streams unique to this variant */
  1229. if (!is_shared && v->bandwidth)
  1230. av_dict_set_int(&st->metadata, "variant_bitrate", v->bandwidth, 0);
  1231. }
  1232. }
  1233. }
  1234. return 0;
  1235. fail:
  1236. free_playlist_list(c);
  1237. free_variant_list(c);
  1238. free_rendition_list(c);
  1239. return ret;
  1240. }
  1241. static int recheck_discard_flags(AVFormatContext *s, int first)
  1242. {
  1243. HLSContext *c = s->priv_data;
  1244. int i, changed = 0;
  1245. /* Check if any new streams are needed */
  1246. for (i = 0; i < c->n_playlists; i++)
  1247. c->playlists[i]->cur_needed = 0;
  1248. for (i = 0; i < s->nb_streams; i++) {
  1249. AVStream *st = s->streams[i];
  1250. struct playlist *pls = c->playlists[s->streams[i]->id];
  1251. if (st->discard < AVDISCARD_ALL)
  1252. pls->cur_needed = 1;
  1253. }
  1254. for (i = 0; i < c->n_playlists; i++) {
  1255. struct playlist *pls = c->playlists[i];
  1256. if (pls->cur_needed && !pls->needed) {
  1257. pls->needed = 1;
  1258. changed = 1;
  1259. pls->cur_seq_no = select_cur_seq_no(c, pls);
  1260. pls->pb.eof_reached = 0;
  1261. if (c->cur_timestamp != AV_NOPTS_VALUE) {
  1262. /* catch up */
  1263. pls->seek_timestamp = c->cur_timestamp;
  1264. pls->seek_flags = AVSEEK_FLAG_ANY;
  1265. pls->seek_stream_index = -1;
  1266. }
  1267. av_log(s, AV_LOG_INFO, "Now receiving playlist %d, segment %d\n", i, pls->cur_seq_no);
  1268. } else if (first && !pls->cur_needed && pls->needed) {
  1269. if (pls->input)
  1270. ffurl_close(pls->input);
  1271. pls->input = NULL;
  1272. pls->needed = 0;
  1273. changed = 1;
  1274. av_log(s, AV_LOG_INFO, "No longer receiving playlist %d\n", i);
  1275. }
  1276. }
  1277. return changed;
  1278. }
  1279. static void fill_timing_for_id3_timestamped_stream(struct playlist *pls)
  1280. {
  1281. if (pls->id3_offset >= 0) {
  1282. pls->pkt.dts = pls->id3_mpegts_timestamp +
  1283. av_rescale_q(pls->id3_offset,
  1284. pls->ctx->streams[pls->pkt.stream_index]->time_base,
  1285. MPEG_TIME_BASE_Q);
  1286. if (pls->pkt.duration)
  1287. pls->id3_offset += pls->pkt.duration;
  1288. else
  1289. pls->id3_offset = -1;
  1290. } else {
  1291. /* there have been packets with unknown duration
  1292. * since the last id3 tag, should not normally happen */
  1293. pls->pkt.dts = AV_NOPTS_VALUE;
  1294. }
  1295. if (pls->pkt.duration)
  1296. pls->pkt.duration = av_rescale_q(pls->pkt.duration,
  1297. pls->ctx->streams[pls->pkt.stream_index]->time_base,
  1298. MPEG_TIME_BASE_Q);
  1299. pls->pkt.pts = AV_NOPTS_VALUE;
  1300. }
  1301. static AVRational get_timebase(struct playlist *pls)
  1302. {
  1303. if (pls->is_id3_timestamped)
  1304. return MPEG_TIME_BASE_Q;
  1305. return pls->ctx->streams[pls->pkt.stream_index]->time_base;
  1306. }
  1307. static int compare_ts_with_wrapdetect(int64_t ts_a, struct playlist *pls_a,
  1308. int64_t ts_b, struct playlist *pls_b)
  1309. {
  1310. int64_t scaled_ts_a = av_rescale_q(ts_a, get_timebase(pls_a), MPEG_TIME_BASE_Q);
  1311. int64_t scaled_ts_b = av_rescale_q(ts_b, get_timebase(pls_b), MPEG_TIME_BASE_Q);
  1312. return av_compare_mod(scaled_ts_a, scaled_ts_b, 1LL << 33);
  1313. }
  1314. static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
  1315. {
  1316. HLSContext *c = s->priv_data;
  1317. int ret, i, minplaylist = -1;
  1318. recheck_discard_flags(s, c->first_packet);
  1319. for (i = 0; i < c->n_playlists; i++) {
  1320. struct playlist *pls = c->playlists[i];
  1321. /* Make sure we've got one buffered packet from each open playlist
  1322. * stream */
  1323. if (pls->needed && !pls->pkt.data) {
  1324. while (1) {
  1325. int64_t ts_diff;
  1326. AVRational tb;
  1327. ret = av_read_frame(pls->ctx, &pls->pkt);
  1328. if (ret < 0) {
  1329. if (!avio_feof(&pls->pb) && ret != AVERROR_EOF)
  1330. return ret;
  1331. reset_packet(&pls->pkt);
  1332. break;
  1333. } else {
  1334. /* stream_index check prevents matching picture attachments etc. */
  1335. if (pls->is_id3_timestamped && pls->pkt.stream_index == 0) {
  1336. /* audio elementary streams are id3 timestamped */
  1337. fill_timing_for_id3_timestamped_stream(pls);
  1338. }
  1339. if (c->first_timestamp == AV_NOPTS_VALUE &&
  1340. pls->pkt.dts != AV_NOPTS_VALUE)
  1341. c->first_timestamp = av_rescale_q(pls->pkt.dts,
  1342. get_timebase(pls), AV_TIME_BASE_Q);
  1343. }
  1344. if (pls->seek_timestamp == AV_NOPTS_VALUE)
  1345. break;
  1346. if (pls->seek_stream_index < 0 ||
  1347. pls->seek_stream_index == pls->pkt.stream_index) {
  1348. if (pls->pkt.dts == AV_NOPTS_VALUE) {
  1349. pls->seek_timestamp = AV_NOPTS_VALUE;
  1350. break;
  1351. }
  1352. tb = get_timebase(pls);
  1353. ts_diff = av_rescale_rnd(pls->pkt.dts, AV_TIME_BASE,
  1354. tb.den, AV_ROUND_DOWN) -
  1355. pls->seek_timestamp;
  1356. if (ts_diff >= 0 && (pls->seek_flags & AVSEEK_FLAG_ANY ||
  1357. pls->pkt.flags & AV_PKT_FLAG_KEY)) {
  1358. pls->seek_timestamp = AV_NOPTS_VALUE;
  1359. break;
  1360. }
  1361. }
  1362. av_free_packet(&pls->pkt);
  1363. reset_packet(&pls->pkt);
  1364. }
  1365. }
  1366. /* Check if this stream has the packet with the lowest dts */
  1367. if (pls->pkt.data) {
  1368. struct playlist *minpls = minplaylist < 0 ?
  1369. NULL : c->playlists[minplaylist];
  1370. if (minplaylist < 0) {
  1371. minplaylist = i;
  1372. } else {
  1373. int64_t dts = pls->pkt.dts;
  1374. int64_t mindts = minpls->pkt.dts;
  1375. if (dts == AV_NOPTS_VALUE ||
  1376. (mindts != AV_NOPTS_VALUE && compare_ts_with_wrapdetect(dts, pls, mindts, minpls) < 0))
  1377. minplaylist = i;
  1378. }
  1379. }
  1380. }
  1381. /* If we got a packet, return it */
  1382. if (minplaylist >= 0) {
  1383. struct playlist *pls = c->playlists[minplaylist];
  1384. *pkt = pls->pkt;
  1385. pkt->stream_index += pls->stream_offset;
  1386. reset_packet(&c->playlists[minplaylist]->pkt);
  1387. if (pkt->dts != AV_NOPTS_VALUE)
  1388. c->cur_timestamp = av_rescale_q(pkt->dts,
  1389. pls->ctx->streams[pls->pkt.stream_index]->time_base,
  1390. AV_TIME_BASE_Q);
  1391. return 0;
  1392. }
  1393. return AVERROR_EOF;
  1394. }
  1395. static int hls_close(AVFormatContext *s)
  1396. {
  1397. HLSContext *c = s->priv_data;
  1398. free_playlist_list(c);
  1399. free_variant_list(c);
  1400. free_rendition_list(c);
  1401. return 0;
  1402. }
  1403. static int hls_read_seek(AVFormatContext *s, int stream_index,
  1404. int64_t timestamp, int flags)
  1405. {
  1406. HLSContext *c = s->priv_data;
  1407. struct playlist *seek_pls = NULL;
  1408. int i, seq_no;
  1409. int64_t first_timestamp, seek_timestamp, duration;
  1410. if ((flags & AVSEEK_FLAG_BYTE) ||
  1411. !(c->variants[0]->playlists[0]->finished || c->variants[0]->playlists[0]->type == PLS_TYPE_EVENT))
  1412. return AVERROR(ENOSYS);
  1413. first_timestamp = c->first_timestamp == AV_NOPTS_VALUE ?
  1414. 0 : c->first_timestamp;
  1415. seek_timestamp = av_rescale_rnd(timestamp, AV_TIME_BASE,
  1416. s->streams[stream_index]->time_base.den,
  1417. flags & AVSEEK_FLAG_BACKWARD ?
  1418. AV_ROUND_DOWN : AV_ROUND_UP);
  1419. duration = s->duration == AV_NOPTS_VALUE ?
  1420. 0 : s->duration;
  1421. if (0 < duration && duration < seek_timestamp - first_timestamp)
  1422. return AVERROR(EIO);
  1423. /* find the playlist with the specified stream */
  1424. for (i = 0; i < c->n_playlists; i++) {
  1425. struct playlist *pls = c->playlists[i];
  1426. if (stream_index >= pls->stream_offset &&
  1427. stream_index - pls->stream_offset < pls->ctx->nb_streams) {
  1428. seek_pls = pls;
  1429. break;
  1430. }
  1431. }
  1432. /* check if the timestamp is valid for the playlist with the
  1433. * specified stream index */
  1434. if (!seek_pls || !find_timestamp_in_playlist(c, seek_pls, seek_timestamp, &seq_no))
  1435. return AVERROR(EIO);
  1436. /* set segment now so we do not need to search again below */
  1437. seek_pls->cur_seq_no = seq_no;
  1438. seek_pls->seek_stream_index = stream_index - seek_pls->stream_offset;
  1439. for (i = 0; i < c->n_playlists; i++) {
  1440. /* Reset reading */
  1441. struct playlist *pls = c->playlists[i];
  1442. if (pls->input) {
  1443. ffurl_close(pls->input);
  1444. pls->input = NULL;
  1445. }
  1446. av_free_packet(&pls->pkt);
  1447. reset_packet(&pls->pkt);
  1448. pls->pb.eof_reached = 0;
  1449. /* Clear any buffered data */
  1450. pls->pb.buf_end = pls->pb.buf_ptr = pls->pb.buffer;
  1451. /* Reset the pos, to let the mpegts demuxer know we've seeked. */
  1452. pls->pb.pos = 0;
  1453. /* Flush the packet queue of the subdemuxer. */
  1454. ff_read_frame_flush(pls->ctx);
  1455. pls->seek_timestamp = seek_timestamp;
  1456. pls->seek_flags = flags;
  1457. if (pls != seek_pls) {
  1458. /* set closest segment seq_no for playlists not handled above */
  1459. find_timestamp_in_playlist(c, pls, seek_timestamp, &pls->cur_seq_no);
  1460. /* seek the playlist to the given position without taking
  1461. * keyframes into account since this playlist does not have the
  1462. * specified stream where we should look for the keyframes */
  1463. pls->seek_stream_index = -1;
  1464. pls->seek_flags |= AVSEEK_FLAG_ANY;
  1465. }
  1466. }
  1467. c->cur_timestamp = seek_timestamp;
  1468. return 0;
  1469. }
  1470. static int hls_probe(AVProbeData *p)
  1471. {
  1472. /* Require #EXTM3U at the start, and either one of the ones below
  1473. * somewhere for a proper match. */
  1474. if (strncmp(p->buf, "#EXTM3U", 7))
  1475. return 0;
  1476. if (strstr(p->buf, "#EXT-X-STREAM-INF:") ||
  1477. strstr(p->buf, "#EXT-X-TARGETDURATION:") ||
  1478. strstr(p->buf, "#EXT-X-MEDIA-SEQUENCE:"))
  1479. return AVPROBE_SCORE_MAX;
  1480. return 0;
  1481. }
  1482. AVInputFormat ff_hls_demuxer = {
  1483. .name = "hls,applehttp",
  1484. .long_name = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming"),
  1485. .priv_data_size = sizeof(HLSContext),
  1486. .read_probe = hls_probe,
  1487. .read_header = hls_read_header,
  1488. .read_packet = hls_read_packet,
  1489. .read_close = hls_close,
  1490. .read_seek = hls_read_seek,
  1491. };