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.

2304 lines
90KB

  1. /*
  2. * MPEG-DASH ISO BMFF segmenter
  3. * Copyright (c) 2014 Martin Storsjo
  4. * Copyright (c) 2018 Akamai Technologies, Inc.
  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. #include "config.h"
  23. #if HAVE_UNISTD_H
  24. #include <unistd.h>
  25. #endif
  26. #include "libavutil/avassert.h"
  27. #include "libavutil/avutil.h"
  28. #include "libavutil/avstring.h"
  29. #include "libavutil/intreadwrite.h"
  30. #include "libavutil/mathematics.h"
  31. #include "libavutil/opt.h"
  32. #include "libavutil/parseutils.h"
  33. #include "libavutil/rational.h"
  34. #include "libavutil/time.h"
  35. #include "libavutil/time_internal.h"
  36. #include "av1.h"
  37. #include "avc.h"
  38. #include "avformat.h"
  39. #include "avio_internal.h"
  40. #include "hlsplaylist.h"
  41. #if CONFIG_HTTP_PROTOCOL
  42. #include "http.h"
  43. #endif
  44. #include "internal.h"
  45. #include "isom.h"
  46. #include "os_support.h"
  47. #include "url.h"
  48. #include "vpcc.h"
  49. #include "dash.h"
  50. typedef enum {
  51. SEGMENT_TYPE_AUTO = 0,
  52. SEGMENT_TYPE_MP4,
  53. SEGMENT_TYPE_WEBM,
  54. SEGMENT_TYPE_NB
  55. } SegmentType;
  56. enum {
  57. FRAG_TYPE_NONE = 0,
  58. FRAG_TYPE_EVERY_FRAME,
  59. FRAG_TYPE_DURATION,
  60. FRAG_TYPE_PFRAMES,
  61. FRAG_TYPE_NB
  62. };
  63. #define MPD_PROFILE_DASH 1
  64. #define MPD_PROFILE_DVB 2
  65. typedef struct Segment {
  66. char file[1024];
  67. int64_t start_pos;
  68. int range_length, index_length;
  69. int64_t time;
  70. double prog_date_time;
  71. int64_t duration;
  72. int n;
  73. } Segment;
  74. typedef struct AdaptationSet {
  75. char id[10];
  76. char *descriptor;
  77. int64_t seg_duration;
  78. int64_t frag_duration;
  79. int frag_type;
  80. enum AVMediaType media_type;
  81. AVDictionary *metadata;
  82. AVRational min_frame_rate, max_frame_rate;
  83. int ambiguous_frame_rate;
  84. int64_t max_frag_duration;
  85. int max_width, max_height;
  86. int nb_streams;
  87. AVRational par;
  88. } AdaptationSet;
  89. typedef struct OutputStream {
  90. AVFormatContext *ctx;
  91. int ctx_inited, as_idx;
  92. AVIOContext *out;
  93. AVCodecParserContext *parser;
  94. AVCodecContext *parser_avctx;
  95. int packets_written;
  96. char initfile[1024];
  97. int64_t init_start_pos, pos;
  98. int init_range_length;
  99. int nb_segments, segments_size, segment_index;
  100. int64_t seg_duration;
  101. int64_t frag_duration;
  102. int64_t last_duration;
  103. Segment **segments;
  104. int64_t first_pts, start_pts, max_pts;
  105. int64_t last_dts, last_pts;
  106. int last_flags;
  107. int bit_rate;
  108. SegmentType segment_type; /* segment type selected for this particular stream */
  109. const char *format_name;
  110. const char *extension_name;
  111. const char *single_file_name; /* file names selected for this particular stream */
  112. const char *init_seg_name;
  113. const char *media_seg_name;
  114. char codec_str[100];
  115. int written_len;
  116. char filename[1024];
  117. char full_path[1024];
  118. char temp_path[1024];
  119. double availability_time_offset;
  120. int64_t producer_reference_time;
  121. char producer_reference_time_str[100];
  122. int total_pkt_size;
  123. int64_t total_pkt_duration;
  124. int muxer_overhead;
  125. int frag_type;
  126. int64_t gop_size;
  127. AVRational sar;
  128. } OutputStream;
  129. typedef struct DASHContext {
  130. const AVClass *class; /* Class for private options. */
  131. char *adaptation_sets;
  132. AdaptationSet *as;
  133. int nb_as;
  134. int window_size;
  135. int extra_window_size;
  136. #if FF_API_DASH_MIN_SEG_DURATION
  137. int min_seg_duration;
  138. #endif
  139. int64_t seg_duration;
  140. int64_t frag_duration;
  141. int remove_at_exit;
  142. int use_template;
  143. int use_timeline;
  144. int single_file;
  145. OutputStream *streams;
  146. int has_video;
  147. int64_t last_duration;
  148. int64_t total_duration;
  149. char availability_start_time[100];
  150. time_t start_time_s;
  151. int64_t presentation_time_offset;
  152. char dirname[1024];
  153. const char *single_file_name; /* file names as specified in options */
  154. const char *init_seg_name;
  155. const char *media_seg_name;
  156. const char *utc_timing_url;
  157. const char *method;
  158. const char *user_agent;
  159. char *http_opts;
  160. int hls_playlist;
  161. int http_persistent;
  162. int master_playlist_created;
  163. AVIOContext *mpd_out;
  164. AVIOContext *m3u8_out;
  165. int streaming;
  166. int64_t timeout;
  167. int index_correction;
  168. AVDictionary *format_options;
  169. int global_sidx;
  170. SegmentType segment_type_option; /* segment type as specified in options */
  171. int ignore_io_errors;
  172. int lhls;
  173. int ldash;
  174. int master_publish_rate;
  175. int nr_of_streams_to_flush;
  176. int nr_of_streams_flushed;
  177. int frag_type;
  178. int write_prft;
  179. int64_t max_gop_size;
  180. int profile;
  181. int64_t target_latency;
  182. int target_latency_refid;
  183. } DASHContext;
  184. static struct codec_string {
  185. int id;
  186. const char *str;
  187. } codecs[] = {
  188. { AV_CODEC_ID_VP8, "vp8" },
  189. { AV_CODEC_ID_VP9, "vp9" },
  190. { AV_CODEC_ID_VORBIS, "vorbis" },
  191. { AV_CODEC_ID_OPUS, "opus" },
  192. { AV_CODEC_ID_FLAC, "flac" },
  193. { 0, NULL }
  194. };
  195. static struct format_string {
  196. SegmentType segment_type;
  197. const char *str;
  198. } formats[] = {
  199. { SEGMENT_TYPE_AUTO, "auto" },
  200. { SEGMENT_TYPE_MP4, "mp4" },
  201. { SEGMENT_TYPE_WEBM, "webm" },
  202. { 0, NULL }
  203. };
  204. static int dashenc_io_open(AVFormatContext *s, AVIOContext **pb, char *filename,
  205. AVDictionary **options) {
  206. DASHContext *c = s->priv_data;
  207. int http_base_proto = filename ? ff_is_http_proto(filename) : 0;
  208. int err = AVERROR_MUXER_NOT_FOUND;
  209. if (!*pb || !http_base_proto || !c->http_persistent) {
  210. err = s->io_open(s, pb, filename, AVIO_FLAG_WRITE, options);
  211. #if CONFIG_HTTP_PROTOCOL
  212. } else {
  213. URLContext *http_url_context = ffio_geturlcontext(*pb);
  214. av_assert0(http_url_context);
  215. err = ff_http_do_new_request(http_url_context, filename);
  216. if (err < 0)
  217. ff_format_io_close(s, pb);
  218. #endif
  219. }
  220. return err;
  221. }
  222. static void dashenc_io_close(AVFormatContext *s, AVIOContext **pb, char *filename) {
  223. DASHContext *c = s->priv_data;
  224. int http_base_proto = filename ? ff_is_http_proto(filename) : 0;
  225. if (!*pb)
  226. return;
  227. if (!http_base_proto || !c->http_persistent) {
  228. ff_format_io_close(s, pb);
  229. #if CONFIG_HTTP_PROTOCOL
  230. } else {
  231. URLContext *http_url_context = ffio_geturlcontext(*pb);
  232. av_assert0(http_url_context);
  233. avio_flush(*pb);
  234. ffurl_shutdown(http_url_context, AVIO_FLAG_WRITE);
  235. #endif
  236. }
  237. }
  238. static const char *get_format_str(SegmentType segment_type) {
  239. int i;
  240. for (i = 0; i < SEGMENT_TYPE_NB; i++)
  241. if (formats[i].segment_type == segment_type)
  242. return formats[i].str;
  243. return NULL;
  244. }
  245. static const char *get_extension_str(SegmentType type, int single_file)
  246. {
  247. switch (type) {
  248. case SEGMENT_TYPE_MP4: return single_file ? "mp4" : "m4s";
  249. case SEGMENT_TYPE_WEBM: return "webm";
  250. default: return NULL;
  251. }
  252. }
  253. static int handle_io_open_error(AVFormatContext *s, int err, char *url) {
  254. DASHContext *c = s->priv_data;
  255. char errbuf[AV_ERROR_MAX_STRING_SIZE];
  256. av_strerror(err, errbuf, sizeof(errbuf));
  257. av_log(s, c->ignore_io_errors ? AV_LOG_WARNING : AV_LOG_ERROR,
  258. "Unable to open %s for writing: %s\n", url, errbuf);
  259. return c->ignore_io_errors ? 0 : err;
  260. }
  261. static inline SegmentType select_segment_type(SegmentType segment_type, enum AVCodecID codec_id)
  262. {
  263. if (segment_type == SEGMENT_TYPE_AUTO) {
  264. if (codec_id == AV_CODEC_ID_OPUS || codec_id == AV_CODEC_ID_VORBIS ||
  265. codec_id == AV_CODEC_ID_VP8 || codec_id == AV_CODEC_ID_VP9) {
  266. segment_type = SEGMENT_TYPE_WEBM;
  267. } else {
  268. segment_type = SEGMENT_TYPE_MP4;
  269. }
  270. }
  271. return segment_type;
  272. }
  273. static int init_segment_types(AVFormatContext *s)
  274. {
  275. DASHContext *c = s->priv_data;
  276. int has_mp4_streams = 0;
  277. for (int i = 0; i < s->nb_streams; ++i) {
  278. OutputStream *os = &c->streams[i];
  279. SegmentType segment_type = select_segment_type(
  280. c->segment_type_option, s->streams[i]->codecpar->codec_id);
  281. os->segment_type = segment_type;
  282. os->format_name = get_format_str(segment_type);
  283. if (!os->format_name) {
  284. av_log(s, AV_LOG_ERROR, "Could not select DASH segment type for stream %d\n", i);
  285. return AVERROR_MUXER_NOT_FOUND;
  286. }
  287. os->extension_name = get_extension_str(segment_type, c->single_file);
  288. if (!os->extension_name) {
  289. av_log(s, AV_LOG_ERROR, "Could not get extension type for stream %d\n", i);
  290. return AVERROR_MUXER_NOT_FOUND;
  291. }
  292. has_mp4_streams |= segment_type == SEGMENT_TYPE_MP4;
  293. }
  294. if (c->hls_playlist && !has_mp4_streams) {
  295. av_log(s, AV_LOG_WARNING, "No mp4 streams, disabling HLS manifest generation\n");
  296. c->hls_playlist = 0;
  297. }
  298. return 0;
  299. }
  300. static int check_file_extension(const char *filename, const char *extension) {
  301. char *dot;
  302. if (!filename || !extension)
  303. return -1;
  304. dot = strrchr(filename, '.');
  305. if (dot && !strcmp(dot + 1, extension))
  306. return 0;
  307. return -1;
  308. }
  309. static void set_vp9_codec_str(AVFormatContext *s, AVCodecParameters *par,
  310. AVRational *frame_rate, char *str, int size) {
  311. VPCC vpcc;
  312. int ret = ff_isom_get_vpcc_features(s, par, frame_rate, &vpcc);
  313. if (ret == 0) {
  314. av_strlcatf(str, size, "vp09.%02d.%02d.%02d",
  315. vpcc.profile, vpcc.level, vpcc.bitdepth);
  316. } else {
  317. // Default to just vp9 in case of error while finding out profile or level
  318. av_log(s, AV_LOG_WARNING, "Could not find VP9 profile and/or level\n");
  319. av_strlcpy(str, "vp9", size);
  320. }
  321. return;
  322. }
  323. static void set_codec_str(AVFormatContext *s, AVCodecParameters *par,
  324. AVRational *frame_rate, char *str, int size)
  325. {
  326. const AVCodecTag *tags[2] = { NULL, NULL };
  327. uint32_t tag;
  328. int i;
  329. // common Webm codecs are not part of RFC 6381
  330. for (i = 0; codecs[i].id; i++)
  331. if (codecs[i].id == par->codec_id) {
  332. if (codecs[i].id == AV_CODEC_ID_VP9) {
  333. set_vp9_codec_str(s, par, frame_rate, str, size);
  334. } else {
  335. av_strlcpy(str, codecs[i].str, size);
  336. }
  337. return;
  338. }
  339. // for codecs part of RFC 6381
  340. if (par->codec_type == AVMEDIA_TYPE_VIDEO)
  341. tags[0] = ff_codec_movvideo_tags;
  342. else if (par->codec_type == AVMEDIA_TYPE_AUDIO)
  343. tags[0] = ff_codec_movaudio_tags;
  344. else
  345. return;
  346. tag = par->codec_tag;
  347. if (!tag)
  348. tag = av_codec_get_tag(tags, par->codec_id);
  349. if (!tag)
  350. return;
  351. if (size < 5)
  352. return;
  353. AV_WL32(str, tag);
  354. str[4] = '\0';
  355. if (!strcmp(str, "mp4a") || !strcmp(str, "mp4v")) {
  356. uint32_t oti;
  357. tags[0] = ff_mp4_obj_type;
  358. oti = av_codec_get_tag(tags, par->codec_id);
  359. if (oti)
  360. av_strlcatf(str, size, ".%02"PRIx32, oti);
  361. else
  362. return;
  363. if (tag == MKTAG('m', 'p', '4', 'a')) {
  364. if (par->extradata_size >= 2) {
  365. int aot = par->extradata[0] >> 3;
  366. if (aot == 31)
  367. aot = ((AV_RB16(par->extradata) >> 5) & 0x3f) + 32;
  368. av_strlcatf(str, size, ".%d", aot);
  369. }
  370. } else if (tag == MKTAG('m', 'p', '4', 'v')) {
  371. // Unimplemented, should output ProfileLevelIndication as a decimal number
  372. av_log(s, AV_LOG_WARNING, "Incomplete RFC 6381 codec string for mp4v\n");
  373. }
  374. } else if (!strcmp(str, "avc1")) {
  375. uint8_t *tmpbuf = NULL;
  376. uint8_t *extradata = par->extradata;
  377. int extradata_size = par->extradata_size;
  378. if (!extradata_size)
  379. return;
  380. if (extradata[0] != 1) {
  381. AVIOContext *pb;
  382. if (avio_open_dyn_buf(&pb) < 0)
  383. return;
  384. if (ff_isom_write_avcc(pb, extradata, extradata_size) < 0) {
  385. ffio_free_dyn_buf(&pb);
  386. return;
  387. }
  388. extradata_size = avio_close_dyn_buf(pb, &extradata);
  389. tmpbuf = extradata;
  390. }
  391. if (extradata_size >= 4)
  392. av_strlcatf(str, size, ".%02x%02x%02x",
  393. extradata[1], extradata[2], extradata[3]);
  394. av_free(tmpbuf);
  395. } else if (!strcmp(str, "av01")) {
  396. AV1SequenceParameters seq;
  397. if (!par->extradata_size)
  398. return;
  399. if (ff_av1_parse_seq_header(&seq, par->extradata, par->extradata_size) < 0)
  400. return;
  401. av_strlcatf(str, size, ".%01u.%02u%s.%02u",
  402. seq.profile, seq.level, seq.tier ? "H" : "M", seq.bitdepth);
  403. if (seq.color_description_present_flag)
  404. av_strlcatf(str, size, ".%01u.%01u%01u%01u.%02u.%02u.%02u.%01u",
  405. seq.monochrome,
  406. seq.chroma_subsampling_x, seq.chroma_subsampling_y, seq.chroma_sample_position,
  407. seq.color_primaries, seq.transfer_characteristics, seq.matrix_coefficients,
  408. seq.color_range);
  409. }
  410. }
  411. static int flush_dynbuf(DASHContext *c, OutputStream *os, int *range_length)
  412. {
  413. uint8_t *buffer;
  414. if (!os->ctx->pb) {
  415. return AVERROR(EINVAL);
  416. }
  417. // flush
  418. av_write_frame(os->ctx, NULL);
  419. avio_flush(os->ctx->pb);
  420. if (!c->single_file) {
  421. // write out to file
  422. *range_length = avio_close_dyn_buf(os->ctx->pb, &buffer);
  423. os->ctx->pb = NULL;
  424. if (os->out)
  425. avio_write(os->out, buffer + os->written_len, *range_length - os->written_len);
  426. os->written_len = 0;
  427. av_free(buffer);
  428. // re-open buffer
  429. return avio_open_dyn_buf(&os->ctx->pb);
  430. } else {
  431. *range_length = avio_tell(os->ctx->pb) - os->pos;
  432. return 0;
  433. }
  434. }
  435. static void set_http_options(AVDictionary **options, DASHContext *c)
  436. {
  437. if (c->method)
  438. av_dict_set(options, "method", c->method, 0);
  439. if (c->http_opts)
  440. av_dict_parse_string(options, c->http_opts, "=", ",", 0);
  441. if (c->user_agent)
  442. av_dict_set(options, "user_agent", c->user_agent, 0);
  443. if (c->http_persistent)
  444. av_dict_set_int(options, "multiple_requests", 1, 0);
  445. if (c->timeout >= 0)
  446. av_dict_set_int(options, "timeout", c->timeout, 0);
  447. }
  448. static void get_hls_playlist_name(char *playlist_name, int string_size,
  449. const char *base_url, int id) {
  450. if (base_url)
  451. snprintf(playlist_name, string_size, "%smedia_%d.m3u8", base_url, id);
  452. else
  453. snprintf(playlist_name, string_size, "media_%d.m3u8", id);
  454. }
  455. static void get_start_index_number(OutputStream *os, DASHContext *c,
  456. int *start_index, int *start_number) {
  457. *start_index = 0;
  458. *start_number = 1;
  459. if (c->window_size) {
  460. *start_index = FFMAX(os->nb_segments - c->window_size, 0);
  461. *start_number = FFMAX(os->segment_index - c->window_size, 1);
  462. }
  463. }
  464. static void write_hls_media_playlist(OutputStream *os, AVFormatContext *s,
  465. int representation_id, int final,
  466. char *prefetch_url) {
  467. DASHContext *c = s->priv_data;
  468. int timescale = os->ctx->streams[0]->time_base.den;
  469. char temp_filename_hls[1024];
  470. char filename_hls[1024];
  471. AVDictionary *http_opts = NULL;
  472. int target_duration = 0;
  473. int ret = 0;
  474. const char *proto = avio_find_protocol_name(c->dirname);
  475. int use_rename = proto && !strcmp(proto, "file");
  476. int i, start_index, start_number;
  477. double prog_date_time = 0;
  478. get_start_index_number(os, c, &start_index, &start_number);
  479. if (!c->hls_playlist || start_index >= os->nb_segments ||
  480. os->segment_type != SEGMENT_TYPE_MP4)
  481. return;
  482. get_hls_playlist_name(filename_hls, sizeof(filename_hls),
  483. c->dirname, representation_id);
  484. snprintf(temp_filename_hls, sizeof(temp_filename_hls), use_rename ? "%s.tmp" : "%s", filename_hls);
  485. set_http_options(&http_opts, c);
  486. ret = dashenc_io_open(s, &c->m3u8_out, temp_filename_hls, &http_opts);
  487. av_dict_free(&http_opts);
  488. if (ret < 0) {
  489. handle_io_open_error(s, ret, temp_filename_hls);
  490. return;
  491. }
  492. for (i = start_index; i < os->nb_segments; i++) {
  493. Segment *seg = os->segments[i];
  494. double duration = (double) seg->duration / timescale;
  495. if (target_duration <= duration)
  496. target_duration = lrint(duration);
  497. }
  498. ff_hls_write_playlist_header(c->m3u8_out, 6, -1, target_duration,
  499. start_number, PLAYLIST_TYPE_NONE, 0);
  500. ff_hls_write_init_file(c->m3u8_out, os->initfile, c->single_file,
  501. os->init_range_length, os->init_start_pos);
  502. for (i = start_index; i < os->nb_segments; i++) {
  503. Segment *seg = os->segments[i];
  504. if (prog_date_time == 0) {
  505. if (os->nb_segments == 1)
  506. prog_date_time = c->start_time_s;
  507. else
  508. prog_date_time = seg->prog_date_time;
  509. }
  510. seg->prog_date_time = prog_date_time;
  511. ret = ff_hls_write_file_entry(c->m3u8_out, 0, c->single_file,
  512. (double) seg->duration / timescale, 0,
  513. seg->range_length, seg->start_pos, NULL,
  514. c->single_file ? os->initfile : seg->file,
  515. &prog_date_time, 0, 0, 0);
  516. if (ret < 0) {
  517. av_log(os->ctx, AV_LOG_WARNING, "ff_hls_write_file_entry get error\n");
  518. }
  519. }
  520. if (prefetch_url)
  521. avio_printf(c->m3u8_out, "#EXT-X-PREFETCH:%s\n", prefetch_url);
  522. if (final)
  523. ff_hls_write_end_list(c->m3u8_out);
  524. dashenc_io_close(s, &c->m3u8_out, temp_filename_hls);
  525. if (use_rename)
  526. ff_rename(temp_filename_hls, filename_hls, os->ctx);
  527. }
  528. static int flush_init_segment(AVFormatContext *s, OutputStream *os)
  529. {
  530. DASHContext *c = s->priv_data;
  531. int ret, range_length;
  532. ret = flush_dynbuf(c, os, &range_length);
  533. if (ret < 0)
  534. return ret;
  535. os->pos = os->init_range_length = range_length;
  536. if (!c->single_file) {
  537. char filename[1024];
  538. snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
  539. dashenc_io_close(s, &os->out, filename);
  540. }
  541. return 0;
  542. }
  543. static void dash_free(AVFormatContext *s)
  544. {
  545. DASHContext *c = s->priv_data;
  546. int i, j;
  547. if (c->as) {
  548. for (i = 0; i < c->nb_as; i++) {
  549. av_dict_free(&c->as[i].metadata);
  550. av_freep(&c->as[i].descriptor);
  551. }
  552. av_freep(&c->as);
  553. c->nb_as = 0;
  554. }
  555. if (!c->streams)
  556. return;
  557. for (i = 0; i < s->nb_streams; i++) {
  558. OutputStream *os = &c->streams[i];
  559. if (os->ctx && os->ctx->pb) {
  560. if (!c->single_file)
  561. ffio_free_dyn_buf(&os->ctx->pb);
  562. else
  563. avio_close(os->ctx->pb);
  564. }
  565. ff_format_io_close(s, &os->out);
  566. avformat_free_context(os->ctx);
  567. avcodec_free_context(&os->parser_avctx);
  568. av_parser_close(os->parser);
  569. for (j = 0; j < os->nb_segments; j++)
  570. av_free(os->segments[j]);
  571. av_free(os->segments);
  572. av_freep(&os->single_file_name);
  573. av_freep(&os->init_seg_name);
  574. av_freep(&os->media_seg_name);
  575. }
  576. av_freep(&c->streams);
  577. ff_format_io_close(s, &c->mpd_out);
  578. ff_format_io_close(s, &c->m3u8_out);
  579. }
  580. static void output_segment_list(OutputStream *os, AVIOContext *out, AVFormatContext *s,
  581. int representation_id, int final)
  582. {
  583. DASHContext *c = s->priv_data;
  584. int i, start_index, start_number;
  585. get_start_index_number(os, c, &start_index, &start_number);
  586. if (c->use_template) {
  587. int timescale = c->use_timeline ? os->ctx->streams[0]->time_base.den : AV_TIME_BASE;
  588. avio_printf(out, "\t\t\t\t<SegmentTemplate timescale=\"%d\" ", timescale);
  589. if (!c->use_timeline) {
  590. avio_printf(out, "duration=\"%"PRId64"\" ", os->seg_duration);
  591. if (c->streaming && os->availability_time_offset)
  592. avio_printf(out, "availabilityTimeOffset=\"%.3f\" ",
  593. os->availability_time_offset);
  594. }
  595. if (c->ldash && !final && os->frag_type != FRAG_TYPE_NONE &&
  596. (os->frag_type != FRAG_TYPE_DURATION || os->frag_duration != os->seg_duration))
  597. avio_printf(out, "availabilityTimeComplete=\"false\" ");
  598. avio_printf(out, "initialization=\"%s\" media=\"%s\" startNumber=\"%d\"", os->init_seg_name, os->media_seg_name, c->use_timeline ? start_number : 1);
  599. if (c->presentation_time_offset)
  600. avio_printf(out, " presentationTimeOffset=\"%"PRId64"\"", c->presentation_time_offset);
  601. avio_printf(out, ">\n");
  602. if (c->use_timeline) {
  603. int64_t cur_time = 0;
  604. avio_printf(out, "\t\t\t\t\t<SegmentTimeline>\n");
  605. for (i = start_index; i < os->nb_segments; ) {
  606. Segment *seg = os->segments[i];
  607. int repeat = 0;
  608. avio_printf(out, "\t\t\t\t\t\t<S ");
  609. if (i == start_index || seg->time != cur_time) {
  610. cur_time = seg->time;
  611. avio_printf(out, "t=\"%"PRId64"\" ", seg->time);
  612. }
  613. avio_printf(out, "d=\"%"PRId64"\" ", seg->duration);
  614. while (i + repeat + 1 < os->nb_segments &&
  615. os->segments[i + repeat + 1]->duration == seg->duration &&
  616. os->segments[i + repeat + 1]->time == os->segments[i + repeat]->time + os->segments[i + repeat]->duration)
  617. repeat++;
  618. if (repeat > 0)
  619. avio_printf(out, "r=\"%d\" ", repeat);
  620. avio_printf(out, "/>\n");
  621. i += 1 + repeat;
  622. cur_time += (1 + repeat) * seg->duration;
  623. }
  624. avio_printf(out, "\t\t\t\t\t</SegmentTimeline>\n");
  625. }
  626. avio_printf(out, "\t\t\t\t</SegmentTemplate>\n");
  627. } else if (c->single_file) {
  628. avio_printf(out, "\t\t\t\t<BaseURL>%s</BaseURL>\n", os->initfile);
  629. avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, FFMIN(os->seg_duration, os->last_duration), start_number);
  630. avio_printf(out, "\t\t\t\t\t<Initialization range=\"%"PRId64"-%"PRId64"\" />\n", os->init_start_pos, os->init_start_pos + os->init_range_length - 1);
  631. for (i = start_index; i < os->nb_segments; i++) {
  632. Segment *seg = os->segments[i];
  633. avio_printf(out, "\t\t\t\t\t<SegmentURL mediaRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->range_length - 1);
  634. if (seg->index_length)
  635. avio_printf(out, "indexRange=\"%"PRId64"-%"PRId64"\" ", seg->start_pos, seg->start_pos + seg->index_length - 1);
  636. avio_printf(out, "/>\n");
  637. }
  638. avio_printf(out, "\t\t\t\t</SegmentList>\n");
  639. } else {
  640. avio_printf(out, "\t\t\t\t<SegmentList timescale=\"%d\" duration=\"%"PRId64"\" startNumber=\"%d\">\n", AV_TIME_BASE, FFMIN(os->seg_duration, os->last_duration), start_number);
  641. avio_printf(out, "\t\t\t\t\t<Initialization sourceURL=\"%s\" />\n", os->initfile);
  642. for (i = start_index; i < os->nb_segments; i++) {
  643. Segment *seg = os->segments[i];
  644. avio_printf(out, "\t\t\t\t\t<SegmentURL media=\"%s\" />\n", seg->file);
  645. }
  646. avio_printf(out, "\t\t\t\t</SegmentList>\n");
  647. }
  648. if (!c->lhls || final) {
  649. write_hls_media_playlist(os, s, representation_id, final, NULL);
  650. }
  651. }
  652. static char *xmlescape(const char *str) {
  653. int outlen = strlen(str)*3/2 + 6;
  654. char *out = av_realloc(NULL, outlen + 1);
  655. int pos = 0;
  656. if (!out)
  657. return NULL;
  658. for (; *str; str++) {
  659. if (pos + 6 > outlen) {
  660. char *tmp;
  661. outlen = 2 * outlen + 6;
  662. tmp = av_realloc(out, outlen + 1);
  663. if (!tmp) {
  664. av_free(out);
  665. return NULL;
  666. }
  667. out = tmp;
  668. }
  669. if (*str == '&') {
  670. memcpy(&out[pos], "&amp;", 5);
  671. pos += 5;
  672. } else if (*str == '<') {
  673. memcpy(&out[pos], "&lt;", 4);
  674. pos += 4;
  675. } else if (*str == '>') {
  676. memcpy(&out[pos], "&gt;", 4);
  677. pos += 4;
  678. } else if (*str == '\'') {
  679. memcpy(&out[pos], "&apos;", 6);
  680. pos += 6;
  681. } else if (*str == '\"') {
  682. memcpy(&out[pos], "&quot;", 6);
  683. pos += 6;
  684. } else {
  685. out[pos++] = *str;
  686. }
  687. }
  688. out[pos] = '\0';
  689. return out;
  690. }
  691. static void write_time(AVIOContext *out, int64_t time)
  692. {
  693. int seconds = time / AV_TIME_BASE;
  694. int fractions = time % AV_TIME_BASE;
  695. int minutes = seconds / 60;
  696. int hours = minutes / 60;
  697. seconds %= 60;
  698. minutes %= 60;
  699. avio_printf(out, "PT");
  700. if (hours)
  701. avio_printf(out, "%dH", hours);
  702. if (hours || minutes)
  703. avio_printf(out, "%dM", minutes);
  704. avio_printf(out, "%d.%dS", seconds, fractions / (AV_TIME_BASE / 10));
  705. }
  706. static void format_date(char *buf, int size, int64_t time_us)
  707. {
  708. struct tm *ptm, tmbuf;
  709. int64_t time_ms = time_us / 1000;
  710. const time_t time_s = time_ms / 1000;
  711. int millisec = time_ms - (time_s * 1000);
  712. ptm = gmtime_r(&time_s, &tmbuf);
  713. if (ptm) {
  714. int len;
  715. if (!strftime(buf, size, "%Y-%m-%dT%H:%M:%S", ptm)) {
  716. buf[0] = '\0';
  717. return;
  718. }
  719. len = strlen(buf);
  720. snprintf(buf + len, size - len, ".%03dZ", millisec);
  721. }
  722. }
  723. static int write_adaptation_set(AVFormatContext *s, AVIOContext *out, int as_index,
  724. int final)
  725. {
  726. DASHContext *c = s->priv_data;
  727. AdaptationSet *as = &c->as[as_index];
  728. AVDictionaryEntry *lang, *role;
  729. int i;
  730. avio_printf(out, "\t\t<AdaptationSet id=\"%s\" contentType=\"%s\" segmentAlignment=\"true\" bitstreamSwitching=\"true\"",
  731. as->id, as->media_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio");
  732. if (as->media_type == AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && av_cmp_q(as->min_frame_rate, as->max_frame_rate) < 0)
  733. avio_printf(out, " maxFrameRate=\"%d/%d\"", as->max_frame_rate.num, as->max_frame_rate.den);
  734. else if (as->media_type == AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && !av_cmp_q(as->min_frame_rate, as->max_frame_rate))
  735. avio_printf(out, " frameRate=\"%d/%d\"", as->max_frame_rate.num, as->max_frame_rate.den);
  736. if (as->media_type == AVMEDIA_TYPE_VIDEO) {
  737. avio_printf(out, " maxWidth=\"%d\" maxHeight=\"%d\"", as->max_width, as->max_height);
  738. avio_printf(out, " par=\"%d:%d\"", as->par.num, as->par.den);
  739. }
  740. lang = av_dict_get(as->metadata, "language", NULL, 0);
  741. if (lang)
  742. avio_printf(out, " lang=\"%s\"", lang->value);
  743. avio_printf(out, ">\n");
  744. if (!final && c->ldash && as->max_frag_duration)
  745. avio_printf(out, "\t\t\t<Resync dT=\"%"PRId64"\" type=\"0\"/>\n", as->max_frag_duration);
  746. role = av_dict_get(as->metadata, "role", NULL, 0);
  747. if (role)
  748. avio_printf(out, "\t\t\t<Role schemeIdUri=\"urn:mpeg:dash:role:2011\" value=\"%s\"/>\n", role->value);
  749. if (as->descriptor)
  750. avio_printf(out, "\t\t\t%s\n", as->descriptor);
  751. for (i = 0; i < s->nb_streams; i++) {
  752. AVStream *st = s->streams[i];
  753. OutputStream *os = &c->streams[i];
  754. char bandwidth_str[64] = {'\0'};
  755. if (os->as_idx - 1 != as_index)
  756. continue;
  757. if (os->bit_rate > 0)
  758. snprintf(bandwidth_str, sizeof(bandwidth_str), " bandwidth=\"%d\"",
  759. os->bit_rate);
  760. if (as->media_type == AVMEDIA_TYPE_VIDEO) {
  761. avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"video/%s\" codecs=\"%s\"%s width=\"%d\" height=\"%d\"",
  762. i, os->format_name, os->codec_str, bandwidth_str, s->streams[i]->codecpar->width, s->streams[i]->codecpar->height);
  763. if (st->codecpar->field_order == AV_FIELD_UNKNOWN)
  764. avio_printf(out, " scanType=\"unknown\"");
  765. else if (st->codecpar->field_order != AV_FIELD_PROGRESSIVE)
  766. avio_printf(out, " scanType=\"interlaced\"");
  767. avio_printf(out, " sar=\"%d:%d\"", os->sar.num, os->sar.den);
  768. if (st->avg_frame_rate.num && av_cmp_q(as->min_frame_rate, as->max_frame_rate) < 0)
  769. avio_printf(out, " frameRate=\"%d/%d\"", st->avg_frame_rate.num, st->avg_frame_rate.den);
  770. avio_printf(out, ">\n");
  771. } else {
  772. avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"audio/%s\" codecs=\"%s\"%s audioSamplingRate=\"%d\">\n",
  773. i, os->format_name, os->codec_str, bandwidth_str, s->streams[i]->codecpar->sample_rate);
  774. avio_printf(out, "\t\t\t\t<AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"%d\" />\n",
  775. s->streams[i]->codecpar->channels);
  776. }
  777. if (!final && c->write_prft && os->producer_reference_time_str[0]) {
  778. avio_printf(out, "\t\t\t\t<ProducerReferenceTime id=\"%d\" inband=\"true\" type=\"encoder\" wallclockTime=\"%s\" presentationTime=\"%"PRId64"\">\n",
  779. i, os->producer_reference_time_str, c->presentation_time_offset);
  780. avio_printf(out, "\t\t\t\t\t<UTCTiming schemeIdUri=\"urn:mpeg:dash:utc:http-xsdate:2014\" value=\"%s\"/>\n", c->utc_timing_url);
  781. avio_printf(out, "\t\t\t\t</ProducerReferenceTime>\n");
  782. }
  783. if (!final && c->ldash && os->gop_size && os->frag_type != FRAG_TYPE_NONE &&
  784. (os->frag_type != FRAG_TYPE_DURATION || os->frag_duration != os->seg_duration))
  785. avio_printf(out, "\t\t\t\t<Resync dT=\"%"PRId64"\" type=\"1\"/>\n", os->gop_size);
  786. output_segment_list(os, out, s, i, final);
  787. avio_printf(out, "\t\t\t</Representation>\n");
  788. }
  789. avio_printf(out, "\t\t</AdaptationSet>\n");
  790. return 0;
  791. }
  792. static int add_adaptation_set(AVFormatContext *s, AdaptationSet **as, enum AVMediaType type)
  793. {
  794. DASHContext *c = s->priv_data;
  795. void *mem;
  796. if (c->profile & MPD_PROFILE_DVB && (c->nb_as + 1) > 16) {
  797. av_log(s, AV_LOG_ERROR, "DVB-DASH profile allows a max of 16 Adaptation Sets\n");
  798. return AVERROR(EINVAL);
  799. }
  800. mem = av_realloc(c->as, sizeof(*c->as) * (c->nb_as + 1));
  801. if (!mem)
  802. return AVERROR(ENOMEM);
  803. c->as = mem;
  804. ++c->nb_as;
  805. *as = &c->as[c->nb_as - 1];
  806. memset(*as, 0, sizeof(**as));
  807. (*as)->media_type = type;
  808. (*as)->frag_type = -1;
  809. return 0;
  810. }
  811. static int adaptation_set_add_stream(AVFormatContext *s, int as_idx, int i)
  812. {
  813. DASHContext *c = s->priv_data;
  814. AdaptationSet *as = &c->as[as_idx - 1];
  815. OutputStream *os = &c->streams[i];
  816. if (as->media_type != s->streams[i]->codecpar->codec_type) {
  817. av_log(s, AV_LOG_ERROR, "Codec type of stream %d doesn't match AdaptationSet's media type\n", i);
  818. return AVERROR(EINVAL);
  819. } else if (os->as_idx) {
  820. av_log(s, AV_LOG_ERROR, "Stream %d is already assigned to an AdaptationSet\n", i);
  821. return AVERROR(EINVAL);
  822. }
  823. if (c->profile & MPD_PROFILE_DVB && (as->nb_streams + 1) > 16) {
  824. av_log(s, AV_LOG_ERROR, "DVB-DASH profile allows a max of 16 Representations per Adaptation Set\n");
  825. return AVERROR(EINVAL);
  826. }
  827. os->as_idx = as_idx;
  828. ++as->nb_streams;
  829. return 0;
  830. }
  831. static int parse_adaptation_sets(AVFormatContext *s)
  832. {
  833. DASHContext *c = s->priv_data;
  834. const char *p = c->adaptation_sets;
  835. enum { new_set, parse_default, parsing_streams, parse_seg_duration, parse_frag_duration } state;
  836. AdaptationSet *as;
  837. int i, n, ret;
  838. // default: one AdaptationSet for each stream
  839. if (!p) {
  840. for (i = 0; i < s->nb_streams; i++) {
  841. if ((ret = add_adaptation_set(s, &as, s->streams[i]->codecpar->codec_type)) < 0)
  842. return ret;
  843. snprintf(as->id, sizeof(as->id), "%d", i);
  844. c->streams[i].as_idx = c->nb_as;
  845. ++as->nb_streams;
  846. }
  847. goto end;
  848. }
  849. // syntax id=0,streams=0,1,2 id=1,streams=3,4 and so on
  850. // option id=0,descriptor=descriptor_str,streams=0,1,2 and so on
  851. // option id=0,seg_duration=2.5,frag_duration=0.5,streams=0,1,2 and so on
  852. // descriptor is useful to the scheme defined by ISO/IEC 23009-1:2014/Amd.2:2015
  853. // descriptor_str should be a self-closing xml tag.
  854. // seg_duration and frag_duration have the same syntax as the global options of
  855. // the same name, and the former have precedence over them if set.
  856. state = new_set;
  857. while (*p) {
  858. if (*p == ' ') {
  859. p++;
  860. continue;
  861. } else if (state == new_set && av_strstart(p, "id=", &p)) {
  862. if ((ret = add_adaptation_set(s, &as, AVMEDIA_TYPE_UNKNOWN)) < 0)
  863. return ret;
  864. n = strcspn(p, ",");
  865. snprintf(as->id, sizeof(as->id), "%.*s", n, p);
  866. p += n;
  867. if (*p)
  868. p++;
  869. state = parse_default;
  870. } else if (state != new_set && av_strstart(p, "seg_duration=", &p)) {
  871. state = parse_seg_duration;
  872. } else if (state != new_set && av_strstart(p, "frag_duration=", &p)) {
  873. state = parse_frag_duration;
  874. } else if (state == parse_seg_duration || state == parse_frag_duration) {
  875. char str[32];
  876. int64_t usecs = 0;
  877. n = strcspn(p, ",");
  878. snprintf(str, sizeof(str), "%.*s", n, p);
  879. p += n;
  880. if (*p)
  881. p++;
  882. ret = av_parse_time(&usecs, str, 1);
  883. if (ret < 0) {
  884. av_log(s, AV_LOG_ERROR, "Unable to parse option value \"%s\" as duration\n", str);
  885. return ret;
  886. }
  887. if (state == parse_seg_duration)
  888. as->seg_duration = usecs;
  889. else
  890. as->frag_duration = usecs;
  891. state = parse_default;
  892. } else if (state != new_set && av_strstart(p, "frag_type=", &p)) {
  893. char type_str[16];
  894. n = strcspn(p, ",");
  895. snprintf(type_str, sizeof(type_str), "%.*s", n, p);
  896. p += n;
  897. if (*p)
  898. p++;
  899. if (!strcmp(type_str, "duration"))
  900. as->frag_type = FRAG_TYPE_DURATION;
  901. else if (!strcmp(type_str, "pframes"))
  902. as->frag_type = FRAG_TYPE_PFRAMES;
  903. else if (!strcmp(type_str, "every_frame"))
  904. as->frag_type = FRAG_TYPE_EVERY_FRAME;
  905. else if (!strcmp(type_str, "none"))
  906. as->frag_type = FRAG_TYPE_NONE;
  907. else {
  908. av_log(s, AV_LOG_ERROR, "Unable to parse option value \"%s\" as fragment type\n", type_str);
  909. return ret;
  910. }
  911. state = parse_default;
  912. } else if (state != new_set && av_strstart(p, "descriptor=", &p)) {
  913. n = strcspn(p, ">") + 1; //followed by one comma, so plus 1
  914. if (n < strlen(p)) {
  915. as->descriptor = av_strndup(p, n);
  916. } else {
  917. av_log(s, AV_LOG_ERROR, "Parse error, descriptor string should be a self-closing xml tag\n");
  918. return AVERROR(EINVAL);
  919. }
  920. p += n;
  921. if (*p)
  922. p++;
  923. state = parse_default;
  924. } else if ((state != new_set) && av_strstart(p, "streams=", &p)) { //descriptor and durations are optional
  925. state = parsing_streams;
  926. } else if (state == parsing_streams) {
  927. AdaptationSet *as = &c->as[c->nb_as - 1];
  928. char idx_str[8], *end_str;
  929. n = strcspn(p, " ,");
  930. snprintf(idx_str, sizeof(idx_str), "%.*s", n, p);
  931. p += n;
  932. // if value is "a" or "v", map all streams of that type
  933. if (as->media_type == AVMEDIA_TYPE_UNKNOWN && (idx_str[0] == 'v' || idx_str[0] == 'a')) {
  934. enum AVMediaType type = (idx_str[0] == 'v') ? AVMEDIA_TYPE_VIDEO : AVMEDIA_TYPE_AUDIO;
  935. av_log(s, AV_LOG_DEBUG, "Map all streams of type %s\n", idx_str);
  936. for (i = 0; i < s->nb_streams; i++) {
  937. if (s->streams[i]->codecpar->codec_type != type)
  938. continue;
  939. as->media_type = s->streams[i]->codecpar->codec_type;
  940. if ((ret = adaptation_set_add_stream(s, c->nb_as, i)) < 0)
  941. return ret;
  942. }
  943. } else { // select single stream
  944. i = strtol(idx_str, &end_str, 10);
  945. if (idx_str == end_str || i < 0 || i >= s->nb_streams) {
  946. av_log(s, AV_LOG_ERROR, "Selected stream \"%s\" not found!\n", idx_str);
  947. return AVERROR(EINVAL);
  948. }
  949. av_log(s, AV_LOG_DEBUG, "Map stream %d\n", i);
  950. if (as->media_type == AVMEDIA_TYPE_UNKNOWN) {
  951. as->media_type = s->streams[i]->codecpar->codec_type;
  952. }
  953. if ((ret = adaptation_set_add_stream(s, c->nb_as, i)) < 0)
  954. return ret;
  955. }
  956. if (*p == ' ')
  957. state = new_set;
  958. if (*p)
  959. p++;
  960. } else {
  961. return AVERROR(EINVAL);
  962. }
  963. }
  964. end:
  965. // check for unassigned streams
  966. for (i = 0; i < s->nb_streams; i++) {
  967. OutputStream *os = &c->streams[i];
  968. if (!os->as_idx) {
  969. av_log(s, AV_LOG_ERROR, "Stream %d is not mapped to an AdaptationSet\n", i);
  970. return AVERROR(EINVAL);
  971. }
  972. }
  973. return 0;
  974. }
  975. static int write_manifest(AVFormatContext *s, int final)
  976. {
  977. DASHContext *c = s->priv_data;
  978. AVIOContext *out;
  979. char temp_filename[1024];
  980. int ret, i;
  981. const char *proto = avio_find_protocol_name(s->url);
  982. int use_rename = proto && !strcmp(proto, "file");
  983. static unsigned int warned_non_file = 0;
  984. AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
  985. AVDictionary *opts = NULL;
  986. if (!use_rename && !warned_non_file++)
  987. av_log(s, AV_LOG_ERROR, "Cannot use rename on non file protocol, this may lead to races and temporary partial files\n");
  988. snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", s->url);
  989. set_http_options(&opts, c);
  990. ret = dashenc_io_open(s, &c->mpd_out, temp_filename, &opts);
  991. av_dict_free(&opts);
  992. if (ret < 0) {
  993. return handle_io_open_error(s, ret, temp_filename);
  994. }
  995. out = c->mpd_out;
  996. avio_printf(out, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
  997. avio_printf(out, "<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
  998. "\txmlns=\"urn:mpeg:dash:schema:mpd:2011\"\n"
  999. "\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n"
  1000. "\txsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd\"\n"
  1001. "\tprofiles=\"");
  1002. if (c->profile & MPD_PROFILE_DASH)
  1003. avio_printf(out, "%s%s", "urn:mpeg:dash:profile:isoff-live:2011", c->profile & MPD_PROFILE_DVB ? "," : "\"\n");
  1004. if (c->profile & MPD_PROFILE_DVB)
  1005. avio_printf(out, "%s", "urn:dvb:dash:profile:dvb-dash:2014\"\n");
  1006. avio_printf(out, "\ttype=\"%s\"\n",
  1007. final ? "static" : "dynamic");
  1008. if (final) {
  1009. avio_printf(out, "\tmediaPresentationDuration=\"");
  1010. write_time(out, c->total_duration);
  1011. avio_printf(out, "\"\n");
  1012. } else {
  1013. int64_t update_period = c->last_duration / AV_TIME_BASE;
  1014. char now_str[100];
  1015. if (c->use_template && !c->use_timeline)
  1016. update_period = 500;
  1017. avio_printf(out, "\tminimumUpdatePeriod=\"PT%"PRId64"S\"\n", update_period);
  1018. if (!c->ldash)
  1019. avio_printf(out, "\tsuggestedPresentationDelay=\"PT%"PRId64"S\"\n", c->last_duration / AV_TIME_BASE);
  1020. if (c->availability_start_time[0])
  1021. avio_printf(out, "\tavailabilityStartTime=\"%s\"\n", c->availability_start_time);
  1022. format_date(now_str, sizeof(now_str), av_gettime());
  1023. if (now_str[0])
  1024. avio_printf(out, "\tpublishTime=\"%s\"\n", now_str);
  1025. if (c->window_size && c->use_template) {
  1026. avio_printf(out, "\ttimeShiftBufferDepth=\"");
  1027. write_time(out, c->last_duration * c->window_size);
  1028. avio_printf(out, "\"\n");
  1029. }
  1030. }
  1031. avio_printf(out, "\tminBufferTime=\"");
  1032. write_time(out, c->ldash && c->max_gop_size ? c->max_gop_size : c->last_duration * 2);
  1033. avio_printf(out, "\">\n");
  1034. avio_printf(out, "\t<ProgramInformation>\n");
  1035. if (title) {
  1036. char *escaped = xmlescape(title->value);
  1037. avio_printf(out, "\t\t<Title>%s</Title>\n", escaped);
  1038. av_free(escaped);
  1039. }
  1040. avio_printf(out, "\t</ProgramInformation>\n");
  1041. if (!final && c->target_latency && c->target_latency_refid >= 0) {
  1042. avio_printf(out, "\t<ServiceDescription id=\"0\">\n");
  1043. avio_printf(out, "\t\t<Latency target=\"%"PRId64"\"", c->target_latency / 1000);
  1044. if (s->nb_streams > 1)
  1045. avio_printf(out, " referenceId=\"%d\"", c->target_latency_refid);
  1046. avio_printf(out, "/>\n");
  1047. avio_printf(out, "\t</ServiceDescription>\n");
  1048. }
  1049. if (c->window_size && s->nb_streams > 0 && c->streams[0].nb_segments > 0 && !c->use_template) {
  1050. OutputStream *os = &c->streams[0];
  1051. int start_index = FFMAX(os->nb_segments - c->window_size, 0);
  1052. int64_t start_time = av_rescale_q(os->segments[start_index]->time, s->streams[0]->time_base, AV_TIME_BASE_Q);
  1053. avio_printf(out, "\t<Period id=\"0\" start=\"");
  1054. write_time(out, start_time);
  1055. avio_printf(out, "\">\n");
  1056. } else {
  1057. avio_printf(out, "\t<Period id=\"0\" start=\"PT0.0S\">\n");
  1058. }
  1059. for (i = 0; i < c->nb_as; i++) {
  1060. if ((ret = write_adaptation_set(s, out, i, final)) < 0)
  1061. return ret;
  1062. }
  1063. avio_printf(out, "\t</Period>\n");
  1064. if (c->utc_timing_url)
  1065. avio_printf(out, "\t<UTCTiming schemeIdUri=\"urn:mpeg:dash:utc:http-xsdate:2014\" value=\"%s\"/>\n", c->utc_timing_url);
  1066. avio_printf(out, "</MPD>\n");
  1067. avio_flush(out);
  1068. dashenc_io_close(s, &c->mpd_out, temp_filename);
  1069. if (use_rename) {
  1070. if ((ret = ff_rename(temp_filename, s->url, s)) < 0)
  1071. return ret;
  1072. }
  1073. if (c->hls_playlist) {
  1074. char filename_hls[1024];
  1075. const char *audio_group = "A1";
  1076. char audio_codec_str[128] = "\0";
  1077. int is_default = 1;
  1078. int max_audio_bitrate = 0;
  1079. // Publish master playlist only the configured rate
  1080. if (c->master_playlist_created && (!c->master_publish_rate ||
  1081. c->streams[0].segment_index % c->master_publish_rate))
  1082. return 0;
  1083. if (*c->dirname)
  1084. snprintf(filename_hls, sizeof(filename_hls), "%smaster.m3u8", c->dirname);
  1085. else
  1086. snprintf(filename_hls, sizeof(filename_hls), "master.m3u8");
  1087. snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", filename_hls);
  1088. set_http_options(&opts, c);
  1089. ret = dashenc_io_open(s, &c->m3u8_out, temp_filename, &opts);
  1090. av_dict_free(&opts);
  1091. if (ret < 0) {
  1092. return handle_io_open_error(s, ret, temp_filename);
  1093. }
  1094. ff_hls_write_playlist_version(c->m3u8_out, 7);
  1095. for (i = 0; i < s->nb_streams; i++) {
  1096. char playlist_file[64];
  1097. AVStream *st = s->streams[i];
  1098. OutputStream *os = &c->streams[i];
  1099. if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
  1100. continue;
  1101. if (os->segment_type != SEGMENT_TYPE_MP4)
  1102. continue;
  1103. get_hls_playlist_name(playlist_file, sizeof(playlist_file), NULL, i);
  1104. ff_hls_write_audio_rendition(c->m3u8_out, (char *)audio_group,
  1105. playlist_file, NULL, i, is_default);
  1106. max_audio_bitrate = FFMAX(st->codecpar->bit_rate +
  1107. os->muxer_overhead, max_audio_bitrate);
  1108. if (!av_strnstr(audio_codec_str, os->codec_str, sizeof(audio_codec_str))) {
  1109. if (strlen(audio_codec_str))
  1110. av_strlcat(audio_codec_str, ",", sizeof(audio_codec_str));
  1111. av_strlcat(audio_codec_str, os->codec_str, sizeof(audio_codec_str));
  1112. }
  1113. is_default = 0;
  1114. }
  1115. for (i = 0; i < s->nb_streams; i++) {
  1116. char playlist_file[64];
  1117. char codec_str[128];
  1118. AVStream *st = s->streams[i];
  1119. OutputStream *os = &c->streams[i];
  1120. char *agroup = NULL;
  1121. char *codec_str_ptr = NULL;
  1122. int stream_bitrate = st->codecpar->bit_rate + os->muxer_overhead;
  1123. if (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
  1124. continue;
  1125. if (os->segment_type != SEGMENT_TYPE_MP4)
  1126. continue;
  1127. av_strlcpy(codec_str, os->codec_str, sizeof(codec_str));
  1128. if (max_audio_bitrate) {
  1129. agroup = (char *)audio_group;
  1130. stream_bitrate += max_audio_bitrate;
  1131. av_strlcat(codec_str, ",", sizeof(codec_str));
  1132. av_strlcat(codec_str, audio_codec_str, sizeof(codec_str));
  1133. }
  1134. if (st->codecpar->codec_id != AV_CODEC_ID_HEVC) {
  1135. codec_str_ptr = codec_str;
  1136. }
  1137. get_hls_playlist_name(playlist_file, sizeof(playlist_file), NULL, i);
  1138. ff_hls_write_stream_info(st, c->m3u8_out, stream_bitrate,
  1139. playlist_file, agroup,
  1140. codec_str_ptr, NULL);
  1141. }
  1142. dashenc_io_close(s, &c->m3u8_out, temp_filename);
  1143. if (use_rename)
  1144. if ((ret = ff_rename(temp_filename, filename_hls, s)) < 0)
  1145. return ret;
  1146. c->master_playlist_created = 1;
  1147. }
  1148. return 0;
  1149. }
  1150. static int dict_copy_entry(AVDictionary **dst, const AVDictionary *src, const char *key)
  1151. {
  1152. AVDictionaryEntry *entry = av_dict_get(src, key, NULL, 0);
  1153. if (entry)
  1154. av_dict_set(dst, key, entry->value, AV_DICT_DONT_OVERWRITE);
  1155. return 0;
  1156. }
  1157. static int dash_init(AVFormatContext *s)
  1158. {
  1159. DASHContext *c = s->priv_data;
  1160. int ret = 0, i;
  1161. char *ptr;
  1162. char basename[1024];
  1163. c->nr_of_streams_to_flush = 0;
  1164. if (c->single_file_name)
  1165. c->single_file = 1;
  1166. if (c->single_file)
  1167. c->use_template = 0;
  1168. if (!c->profile) {
  1169. av_log(s, AV_LOG_ERROR, "At least one profile must be enabled.\n");
  1170. return AVERROR(EINVAL);
  1171. }
  1172. #if FF_API_DASH_MIN_SEG_DURATION
  1173. if (c->min_seg_duration != 5000000) {
  1174. av_log(s, AV_LOG_WARNING, "The min_seg_duration option is deprecated and will be removed. Please use the -seg_duration\n");
  1175. c->seg_duration = c->min_seg_duration;
  1176. }
  1177. #endif
  1178. if (c->lhls && s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
  1179. av_log(s, AV_LOG_ERROR,
  1180. "LHLS is experimental, Please set -strict experimental in order to enable it.\n");
  1181. return AVERROR_EXPERIMENTAL;
  1182. }
  1183. if (c->lhls && !c->streaming) {
  1184. av_log(s, AV_LOG_WARNING, "LHLS option will be ignored as streaming is not enabled\n");
  1185. c->lhls = 0;
  1186. }
  1187. if (c->lhls && !c->hls_playlist) {
  1188. av_log(s, AV_LOG_WARNING, "LHLS option will be ignored as hls_playlist is not enabled\n");
  1189. c->lhls = 0;
  1190. }
  1191. if (c->ldash && !c->streaming) {
  1192. av_log(s, AV_LOG_WARNING, "LDash option will be ignored as streaming is not enabled\n");
  1193. c->ldash = 0;
  1194. }
  1195. if (c->target_latency && !c->streaming) {
  1196. av_log(s, AV_LOG_WARNING, "Target latency option will be ignored as streaming is not enabled\n");
  1197. c->target_latency = 0;
  1198. }
  1199. if (c->global_sidx && !c->single_file) {
  1200. av_log(s, AV_LOG_WARNING, "Global SIDX option will be ignored as single_file is not enabled\n");
  1201. c->global_sidx = 0;
  1202. }
  1203. if (c->global_sidx && c->streaming) {
  1204. av_log(s, AV_LOG_WARNING, "Global SIDX option will be ignored as streaming is enabled\n");
  1205. c->global_sidx = 0;
  1206. }
  1207. if (c->frag_type == FRAG_TYPE_NONE && c->streaming) {
  1208. av_log(s, AV_LOG_VERBOSE, "Changing frag_type from none to every_frame as streaming is enabled\n");
  1209. c->frag_type = FRAG_TYPE_EVERY_FRAME;
  1210. }
  1211. if (c->write_prft && !c->utc_timing_url) {
  1212. av_log(s, AV_LOG_WARNING, "Producer Reference Time element option will be ignored as utc_timing_url is not set\n");
  1213. c->write_prft = 0;
  1214. }
  1215. if (c->write_prft && !c->streaming) {
  1216. av_log(s, AV_LOG_WARNING, "Producer Reference Time element option will be ignored as streaming is not enabled\n");
  1217. c->write_prft = 0;
  1218. }
  1219. if (c->target_latency && !c->write_prft) {
  1220. av_log(s, AV_LOG_WARNING, "Target latency option will be ignored as Producer Reference Time element will not be written\n");
  1221. c->target_latency = 0;
  1222. }
  1223. av_strlcpy(c->dirname, s->url, sizeof(c->dirname));
  1224. ptr = strrchr(c->dirname, '/');
  1225. if (ptr) {
  1226. av_strlcpy(basename, &ptr[1], sizeof(basename));
  1227. ptr[1] = '\0';
  1228. } else {
  1229. c->dirname[0] = '\0';
  1230. av_strlcpy(basename, s->url, sizeof(basename));
  1231. }
  1232. ptr = strrchr(basename, '.');
  1233. if (ptr)
  1234. *ptr = '\0';
  1235. c->streams = av_mallocz(sizeof(*c->streams) * s->nb_streams);
  1236. if (!c->streams)
  1237. return AVERROR(ENOMEM);
  1238. if ((ret = parse_adaptation_sets(s)) < 0)
  1239. return ret;
  1240. if ((ret = init_segment_types(s)) < 0)
  1241. return ret;
  1242. for (i = 0; i < s->nb_streams; i++) {
  1243. OutputStream *os = &c->streams[i];
  1244. AdaptationSet *as = &c->as[os->as_idx - 1];
  1245. AVFormatContext *ctx;
  1246. AVStream *st;
  1247. AVDictionary *opts = NULL;
  1248. char filename[1024];
  1249. os->bit_rate = s->streams[i]->codecpar->bit_rate;
  1250. if (!os->bit_rate) {
  1251. int level = s->strict_std_compliance >= FF_COMPLIANCE_STRICT ?
  1252. AV_LOG_ERROR : AV_LOG_WARNING;
  1253. av_log(s, level, "No bit rate set for stream %d\n", i);
  1254. if (s->strict_std_compliance >= FF_COMPLIANCE_STRICT)
  1255. return AVERROR(EINVAL);
  1256. }
  1257. // copy AdaptationSet language and role from stream metadata
  1258. dict_copy_entry(&as->metadata, s->streams[i]->metadata, "language");
  1259. dict_copy_entry(&as->metadata, s->streams[i]->metadata, "role");
  1260. if (c->init_seg_name) {
  1261. os->init_seg_name = av_strireplace(c->init_seg_name, "$ext$", os->extension_name);
  1262. if (!os->init_seg_name)
  1263. return AVERROR(ENOMEM);
  1264. }
  1265. if (c->media_seg_name) {
  1266. os->media_seg_name = av_strireplace(c->media_seg_name, "$ext$", os->extension_name);
  1267. if (!os->media_seg_name)
  1268. return AVERROR(ENOMEM);
  1269. }
  1270. if (c->single_file_name) {
  1271. os->single_file_name = av_strireplace(c->single_file_name, "$ext$", os->extension_name);
  1272. if (!os->single_file_name)
  1273. return AVERROR(ENOMEM);
  1274. }
  1275. if (os->segment_type == SEGMENT_TYPE_WEBM) {
  1276. if ((!c->single_file && check_file_extension(os->init_seg_name, os->format_name) != 0) ||
  1277. (!c->single_file && check_file_extension(os->media_seg_name, os->format_name) != 0) ||
  1278. (c->single_file && check_file_extension(os->single_file_name, os->format_name) != 0)) {
  1279. av_log(s, AV_LOG_WARNING,
  1280. "One or many segment file names doesn't end with .webm. "
  1281. "Override -init_seg_name and/or -media_seg_name and/or "
  1282. "-single_file_name to end with the extension .webm\n");
  1283. }
  1284. if (c->streaming) {
  1285. // Streaming not supported as matroskaenc buffers internally before writing the output
  1286. av_log(s, AV_LOG_WARNING, "One or more streams in WebM output format. Streaming option will be ignored\n");
  1287. c->streaming = 0;
  1288. }
  1289. }
  1290. os->ctx = ctx = avformat_alloc_context();
  1291. if (!ctx)
  1292. return AVERROR(ENOMEM);
  1293. ctx->oformat = av_guess_format(os->format_name, NULL, NULL);
  1294. if (!ctx->oformat)
  1295. return AVERROR_MUXER_NOT_FOUND;
  1296. ctx->interrupt_callback = s->interrupt_callback;
  1297. ctx->opaque = s->opaque;
  1298. ctx->io_close = s->io_close;
  1299. ctx->io_open = s->io_open;
  1300. ctx->strict_std_compliance = s->strict_std_compliance;
  1301. if (!(st = avformat_new_stream(ctx, NULL)))
  1302. return AVERROR(ENOMEM);
  1303. avcodec_parameters_copy(st->codecpar, s->streams[i]->codecpar);
  1304. st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
  1305. st->time_base = s->streams[i]->time_base;
  1306. st->avg_frame_rate = s->streams[i]->avg_frame_rate;
  1307. ctx->avoid_negative_ts = s->avoid_negative_ts;
  1308. ctx->flags = s->flags;
  1309. os->parser = av_parser_init(st->codecpar->codec_id);
  1310. if (os->parser) {
  1311. os->parser_avctx = avcodec_alloc_context3(NULL);
  1312. if (!os->parser_avctx)
  1313. return AVERROR(ENOMEM);
  1314. ret = avcodec_parameters_to_context(os->parser_avctx, st->codecpar);
  1315. if (ret < 0)
  1316. return ret;
  1317. // We only want to parse frame headers
  1318. os->parser->flags |= PARSER_FLAG_COMPLETE_FRAMES;
  1319. }
  1320. if (c->single_file) {
  1321. if (os->single_file_name)
  1322. ff_dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), os->single_file_name, i, 0, os->bit_rate, 0);
  1323. else
  1324. snprintf(os->initfile, sizeof(os->initfile), "%s-stream%d.%s", basename, i, os->format_name);
  1325. } else {
  1326. ff_dash_fill_tmpl_params(os->initfile, sizeof(os->initfile), os->init_seg_name, i, 0, os->bit_rate, 0);
  1327. }
  1328. snprintf(filename, sizeof(filename), "%s%s", c->dirname, os->initfile);
  1329. set_http_options(&opts, c);
  1330. if (!c->single_file) {
  1331. if ((ret = avio_open_dyn_buf(&ctx->pb)) < 0)
  1332. return ret;
  1333. ret = s->io_open(s, &os->out, filename, AVIO_FLAG_WRITE, &opts);
  1334. } else {
  1335. ctx->url = av_strdup(filename);
  1336. ret = avio_open2(&ctx->pb, filename, AVIO_FLAG_WRITE, NULL, &opts);
  1337. }
  1338. av_dict_free(&opts);
  1339. if (ret < 0)
  1340. return ret;
  1341. os->init_start_pos = 0;
  1342. av_dict_copy(&opts, c->format_options, 0);
  1343. if (!as->seg_duration)
  1344. as->seg_duration = c->seg_duration;
  1345. if (!as->frag_duration)
  1346. as->frag_duration = c->frag_duration;
  1347. if (as->frag_type < 0)
  1348. as->frag_type = c->frag_type;
  1349. os->seg_duration = as->seg_duration;
  1350. os->frag_duration = as->frag_duration;
  1351. os->frag_type = as->frag_type;
  1352. if (c->profile & MPD_PROFILE_DVB && (os->seg_duration > 15000000 || os->seg_duration < 960000)) {
  1353. av_log(s, AV_LOG_ERROR, "Segment duration %"PRId64" is outside the allowed range for DVB-DASH profile\n", os->seg_duration);
  1354. return AVERROR(EINVAL);
  1355. }
  1356. if (os->frag_type == FRAG_TYPE_DURATION && !os->frag_duration) {
  1357. av_log(s, AV_LOG_WARNING, "frag_type set to duration for stream %d but no frag_duration set\n", i);
  1358. os->frag_type = c->streaming ? FRAG_TYPE_EVERY_FRAME : FRAG_TYPE_NONE;
  1359. }
  1360. if (os->frag_type == FRAG_TYPE_DURATION && os->frag_duration > os->seg_duration) {
  1361. av_log(s, AV_LOG_ERROR, "Fragment duration %"PRId64" is longer than Segment duration %"PRId64"\n", os->frag_duration, os->seg_duration);
  1362. return AVERROR(EINVAL);
  1363. }
  1364. if (os->frag_type == FRAG_TYPE_PFRAMES && (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO || !os->parser)) {
  1365. if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && !os->parser)
  1366. av_log(s, AV_LOG_WARNING, "frag_type set to P-Frame reordering, but no parser found for stream %d\n", i);
  1367. os->frag_type = c->streaming ? FRAG_TYPE_EVERY_FRAME : FRAG_TYPE_NONE;
  1368. }
  1369. if (os->segment_type == SEGMENT_TYPE_MP4) {
  1370. if (c->streaming)
  1371. // skip_sidx : Reduce bitrate overhead
  1372. // skip_trailer : Avoids growing memory usage with time
  1373. av_dict_set(&opts, "movflags", "+dash+delay_moov+skip_sidx+skip_trailer", AV_DICT_APPEND);
  1374. else {
  1375. if (c->global_sidx)
  1376. av_dict_set(&opts, "movflags", "+dash+delay_moov+global_sidx+skip_trailer", AV_DICT_APPEND);
  1377. else
  1378. av_dict_set(&opts, "movflags", "+dash+delay_moov+skip_trailer", AV_DICT_APPEND);
  1379. }
  1380. if (os->frag_type == FRAG_TYPE_EVERY_FRAME)
  1381. av_dict_set(&opts, "movflags", "+frag_every_frame", AV_DICT_APPEND);
  1382. else
  1383. av_dict_set(&opts, "movflags", "+frag_custom", AV_DICT_APPEND);
  1384. if (os->frag_type == FRAG_TYPE_DURATION)
  1385. av_dict_set_int(&opts, "frag_duration", os->frag_duration, 0);
  1386. if (c->write_prft)
  1387. av_dict_set(&opts, "write_prft", "wallclock", 0);
  1388. } else {
  1389. av_dict_set_int(&opts, "cluster_time_limit", c->seg_duration / 1000, 0);
  1390. av_dict_set_int(&opts, "cluster_size_limit", 5 * 1024 * 1024, 0); // set a large cluster size limit
  1391. av_dict_set_int(&opts, "dash", 1, 0);
  1392. av_dict_set_int(&opts, "dash_track_number", i + 1, 0);
  1393. av_dict_set_int(&opts, "live", 1, 0);
  1394. }
  1395. ret = avformat_init_output(ctx, &opts);
  1396. av_dict_free(&opts);
  1397. if (ret < 0)
  1398. return ret;
  1399. os->ctx_inited = 1;
  1400. avio_flush(ctx->pb);
  1401. av_log(s, AV_LOG_VERBOSE, "Representation %d init segment will be written to: %s\n", i, filename);
  1402. s->streams[i]->time_base = st->time_base;
  1403. // If the muxer wants to shift timestamps, request to have them shifted
  1404. // already before being handed to this muxer, so we don't have mismatches
  1405. // between the MPD and the actual segments.
  1406. s->avoid_negative_ts = ctx->avoid_negative_ts;
  1407. if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
  1408. AVRational avg_frame_rate = s->streams[i]->avg_frame_rate;
  1409. AVRational par;
  1410. if (avg_frame_rate.num > 0) {
  1411. if (av_cmp_q(avg_frame_rate, as->min_frame_rate) < 0)
  1412. as->min_frame_rate = avg_frame_rate;
  1413. if (av_cmp_q(as->max_frame_rate, avg_frame_rate) < 0)
  1414. as->max_frame_rate = avg_frame_rate;
  1415. } else {
  1416. as->ambiguous_frame_rate = 1;
  1417. }
  1418. if (st->codecpar->width > as->max_width)
  1419. as->max_width = st->codecpar->width;
  1420. if (st->codecpar->height > as->max_height)
  1421. as->max_height = st->codecpar->height;
  1422. if (st->sample_aspect_ratio.num)
  1423. os->sar = st->sample_aspect_ratio;
  1424. else
  1425. os->sar = (AVRational){1,1};
  1426. av_reduce(&par.num, &par.den,
  1427. st->codecpar->width * (int64_t)os->sar.num,
  1428. st->codecpar->height * (int64_t)os->sar.den,
  1429. 1024 * 1024);
  1430. if (as->par.num && av_cmp_q(par, as->par)) {
  1431. av_log(s, AV_LOG_ERROR, "Conflicting stream par values in Adaptation Set %d\n", os->as_idx);
  1432. return AVERROR(EINVAL);
  1433. }
  1434. as->par = par;
  1435. c->has_video = 1;
  1436. }
  1437. set_codec_str(s, st->codecpar, &st->avg_frame_rate, os->codec_str,
  1438. sizeof(os->codec_str));
  1439. os->first_pts = AV_NOPTS_VALUE;
  1440. os->max_pts = AV_NOPTS_VALUE;
  1441. os->last_dts = AV_NOPTS_VALUE;
  1442. os->segment_index = 1;
  1443. if (s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
  1444. c->nr_of_streams_to_flush++;
  1445. }
  1446. if (!c->has_video && c->seg_duration <= 0) {
  1447. av_log(s, AV_LOG_WARNING, "no video stream and no seg duration set\n");
  1448. return AVERROR(EINVAL);
  1449. }
  1450. if (!c->has_video && c->frag_type == FRAG_TYPE_PFRAMES)
  1451. av_log(s, AV_LOG_WARNING, "no video stream and P-frame fragmentation set\n");
  1452. c->nr_of_streams_flushed = 0;
  1453. c->target_latency_refid = -1;
  1454. return 0;
  1455. }
  1456. static int dash_write_header(AVFormatContext *s)
  1457. {
  1458. DASHContext *c = s->priv_data;
  1459. int i, ret;
  1460. for (i = 0; i < s->nb_streams; i++) {
  1461. OutputStream *os = &c->streams[i];
  1462. if ((ret = avformat_write_header(os->ctx, NULL)) < 0)
  1463. return ret;
  1464. // Flush init segment
  1465. // Only for WebM segment, since for mp4 delay_moov is set and
  1466. // the init segment is thus flushed after the first packets.
  1467. if (os->segment_type == SEGMENT_TYPE_WEBM &&
  1468. (ret = flush_init_segment(s, os)) < 0)
  1469. return ret;
  1470. }
  1471. return ret;
  1472. }
  1473. static int add_segment(OutputStream *os, const char *file,
  1474. int64_t time, int64_t duration,
  1475. int64_t start_pos, int64_t range_length,
  1476. int64_t index_length, int next_exp_index)
  1477. {
  1478. int err;
  1479. Segment *seg;
  1480. if (os->nb_segments >= os->segments_size) {
  1481. os->segments_size = (os->segments_size + 1) * 2;
  1482. if ((err = av_reallocp(&os->segments, sizeof(*os->segments) *
  1483. os->segments_size)) < 0) {
  1484. os->segments_size = 0;
  1485. os->nb_segments = 0;
  1486. return err;
  1487. }
  1488. }
  1489. seg = av_mallocz(sizeof(*seg));
  1490. if (!seg)
  1491. return AVERROR(ENOMEM);
  1492. av_strlcpy(seg->file, file, sizeof(seg->file));
  1493. seg->time = time;
  1494. seg->duration = duration;
  1495. if (seg->time < 0) { // If pts<0, it is expected to be cut away with an edit list
  1496. seg->duration += seg->time;
  1497. seg->time = 0;
  1498. }
  1499. seg->start_pos = start_pos;
  1500. seg->range_length = range_length;
  1501. seg->index_length = index_length;
  1502. os->segments[os->nb_segments++] = seg;
  1503. os->segment_index++;
  1504. //correcting the segment index if it has fallen behind the expected value
  1505. if (os->segment_index < next_exp_index) {
  1506. av_log(NULL, AV_LOG_WARNING, "Correcting the segment index after file %s: current=%d corrected=%d\n",
  1507. file, os->segment_index, next_exp_index);
  1508. os->segment_index = next_exp_index;
  1509. }
  1510. return 0;
  1511. }
  1512. static void write_styp(AVIOContext *pb)
  1513. {
  1514. avio_wb32(pb, 24);
  1515. ffio_wfourcc(pb, "styp");
  1516. ffio_wfourcc(pb, "msdh");
  1517. avio_wb32(pb, 0); /* minor */
  1518. ffio_wfourcc(pb, "msdh");
  1519. ffio_wfourcc(pb, "msix");
  1520. }
  1521. static void find_index_range(AVFormatContext *s, const char *full_path,
  1522. int64_t pos, int *index_length)
  1523. {
  1524. uint8_t buf[8];
  1525. AVIOContext *pb;
  1526. int ret;
  1527. ret = s->io_open(s, &pb, full_path, AVIO_FLAG_READ, NULL);
  1528. if (ret < 0)
  1529. return;
  1530. if (avio_seek(pb, pos, SEEK_SET) != pos) {
  1531. ff_format_io_close(s, &pb);
  1532. return;
  1533. }
  1534. ret = avio_read(pb, buf, 8);
  1535. ff_format_io_close(s, &pb);
  1536. if (ret < 8)
  1537. return;
  1538. if (AV_RL32(&buf[4]) != MKTAG('s', 'i', 'd', 'x'))
  1539. return;
  1540. *index_length = AV_RB32(&buf[0]);
  1541. }
  1542. static int update_stream_extradata(AVFormatContext *s, OutputStream *os,
  1543. AVPacket *pkt, AVRational *frame_rate)
  1544. {
  1545. AVCodecParameters *par = os->ctx->streams[0]->codecpar;
  1546. uint8_t *extradata;
  1547. int ret, extradata_size;
  1548. if (par->extradata_size)
  1549. return 0;
  1550. extradata = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, &extradata_size);
  1551. if (!extradata_size)
  1552. return 0;
  1553. ret = ff_alloc_extradata(par, extradata_size);
  1554. if (ret < 0)
  1555. return ret;
  1556. memcpy(par->extradata, extradata, extradata_size);
  1557. set_codec_str(s, par, frame_rate, os->codec_str, sizeof(os->codec_str));
  1558. return 0;
  1559. }
  1560. static void dashenc_delete_file(AVFormatContext *s, char *filename) {
  1561. DASHContext *c = s->priv_data;
  1562. int http_base_proto = ff_is_http_proto(filename);
  1563. if (http_base_proto) {
  1564. AVIOContext *out = NULL;
  1565. AVDictionary *http_opts = NULL;
  1566. set_http_options(&http_opts, c);
  1567. av_dict_set(&http_opts, "method", "DELETE", 0);
  1568. if (dashenc_io_open(s, &out, filename, &http_opts) < 0) {
  1569. av_log(s, AV_LOG_ERROR, "failed to delete %s\n", filename);
  1570. }
  1571. av_dict_free(&http_opts);
  1572. ff_format_io_close(s, &out);
  1573. } else {
  1574. int res = avpriv_io_delete(filename);
  1575. if (res < 0) {
  1576. char errbuf[AV_ERROR_MAX_STRING_SIZE];
  1577. av_strerror(res, errbuf, sizeof(errbuf));
  1578. av_log(s, (res == AVERROR(ENOENT) ? AV_LOG_WARNING : AV_LOG_ERROR), "failed to delete %s: %s\n", filename, errbuf);
  1579. }
  1580. }
  1581. }
  1582. static int dashenc_delete_segment_file(AVFormatContext *s, const char* file)
  1583. {
  1584. DASHContext *c = s->priv_data;
  1585. size_t dirname_len, file_len;
  1586. char filename[1024];
  1587. dirname_len = strlen(c->dirname);
  1588. if (dirname_len >= sizeof(filename)) {
  1589. av_log(s, AV_LOG_WARNING, "Cannot delete segments as the directory path is too long: %"PRIu64" characters: %s\n",
  1590. (uint64_t)dirname_len, c->dirname);
  1591. return AVERROR(ENAMETOOLONG);
  1592. }
  1593. memcpy(filename, c->dirname, dirname_len);
  1594. file_len = strlen(file);
  1595. if ((dirname_len + file_len) >= sizeof(filename)) {
  1596. av_log(s, AV_LOG_WARNING, "Cannot delete segments as the path is too long: %"PRIu64" characters: %s%s\n",
  1597. (uint64_t)(dirname_len + file_len), c->dirname, file);
  1598. return AVERROR(ENAMETOOLONG);
  1599. }
  1600. memcpy(filename + dirname_len, file, file_len + 1); // include the terminating zero
  1601. dashenc_delete_file(s, filename);
  1602. return 0;
  1603. }
  1604. static inline void dashenc_delete_media_segments(AVFormatContext *s, OutputStream *os, int remove_count)
  1605. {
  1606. for (int i = 0; i < remove_count; ++i) {
  1607. dashenc_delete_segment_file(s, os->segments[i]->file);
  1608. // Delete the segment regardless of whether the file was successfully deleted
  1609. av_free(os->segments[i]);
  1610. }
  1611. os->nb_segments -= remove_count;
  1612. memmove(os->segments, os->segments + remove_count, os->nb_segments * sizeof(*os->segments));
  1613. }
  1614. static int dash_flush(AVFormatContext *s, int final, int stream)
  1615. {
  1616. DASHContext *c = s->priv_data;
  1617. int i, ret = 0;
  1618. const char *proto = avio_find_protocol_name(s->url);
  1619. int use_rename = proto && !strcmp(proto, "file");
  1620. int cur_flush_segment_index = 0, next_exp_index = -1;
  1621. if (stream >= 0) {
  1622. cur_flush_segment_index = c->streams[stream].segment_index;
  1623. //finding the next segment's expected index, based on the current pts value
  1624. if (c->use_template && !c->use_timeline && c->index_correction &&
  1625. c->streams[stream].last_pts != AV_NOPTS_VALUE &&
  1626. c->streams[stream].first_pts != AV_NOPTS_VALUE) {
  1627. int64_t pts_diff = av_rescale_q(c->streams[stream].last_pts -
  1628. c->streams[stream].first_pts,
  1629. s->streams[stream]->time_base,
  1630. AV_TIME_BASE_Q);
  1631. next_exp_index = (pts_diff / c->streams[stream].seg_duration) + 1;
  1632. }
  1633. }
  1634. for (i = 0; i < s->nb_streams; i++) {
  1635. OutputStream *os = &c->streams[i];
  1636. AVStream *st = s->streams[i];
  1637. int range_length, index_length = 0;
  1638. if (!os->packets_written)
  1639. continue;
  1640. // Flush the single stream that got a keyframe right now.
  1641. // Flush all audio streams as well, in sync with video keyframes,
  1642. // but not the other video streams.
  1643. if (stream >= 0 && i != stream) {
  1644. if (s->streams[stream]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO &&
  1645. s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
  1646. continue;
  1647. if (s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
  1648. continue;
  1649. // Make sure we don't flush audio streams multiple times, when
  1650. // all video streams are flushed one at a time.
  1651. if (c->has_video && os->segment_index > cur_flush_segment_index)
  1652. continue;
  1653. }
  1654. if (!c->single_file) {
  1655. if (os->segment_type == SEGMENT_TYPE_MP4 && !os->written_len)
  1656. write_styp(os->ctx->pb);
  1657. } else {
  1658. snprintf(os->full_path, sizeof(os->full_path), "%s%s", c->dirname, os->initfile);
  1659. }
  1660. ret = flush_dynbuf(c, os, &range_length);
  1661. if (ret < 0)
  1662. break;
  1663. os->packets_written = 0;
  1664. if (c->single_file) {
  1665. find_index_range(s, os->full_path, os->pos, &index_length);
  1666. } else {
  1667. dashenc_io_close(s, &os->out, os->temp_path);
  1668. if (use_rename) {
  1669. ret = ff_rename(os->temp_path, os->full_path, os->ctx);
  1670. if (ret < 0)
  1671. break;
  1672. }
  1673. }
  1674. os->last_duration = FFMAX(os->last_duration, av_rescale_q(os->max_pts - os->start_pts,
  1675. st->time_base,
  1676. AV_TIME_BASE_Q));
  1677. if (!os->muxer_overhead)
  1678. os->muxer_overhead = ((int64_t) (range_length - os->total_pkt_size) *
  1679. 8 * AV_TIME_BASE) /
  1680. av_rescale_q(os->max_pts - os->start_pts,
  1681. st->time_base, AV_TIME_BASE_Q);
  1682. os->total_pkt_size = 0;
  1683. os->total_pkt_duration = 0;
  1684. if (!os->bit_rate) {
  1685. // calculate average bitrate of first segment
  1686. int64_t bitrate = (int64_t) range_length * 8 * AV_TIME_BASE / av_rescale_q(os->max_pts - os->start_pts,
  1687. st->time_base,
  1688. AV_TIME_BASE_Q);
  1689. if (bitrate >= 0)
  1690. os->bit_rate = bitrate;
  1691. }
  1692. add_segment(os, os->filename, os->start_pts, os->max_pts - os->start_pts, os->pos, range_length, index_length, next_exp_index);
  1693. av_log(s, AV_LOG_VERBOSE, "Representation %d media segment %d written to: %s\n", i, os->segment_index, os->full_path);
  1694. os->pos += range_length;
  1695. }
  1696. if (c->window_size) {
  1697. for (i = 0; i < s->nb_streams; i++) {
  1698. OutputStream *os = &c->streams[i];
  1699. int remove_count = os->nb_segments - c->window_size - c->extra_window_size;
  1700. if (remove_count > 0)
  1701. dashenc_delete_media_segments(s, os, remove_count);
  1702. }
  1703. }
  1704. if (final) {
  1705. for (i = 0; i < s->nb_streams; i++) {
  1706. OutputStream *os = &c->streams[i];
  1707. if (os->ctx && os->ctx_inited) {
  1708. int64_t file_size = avio_tell(os->ctx->pb);
  1709. av_write_trailer(os->ctx);
  1710. if (c->global_sidx) {
  1711. int j, start_index, start_number;
  1712. int64_t sidx_size = avio_tell(os->ctx->pb) - file_size;
  1713. get_start_index_number(os, c, &start_index, &start_number);
  1714. if (start_index >= os->nb_segments ||
  1715. os->segment_type != SEGMENT_TYPE_MP4)
  1716. continue;
  1717. os->init_range_length += sidx_size;
  1718. for (j = start_index; j < os->nb_segments; j++) {
  1719. Segment *seg = os->segments[j];
  1720. seg->start_pos += sidx_size;
  1721. }
  1722. }
  1723. }
  1724. }
  1725. }
  1726. if (ret >= 0) {
  1727. if (c->has_video && !final) {
  1728. c->nr_of_streams_flushed++;
  1729. if (c->nr_of_streams_flushed != c->nr_of_streams_to_flush)
  1730. return ret;
  1731. c->nr_of_streams_flushed = 0;
  1732. }
  1733. ret = write_manifest(s, final);
  1734. }
  1735. return ret;
  1736. }
  1737. static int dash_write_packet(AVFormatContext *s, AVPacket *pkt)
  1738. {
  1739. DASHContext *c = s->priv_data;
  1740. AVStream *st = s->streams[pkt->stream_index];
  1741. OutputStream *os = &c->streams[pkt->stream_index];
  1742. AdaptationSet *as = &c->as[os->as_idx - 1];
  1743. int64_t seg_end_duration, elapsed_duration;
  1744. int ret;
  1745. ret = update_stream_extradata(s, os, pkt, &st->avg_frame_rate);
  1746. if (ret < 0)
  1747. return ret;
  1748. // Fill in a heuristic guess of the packet duration, if none is available.
  1749. // The mp4 muxer will do something similar (for the last packet in a fragment)
  1750. // if nothing is set (setting it for the other packets doesn't hurt).
  1751. // By setting a nonzero duration here, we can be sure that the mp4 muxer won't
  1752. // invoke its heuristic (this doesn't have to be identical to that algorithm),
  1753. // so that we know the exact timestamps of fragments.
  1754. if (!pkt->duration && os->last_dts != AV_NOPTS_VALUE)
  1755. pkt->duration = pkt->dts - os->last_dts;
  1756. os->last_dts = pkt->dts;
  1757. // If forcing the stream to start at 0, the mp4 muxer will set the start
  1758. // timestamps to 0. Do the same here, to avoid mismatches in duration/timestamps.
  1759. if (os->first_pts == AV_NOPTS_VALUE &&
  1760. s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO) {
  1761. pkt->pts -= pkt->dts;
  1762. pkt->dts = 0;
  1763. }
  1764. if (os->first_pts == AV_NOPTS_VALUE) {
  1765. int side_data_size;
  1766. AVProducerReferenceTime *prft = (AVProducerReferenceTime *)av_packet_get_side_data(pkt, AV_PKT_DATA_PRFT,
  1767. &side_data_size);
  1768. if (prft && side_data_size == sizeof(AVProducerReferenceTime) && !prft->flags) {
  1769. os->producer_reference_time = prft->wallclock;
  1770. if (c->target_latency_refid < 0)
  1771. c->target_latency_refid = pkt->stream_index;
  1772. }
  1773. os->first_pts = pkt->pts;
  1774. }
  1775. os->last_pts = pkt->pts;
  1776. if (!c->availability_start_time[0]) {
  1777. int64_t start_time_us = av_gettime();
  1778. c->start_time_s = start_time_us / 1000000;
  1779. format_date(c->availability_start_time,
  1780. sizeof(c->availability_start_time), start_time_us);
  1781. }
  1782. if (!os->packets_written)
  1783. os->availability_time_offset = 0;
  1784. if (!os->availability_time_offset &&
  1785. ((os->frag_type == FRAG_TYPE_DURATION && os->seg_duration != os->frag_duration) ||
  1786. (os->frag_type == FRAG_TYPE_EVERY_FRAME && pkt->duration))) {
  1787. int64_t frame_duration = 0;
  1788. switch (os->frag_type) {
  1789. case FRAG_TYPE_DURATION:
  1790. frame_duration = os->frag_duration;
  1791. break;
  1792. case FRAG_TYPE_EVERY_FRAME:
  1793. frame_duration = av_rescale_q(pkt->duration, st->time_base, AV_TIME_BASE_Q);
  1794. break;
  1795. }
  1796. os->availability_time_offset = ((double) os->seg_duration -
  1797. frame_duration) / AV_TIME_BASE;
  1798. as->max_frag_duration = FFMAX(frame_duration, as->max_frag_duration);
  1799. }
  1800. if (c->use_template && !c->use_timeline) {
  1801. elapsed_duration = pkt->pts - os->first_pts;
  1802. seg_end_duration = (int64_t) os->segment_index * os->seg_duration;
  1803. } else {
  1804. elapsed_duration = pkt->pts - os->start_pts;
  1805. seg_end_duration = os->seg_duration;
  1806. }
  1807. if (pkt->flags & AV_PKT_FLAG_KEY && os->packets_written &&
  1808. av_compare_ts(elapsed_duration, st->time_base,
  1809. seg_end_duration, AV_TIME_BASE_Q) >= 0) {
  1810. if (!c->has_video || st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
  1811. c->last_duration = av_rescale_q(pkt->pts - os->start_pts,
  1812. st->time_base,
  1813. AV_TIME_BASE_Q);
  1814. c->total_duration = av_rescale_q(pkt->pts - os->first_pts,
  1815. st->time_base,
  1816. AV_TIME_BASE_Q);
  1817. if ((!c->use_timeline || !c->use_template) && os->last_duration) {
  1818. if (c->last_duration < os->last_duration*9/10 ||
  1819. c->last_duration > os->last_duration*11/10) {
  1820. av_log(s, AV_LOG_WARNING,
  1821. "Segment durations differ too much, enable use_timeline "
  1822. "and use_template, or keep a stricter keyframe interval\n");
  1823. }
  1824. }
  1825. }
  1826. if (c->write_prft && os->producer_reference_time && !os->producer_reference_time_str[0])
  1827. format_date(os->producer_reference_time_str,
  1828. sizeof(os->producer_reference_time_str),
  1829. os->producer_reference_time);
  1830. if ((ret = dash_flush(s, 0, pkt->stream_index)) < 0)
  1831. return ret;
  1832. }
  1833. if (!os->packets_written) {
  1834. // If we wrote a previous segment, adjust the start time of the segment
  1835. // to the end of the previous one (which is the same as the mp4 muxer
  1836. // does). This avoids gaps in the timeline.
  1837. if (os->max_pts != AV_NOPTS_VALUE)
  1838. os->start_pts = os->max_pts;
  1839. else
  1840. os->start_pts = pkt->pts;
  1841. }
  1842. if (os->max_pts == AV_NOPTS_VALUE)
  1843. os->max_pts = pkt->pts + pkt->duration;
  1844. else
  1845. os->max_pts = FFMAX(os->max_pts, pkt->pts + pkt->duration);
  1846. if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
  1847. os->frag_type == FRAG_TYPE_PFRAMES &&
  1848. os->packets_written) {
  1849. uint8_t *data;
  1850. int size;
  1851. av_assert0(os->parser);
  1852. av_parser_parse2(os->parser, os->parser_avctx,
  1853. &data, &size, pkt->data, pkt->size,
  1854. pkt->pts, pkt->dts, pkt->pos);
  1855. if ((os->parser->pict_type == AV_PICTURE_TYPE_P &&
  1856. st->codecpar->video_delay &&
  1857. !(os->last_flags & AV_PKT_FLAG_KEY)) ||
  1858. pkt->flags & AV_PKT_FLAG_KEY) {
  1859. ret = av_write_frame(os->ctx, NULL);
  1860. if (ret < 0)
  1861. return ret;
  1862. if (!os->availability_time_offset) {
  1863. int64_t frag_duration = av_rescale_q(os->total_pkt_duration, st->time_base,
  1864. AV_TIME_BASE_Q);
  1865. os->availability_time_offset = ((double) os->seg_duration -
  1866. frag_duration) / AV_TIME_BASE;
  1867. as->max_frag_duration = FFMAX(frag_duration, as->max_frag_duration);
  1868. }
  1869. }
  1870. }
  1871. if (pkt->flags & AV_PKT_FLAG_KEY && (os->packets_written || os->nb_segments) && !os->gop_size) {
  1872. os->gop_size = os->last_duration + av_rescale_q(os->total_pkt_duration, st->time_base, AV_TIME_BASE_Q);
  1873. c->max_gop_size = FFMAX(c->max_gop_size, os->gop_size);
  1874. }
  1875. if ((ret = ff_write_chained(os->ctx, 0, pkt, s, 0)) < 0)
  1876. return ret;
  1877. os->packets_written++;
  1878. os->total_pkt_size += pkt->size;
  1879. os->total_pkt_duration += pkt->duration;
  1880. os->last_flags = pkt->flags;
  1881. if (!os->init_range_length)
  1882. flush_init_segment(s, os);
  1883. //open the output context when the first frame of a segment is ready
  1884. if (!c->single_file && os->packets_written == 1) {
  1885. AVDictionary *opts = NULL;
  1886. const char *proto = avio_find_protocol_name(s->url);
  1887. int use_rename = proto && !strcmp(proto, "file");
  1888. os->filename[0] = os->full_path[0] = os->temp_path[0] = '\0';
  1889. ff_dash_fill_tmpl_params(os->filename, sizeof(os->filename),
  1890. os->media_seg_name, pkt->stream_index,
  1891. os->segment_index, os->bit_rate, os->start_pts);
  1892. snprintf(os->full_path, sizeof(os->full_path), "%s%s", c->dirname,
  1893. os->filename);
  1894. snprintf(os->temp_path, sizeof(os->temp_path),
  1895. use_rename ? "%s.tmp" : "%s", os->full_path);
  1896. set_http_options(&opts, c);
  1897. ret = dashenc_io_open(s, &os->out, os->temp_path, &opts);
  1898. av_dict_free(&opts);
  1899. if (ret < 0) {
  1900. return handle_io_open_error(s, ret, os->temp_path);
  1901. }
  1902. if (c->lhls) {
  1903. char *prefetch_url = use_rename ? NULL : os->filename;
  1904. write_hls_media_playlist(os, s, pkt->stream_index, 0, prefetch_url);
  1905. }
  1906. }
  1907. //write out the data immediately in streaming mode
  1908. if (c->streaming && os->segment_type == SEGMENT_TYPE_MP4) {
  1909. int len = 0;
  1910. uint8_t *buf = NULL;
  1911. if (!os->written_len)
  1912. write_styp(os->ctx->pb);
  1913. avio_flush(os->ctx->pb);
  1914. len = avio_get_dyn_buf (os->ctx->pb, &buf);
  1915. if (os->out) {
  1916. avio_write(os->out, buf + os->written_len, len - os->written_len);
  1917. avio_flush(os->out);
  1918. }
  1919. os->written_len = len;
  1920. }
  1921. return ret;
  1922. }
  1923. static int dash_write_trailer(AVFormatContext *s)
  1924. {
  1925. DASHContext *c = s->priv_data;
  1926. int i;
  1927. if (s->nb_streams > 0) {
  1928. OutputStream *os = &c->streams[0];
  1929. // If no segments have been written so far, try to do a crude
  1930. // guess of the segment duration
  1931. if (!c->last_duration)
  1932. c->last_duration = av_rescale_q(os->max_pts - os->start_pts,
  1933. s->streams[0]->time_base,
  1934. AV_TIME_BASE_Q);
  1935. c->total_duration = av_rescale_q(os->max_pts - os->first_pts,
  1936. s->streams[0]->time_base,
  1937. AV_TIME_BASE_Q);
  1938. }
  1939. dash_flush(s, 1, -1);
  1940. if (c->remove_at_exit) {
  1941. for (i = 0; i < s->nb_streams; ++i) {
  1942. OutputStream *os = &c->streams[i];
  1943. dashenc_delete_media_segments(s, os, os->nb_segments);
  1944. dashenc_delete_segment_file(s, os->initfile);
  1945. if (c->hls_playlist && os->segment_type == SEGMENT_TYPE_MP4) {
  1946. char filename[1024];
  1947. get_hls_playlist_name(filename, sizeof(filename), c->dirname, i);
  1948. dashenc_delete_file(s, filename);
  1949. }
  1950. }
  1951. dashenc_delete_file(s, s->url);
  1952. if (c->hls_playlist && c->master_playlist_created) {
  1953. char filename[1024];
  1954. snprintf(filename, sizeof(filename), "%smaster.m3u8", c->dirname);
  1955. dashenc_delete_file(s, filename);
  1956. }
  1957. }
  1958. return 0;
  1959. }
  1960. static int dash_check_bitstream(struct AVFormatContext *s, const AVPacket *avpkt)
  1961. {
  1962. DASHContext *c = s->priv_data;
  1963. OutputStream *os = &c->streams[avpkt->stream_index];
  1964. AVFormatContext *oc = os->ctx;
  1965. if (oc->oformat->check_bitstream) {
  1966. int ret;
  1967. AVPacket pkt = *avpkt;
  1968. pkt.stream_index = 0;
  1969. ret = oc->oformat->check_bitstream(oc, &pkt);
  1970. if (ret == 1) {
  1971. AVStream *st = s->streams[avpkt->stream_index];
  1972. AVStream *ost = oc->streams[0];
  1973. st->internal->bsfcs = ost->internal->bsfcs;
  1974. st->internal->nb_bsfcs = ost->internal->nb_bsfcs;
  1975. ost->internal->bsfcs = NULL;
  1976. ost->internal->nb_bsfcs = 0;
  1977. }
  1978. return ret;
  1979. }
  1980. return 1;
  1981. }
  1982. #define OFFSET(x) offsetof(DASHContext, x)
  1983. #define E AV_OPT_FLAG_ENCODING_PARAM
  1984. static const AVOption options[] = {
  1985. { "adaptation_sets", "Adaptation sets. Syntax: id=0,streams=0,1,2 id=1,streams=3,4 and so on", OFFSET(adaptation_sets), AV_OPT_TYPE_STRING, { 0 }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
  1986. { "window_size", "number of segments kept in the manifest", OFFSET(window_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, E },
  1987. { "extra_window_size", "number of segments kept outside of the manifest before removing from disk", OFFSET(extra_window_size), AV_OPT_TYPE_INT, { .i64 = 5 }, 0, INT_MAX, E },
  1988. #if FF_API_DASH_MIN_SEG_DURATION
  1989. { "min_seg_duration", "minimum segment duration (in microseconds) (will be deprecated)", OFFSET(min_seg_duration), AV_OPT_TYPE_INT, { .i64 = 5000000 }, 0, INT_MAX, E },
  1990. #endif
  1991. { "seg_duration", "segment duration (in seconds, fractional value can be set)", OFFSET(seg_duration), AV_OPT_TYPE_DURATION, { .i64 = 5000000 }, 0, INT_MAX, E },
  1992. { "frag_duration", "fragment duration (in seconds, fractional value can be set)", OFFSET(frag_duration), AV_OPT_TYPE_DURATION, { .i64 = 0 }, 0, INT_MAX, E },
  1993. { "frag_type", "set type of interval for fragments", OFFSET(frag_type), AV_OPT_TYPE_INT, {.i64 = FRAG_TYPE_NONE }, 0, FRAG_TYPE_NB - 1, E, "frag_type"},
  1994. { "none", "one fragment per segment", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_NONE }, 0, UINT_MAX, E, "frag_type"},
  1995. { "every_frame", "fragment at every frame", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_EVERY_FRAME }, 0, UINT_MAX, E, "frag_type"},
  1996. { "duration", "fragment at specific time intervals", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_DURATION }, 0, UINT_MAX, E, "frag_type"},
  1997. { "pframes", "fragment at keyframes and following P-Frame reordering (Video only, experimental)", 0, AV_OPT_TYPE_CONST, {.i64 = FRAG_TYPE_PFRAMES }, 0, UINT_MAX, E, "frag_type"},
  1998. { "remove_at_exit", "remove all segments when finished", OFFSET(remove_at_exit), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  1999. { "use_template", "Use SegmentTemplate instead of SegmentList", OFFSET(use_template), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
  2000. { "use_timeline", "Use SegmentTimeline in SegmentTemplate", OFFSET(use_timeline), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
  2001. { "single_file", "Store all segments in one file, accessed using byte ranges", OFFSET(single_file), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2002. { "single_file_name", "DASH-templated name to be used for baseURL. Implies storing all segments in one file, accessed using byte ranges", OFFSET(single_file_name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
  2003. { "init_seg_name", "DASH-templated name to used for the initialization segment", OFFSET(init_seg_name), AV_OPT_TYPE_STRING, {.str = "init-stream$RepresentationID$.$ext$"}, 0, 0, E },
  2004. { "media_seg_name", "DASH-templated name to used for the media segments", OFFSET(media_seg_name), AV_OPT_TYPE_STRING, {.str = "chunk-stream$RepresentationID$-$Number%05d$.$ext$"}, 0, 0, E },
  2005. { "utc_timing_url", "URL of the page that will return the UTC timestamp in ISO format", OFFSET(utc_timing_url), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  2006. { "method", "set the HTTP method", OFFSET(method), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
  2007. { "http_user_agent", "override User-Agent field in HTTP header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E},
  2008. { "http_persistent", "Use persistent HTTP connections", OFFSET(http_persistent), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
  2009. { "hls_playlist", "Generate HLS playlist files(master.m3u8, media_%d.m3u8)", OFFSET(hls_playlist), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2010. { "streaming", "Enable/Disable streaming mode of output. Each frame will be moof fragment", OFFSET(streaming), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2011. { "timeout", "set timeout for socket I/O operations", OFFSET(timeout), AV_OPT_TYPE_DURATION, { .i64 = -1 }, -1, INT_MAX, .flags = E },
  2012. { "index_correction", "Enable/Disable segment index correction logic", OFFSET(index_correction), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2013. { "format_options","set list of options for the container format (mp4/webm) used for dash", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, E},
  2014. { "global_sidx", "Write global SIDX atom. Applicable only for single file, mp4 output, non-streaming mode", OFFSET(global_sidx), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2015. { "dash_segment_type", "set dash segment files type", OFFSET(segment_type_option), AV_OPT_TYPE_INT, {.i64 = SEGMENT_TYPE_AUTO }, 0, SEGMENT_TYPE_NB - 1, E, "segment_type"},
  2016. { "auto", "select segment file format based on codec", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_TYPE_AUTO }, 0, UINT_MAX, E, "segment_type"},
  2017. { "mp4", "make segment file in ISOBMFF format", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_TYPE_MP4 }, 0, UINT_MAX, E, "segment_type"},
  2018. { "webm", "make segment file in WebM format", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_TYPE_WEBM }, 0, UINT_MAX, E, "segment_type"},
  2019. { "ignore_io_errors", "Ignore IO errors during open and write. Useful for long-duration runs with network output", OFFSET(ignore_io_errors), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2020. { "lhls", "Enable Low-latency HLS(Experimental). Adds #EXT-X-PREFETCH tag with current segment's URI", OFFSET(lhls), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2021. { "ldash", "Enable Low-latency dash. Constrains the value of a few elements", OFFSET(ldash), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
  2022. { "master_m3u8_publish_rate", "Publish master playlist every after this many segment intervals", OFFSET(master_publish_rate), AV_OPT_TYPE_INT, {.i64 = 0}, 0, UINT_MAX, E},
  2023. { "write_prft", "Write producer reference time element", OFFSET(write_prft), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E},
  2024. { "mpd_profile", "Set profiles. Elements and values used in the manifest may be constrained by them", OFFSET(profile), AV_OPT_TYPE_FLAGS, {.i64 = MPD_PROFILE_DASH }, 0, UINT_MAX, E, "mpd_profile"},
  2025. { "dash", "MPEG-DASH ISO Base media file format live profile", 0, AV_OPT_TYPE_CONST, {.i64 = MPD_PROFILE_DASH }, 0, UINT_MAX, E, "mpd_profile"},
  2026. { "dvb_dash", "DVB-DASH profile", 0, AV_OPT_TYPE_CONST, {.i64 = MPD_PROFILE_DVB }, 0, UINT_MAX, E, "mpd_profile"},
  2027. { "http_opts", "HTTP protocol options", OFFSET(http_opts), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
  2028. { "target_latency", "Set desired target latency for Low-latency dash", OFFSET(target_latency), AV_OPT_TYPE_DURATION, { .i64 = 0 }, 0, INT_MAX, E },
  2029. { NULL },
  2030. };
  2031. static const AVClass dash_class = {
  2032. .class_name = "dash muxer",
  2033. .item_name = av_default_item_name,
  2034. .option = options,
  2035. .version = LIBAVUTIL_VERSION_INT,
  2036. };
  2037. AVOutputFormat ff_dash_muxer = {
  2038. .name = "dash",
  2039. .long_name = NULL_IF_CONFIG_SMALL("DASH Muxer"),
  2040. .extensions = "mpd",
  2041. .priv_data_size = sizeof(DASHContext),
  2042. .audio_codec = AV_CODEC_ID_AAC,
  2043. .video_codec = AV_CODEC_ID_H264,
  2044. .flags = AVFMT_GLOBALHEADER | AVFMT_NOFILE | AVFMT_TS_NEGATIVE,
  2045. .init = dash_init,
  2046. .write_header = dash_write_header,
  2047. .write_packet = dash_write_packet,
  2048. .write_trailer = dash_write_trailer,
  2049. .deinit = dash_free,
  2050. .check_bitstream = dash_check_bitstream,
  2051. .priv_class = &dash_class,
  2052. };