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.

2074 lines
69KB

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