]> git.sesse.net Git - ffmpeg/blob - libavformat/hlsenc.c
7e3a7f2f677e8530429b8d9c63c751ff33ccbde7
[ffmpeg] / libavformat / hlsenc.c
1 /*
2  * Apple HTTP Live Streaming segmenter
3  * Copyright (c) 2012, Luca Barbato
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23 #include <float.h>
24 #include <stdint.h>
25 #if HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
28
29 #include "libavutil/avassert.h"
30 #include "libavutil/mathematics.h"
31 #include "libavutil/parseutils.h"
32 #include "libavutil/avstring.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/log.h"
35 #include "libavutil/time_internal.h"
36
37 #include "avformat.h"
38 #include "avio_internal.h"
39 #include "internal.h"
40 #include "os_support.h"
41
42 typedef enum {
43   HLS_START_SEQUENCE_AS_START_NUMBER = 0,
44   HLS_START_SEQUENCE_AS_SECONDS_SINCE_EPOCH = 1,
45   HLS_START_SEQUENCE_AS_FORMATTED_DATETIME = 2,  // YYYYMMDDhhmmss
46 } StartSequenceSourceType;
47
48 #define KEYSIZE 16
49 #define LINE_BUFFER_SIZE 1024
50 #define HLS_MICROSECOND_UNIT   1000000
51
52 typedef struct HLSSegment {
53     char filename[1024];
54     char sub_filename[1024];
55     double duration; /* in seconds */
56     int discont;
57     int64_t pos;
58     int64_t size;
59
60     char key_uri[LINE_BUFFER_SIZE + 1];
61     char iv_string[KEYSIZE*2 + 1];
62
63     struct HLSSegment *next;
64 } HLSSegment;
65
66 typedef enum HLSFlags {
67     // Generate a single media file and use byte ranges in the playlist.
68     HLS_SINGLE_FILE = (1 << 0),
69     HLS_DELETE_SEGMENTS = (1 << 1),
70     HLS_ROUND_DURATIONS = (1 << 2),
71     HLS_DISCONT_START = (1 << 3),
72     HLS_OMIT_ENDLIST = (1 << 4),
73     HLS_SPLIT_BY_TIME = (1 << 5),
74     HLS_APPEND_LIST = (1 << 6),
75     HLS_PROGRAM_DATE_TIME = (1 << 7),
76     HLS_SECOND_LEVEL_SEGMENT_INDEX = (1 << 8), // include segment index in segment filenames when use_localtime  e.g.: %%03d
77     HLS_SECOND_LEVEL_SEGMENT_DURATION = (1 << 9), // include segment duration (microsec) in segment filenames when use_localtime  e.g.: %%09t
78     HLS_SECOND_LEVEL_SEGMENT_SIZE = (1 << 10), // include segment size (bytes) in segment filenames when use_localtime  e.g.: %%014s
79 } HLSFlags;
80
81 typedef enum {
82     PLAYLIST_TYPE_NONE,
83     PLAYLIST_TYPE_EVENT,
84     PLAYLIST_TYPE_VOD,
85     PLAYLIST_TYPE_NB,
86 } PlaylistType;
87
88 typedef struct HLSContext {
89     const AVClass *class;  // Class for private options.
90     unsigned number;
91     int64_t sequence;
92     int64_t start_sequence;
93     uint32_t start_sequence_source_type;  // enum StartSequenceSourceType
94     AVOutputFormat *oformat;
95     AVOutputFormat *vtt_oformat;
96
97     AVFormatContext *avf;
98     AVFormatContext *vtt_avf;
99
100     float time;            // Set by a private option.
101     float init_time;       // Set by a private option.
102     int max_nb_segments;   // Set by a private option.
103     int  wrap;             // Set by a private option.
104     uint32_t flags;        // enum HLSFlags
105     uint32_t pl_type;      // enum PlaylistType
106     char *segment_filename;
107
108     int use_localtime;      ///< flag to expand filename with localtime
109     int use_localtime_mkdir;///< flag to mkdir dirname in timebased filename
110     int allowcache;
111     int64_t recording_time;
112     int has_video;
113     int has_subtitle;
114     int new_start;
115     double dpp;           // duration per packet
116     int64_t start_pts;
117     int64_t end_pts;
118     double duration;      // last segment duration computed so far, in seconds
119     int64_t start_pos;    // last segment starting position
120     int64_t size;         // last segment size
121     int64_t max_seg_size; // every segment file max size
122     int nb_entries;
123     int discontinuity_set;
124     int discontinuity;
125
126     HLSSegment *segments;
127     HLSSegment *last_segment;
128     HLSSegment *old_segments;
129
130     char *basename;
131     char *vtt_basename;
132     char *vtt_m3u8_name;
133     char *baseurl;
134     char *format_options_str;
135     char *vtt_format_options_str;
136     char *subtitle_filename;
137     AVDictionary *format_options;
138
139     char *key_info_file;
140     char key_file[LINE_BUFFER_SIZE + 1];
141     char key_uri[LINE_BUFFER_SIZE + 1];
142     char key_string[KEYSIZE*2 + 1];
143     char iv_string[KEYSIZE*2 + 1];
144     AVDictionary *vtt_format_options;
145
146     char *method;
147
148     double initial_prog_date_time;
149     char current_segment_final_filename_fmt[1024]; // when renaming segments
150 } HLSContext;
151
152 static int get_int_from_double(double val)
153 {
154     return (int)((val - (int)val) >= 0.001) ? (int)(val + 1) : (int)val;
155 }
156
157 static int mkdir_p(const char *path) {
158     int ret = 0;
159     char *temp = av_strdup(path);
160     char *pos = temp;
161     char tmp_ch = '\0';
162
163     if (!path || !temp) {
164         return -1;
165     }
166
167     if (!strncmp(temp, "/", 1) || !strncmp(temp, "\\", 1)) {
168         pos++;
169     } else if (!strncmp(temp, "./", 2) || !strncmp(temp, ".\\", 2)) {
170         pos += 2;
171     }
172
173     for ( ; *pos != '\0'; ++pos) {
174         if (*pos == '/' || *pos == '\\') {
175             tmp_ch = *pos;
176             *pos = '\0';
177             ret = mkdir(temp, 0755);
178             *pos = tmp_ch;
179         }
180     }
181
182     if ((*(pos - 1) != '/') || (*(pos - 1) != '\\')) {
183         ret = mkdir(temp, 0755);
184     }
185
186     av_free(temp);
187     return ret;
188 }
189
190 static int replace_int_data_in_filename(char *buf, int buf_size, const char *filename, char placeholder, int64_t number)
191 {
192     const char *p;
193     char *q, buf1[20], c;
194     int nd, len, addchar_count;
195     int found_count = 0;
196
197     q = buf;
198     p = filename;
199     for (;;) {
200         c = *p;
201         if (c == '\0')
202             break;
203         if (c == '%' && *(p+1) == '%')  // %%
204             addchar_count = 2;
205         else if (c == '%' && (av_isdigit(*(p+1)) || *(p+1) == placeholder)) {
206             nd = 0;
207             addchar_count = 1;
208             while (av_isdigit(*(p + addchar_count))) {
209                 nd = nd * 10 + *(p + addchar_count) - '0';
210                 addchar_count++;
211             }
212
213             if (*(p + addchar_count) == placeholder) {
214                 len = snprintf(buf1, sizeof(buf1), "%0*"PRId64, (number < 0) ? nd : nd++, number);
215                 if (len < 1)  // returned error or empty buf1
216                     goto fail;
217                 if ((q - buf + len) > buf_size - 1)
218                     goto fail;
219                 memcpy(q, buf1, len);
220                 q += len;
221                 p += (addchar_count + 1);
222                 addchar_count = 0;
223                 found_count++;
224             }
225
226         } else
227             addchar_count = 1;
228
229         while (addchar_count--)
230             if ((q - buf) < buf_size - 1)
231                 *q++ = *p++;
232             else
233                 goto fail;
234     }
235     *q = '\0';
236     return found_count;
237 fail:
238     *q = '\0';
239     return -1;
240 }
241
242 static int hls_delete_old_segments(HLSContext *hls) {
243
244     HLSSegment *segment, *previous_segment = NULL;
245     float playlist_duration = 0.0f;
246     int ret = 0, path_size, sub_path_size;
247     char *dirname = NULL, *p, *sub_path;
248     char *path = NULL;
249     AVDictionary *options = NULL;
250     AVIOContext *out = NULL;
251
252     segment = hls->segments;
253     while (segment) {
254         playlist_duration += segment->duration;
255         segment = segment->next;
256     }
257
258     segment = hls->old_segments;
259     while (segment) {
260         playlist_duration -= segment->duration;
261         previous_segment = segment;
262         segment = previous_segment->next;
263         if (playlist_duration <= -previous_segment->duration) {
264             previous_segment->next = NULL;
265             break;
266         }
267     }
268
269     if (segment && !hls->use_localtime_mkdir) {
270         if (hls->segment_filename) {
271             dirname = av_strdup(hls->segment_filename);
272         } else {
273             dirname = av_strdup(hls->avf->filename);
274         }
275         if (!dirname) {
276             ret = AVERROR(ENOMEM);
277             goto fail;
278         }
279         p = (char *)av_basename(dirname);
280         *p = '\0';
281     }
282
283     while (segment) {
284         av_log(hls, AV_LOG_DEBUG, "deleting old segment %s\n",
285                                   segment->filename);
286         path_size =  (hls->use_localtime_mkdir ? 0 : strlen(dirname)) + strlen(segment->filename) + 1;
287         path = av_malloc(path_size);
288         if (!path) {
289             ret = AVERROR(ENOMEM);
290             goto fail;
291         }
292
293         if (hls->use_localtime_mkdir)
294             av_strlcpy(path, segment->filename, path_size);
295         else { // segment->filename contains basename only
296             av_strlcpy(path, dirname, path_size);
297             av_strlcat(path, segment->filename, path_size);
298         }
299
300         if (hls->method) {
301             av_dict_set(&options, "method", "DELETE", 0);
302             if ((ret = hls->avf->io_open(hls->avf, &out, path, AVIO_FLAG_WRITE, &options)) < 0)
303                 goto fail;
304             ff_format_io_close(hls->avf, &out);
305         } else if (unlink(path) < 0) {
306             av_log(hls, AV_LOG_ERROR, "failed to delete old segment %s: %s\n",
307                                      path, strerror(errno));
308         }
309
310         if ((segment->sub_filename[0] != '\0')) {
311             sub_path_size = strlen(segment->sub_filename) + 1 + (dirname ? strlen(dirname) : 0);
312             sub_path = av_malloc(sub_path_size);
313             if (!sub_path) {
314                 ret = AVERROR(ENOMEM);
315                 goto fail;
316             }
317
318             av_strlcpy(sub_path, dirname, sub_path_size);
319             av_strlcat(sub_path, segment->sub_filename, sub_path_size);
320
321             if (hls->method) {
322                 av_dict_set(&options, "method", "DELETE", 0);
323                 if ((ret = hls->avf->io_open(hls->avf, &out, sub_path, AVIO_FLAG_WRITE, &options)) < 0) {
324                     av_free(sub_path);
325                     goto fail;
326                 }
327                 ff_format_io_close(hls->avf, &out);
328             } else if (unlink(sub_path) < 0) {
329                 av_log(hls, AV_LOG_ERROR, "failed to delete old segment %s: %s\n",
330                                          sub_path, strerror(errno));
331             }
332             av_free(sub_path);
333         }
334         av_freep(&path);
335         previous_segment = segment;
336         segment = previous_segment->next;
337         av_free(previous_segment);
338     }
339
340 fail:
341     av_free(path);
342     av_free(dirname);
343
344     return ret;
345 }
346
347 static int hls_encryption_start(AVFormatContext *s)
348 {
349     HLSContext *hls = s->priv_data;
350     int ret;
351     AVIOContext *pb;
352     uint8_t key[KEYSIZE];
353
354     if ((ret = s->io_open(s, &pb, hls->key_info_file, AVIO_FLAG_READ, NULL)) < 0) {
355         av_log(hls, AV_LOG_ERROR,
356                 "error opening key info file %s\n", hls->key_info_file);
357         return ret;
358     }
359
360     ff_get_line(pb, hls->key_uri, sizeof(hls->key_uri));
361     hls->key_uri[strcspn(hls->key_uri, "\r\n")] = '\0';
362
363     ff_get_line(pb, hls->key_file, sizeof(hls->key_file));
364     hls->key_file[strcspn(hls->key_file, "\r\n")] = '\0';
365
366     ff_get_line(pb, hls->iv_string, sizeof(hls->iv_string));
367     hls->iv_string[strcspn(hls->iv_string, "\r\n")] = '\0';
368
369     ff_format_io_close(s, &pb);
370
371     if (!*hls->key_uri) {
372         av_log(hls, AV_LOG_ERROR, "no key URI specified in key info file\n");
373         return AVERROR(EINVAL);
374     }
375
376     if (!*hls->key_file) {
377         av_log(hls, AV_LOG_ERROR, "no key file specified in key info file\n");
378         return AVERROR(EINVAL);
379     }
380
381     if ((ret = s->io_open(s, &pb, hls->key_file, AVIO_FLAG_READ, NULL)) < 0) {
382         av_log(hls, AV_LOG_ERROR, "error opening key file %s\n", hls->key_file);
383         return ret;
384     }
385
386     ret = avio_read(pb, key, sizeof(key));
387     ff_format_io_close(s, &pb);
388     if (ret != sizeof(key)) {
389         av_log(hls, AV_LOG_ERROR, "error reading key file %s\n", hls->key_file);
390         if (ret >= 0 || ret == AVERROR_EOF)
391             ret = AVERROR(EINVAL);
392         return ret;
393     }
394     ff_data_to_hex(hls->key_string, key, sizeof(key), 0);
395
396     return 0;
397 }
398
399 static int read_chomp_line(AVIOContext *s, char *buf, int maxlen)
400 {
401     int len = ff_get_line(s, buf, maxlen);
402     while (len > 0 && av_isspace(buf[len - 1]))
403         buf[--len] = '\0';
404     return len;
405 }
406
407 static int hls_mux_init(AVFormatContext *s)
408 {
409     HLSContext *hls = s->priv_data;
410     AVFormatContext *oc;
411     AVFormatContext *vtt_oc = NULL;
412     int i, ret;
413
414     ret = avformat_alloc_output_context2(&hls->avf, hls->oformat, NULL, NULL);
415     if (ret < 0)
416         return ret;
417     oc = hls->avf;
418
419     oc->oformat            = hls->oformat;
420     oc->interrupt_callback = s->interrupt_callback;
421     oc->max_delay          = s->max_delay;
422     oc->opaque             = s->opaque;
423     oc->io_open            = s->io_open;
424     oc->io_close           = s->io_close;
425     av_dict_copy(&oc->metadata, s->metadata, 0);
426
427     if(hls->vtt_oformat) {
428         ret = avformat_alloc_output_context2(&hls->vtt_avf, hls->vtt_oformat, NULL, NULL);
429         if (ret < 0)
430             return ret;
431         vtt_oc          = hls->vtt_avf;
432         vtt_oc->oformat = hls->vtt_oformat;
433         av_dict_copy(&vtt_oc->metadata, s->metadata, 0);
434     }
435
436     for (i = 0; i < s->nb_streams; i++) {
437         AVStream *st;
438         AVFormatContext *loc;
439         if (s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE)
440             loc = vtt_oc;
441         else
442             loc = oc;
443
444         if (!(st = avformat_new_stream(loc, NULL)))
445             return AVERROR(ENOMEM);
446         avcodec_parameters_copy(st->codecpar, s->streams[i]->codecpar);
447         st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
448         st->time_base = s->streams[i]->time_base;
449     }
450     hls->start_pos = 0;
451     hls->new_start = 1;
452
453     return 0;
454 }
455
456 static HLSSegment *find_segment_by_filename(HLSSegment *segment, const char *filename)
457 {
458     while (segment) {
459         if (!av_strcasecmp(segment->filename,filename))
460             return segment;
461         segment = segment->next;
462     }
463     return (HLSSegment *) NULL;
464 }
465
466 /* Create a new segment and append it to the segment list */
467 static int hls_append_segment(struct AVFormatContext *s, HLSContext *hls, double duration,
468                               int64_t pos, int64_t size)
469 {
470     HLSSegment *en = av_malloc(sizeof(*en));
471     const char  *filename;
472     int ret;
473
474     if (!en)
475         return AVERROR(ENOMEM);
476
477     if ((hls->flags & (HLS_SECOND_LEVEL_SEGMENT_SIZE | HLS_SECOND_LEVEL_SEGMENT_DURATION)) &&
478         strlen(hls->current_segment_final_filename_fmt)) {
479         av_strlcpy(hls->avf->filename, hls->current_segment_final_filename_fmt, sizeof(hls->avf->filename));
480         if (hls->flags & HLS_SECOND_LEVEL_SEGMENT_SIZE) {
481             char * filename = av_strdup(hls->avf->filename);  // %%s will be %s after strftime
482             if (!filename) {
483                 av_free(en);
484                 return AVERROR(ENOMEM);
485             }
486             if (replace_int_data_in_filename(hls->avf->filename, sizeof(hls->avf->filename),
487                 filename, 's', pos + size) < 1) {
488                 av_log(hls, AV_LOG_ERROR,
489                        "Invalid second level segment filename template '%s', "
490                         "you can try to remove second_level_segment_size flag\n",
491                        filename);
492                 av_free(filename);
493                 av_free(en);
494                 return AVERROR(EINVAL);
495             }
496             av_free(filename);
497         }
498         if (hls->flags & HLS_SECOND_LEVEL_SEGMENT_DURATION) {
499             char * filename = av_strdup(hls->avf->filename);  // %%t will be %t after strftime
500             if (!filename) {
501                 av_free(en);
502                 return AVERROR(ENOMEM);
503             }
504             if (replace_int_data_in_filename(hls->avf->filename, sizeof(hls->avf->filename),
505                 filename, 't',  (int64_t)round(duration * HLS_MICROSECOND_UNIT)) < 1) {
506                 av_log(hls, AV_LOG_ERROR,
507                        "Invalid second level segment filename template '%s', "
508                         "you can try to remove second_level_segment_time flag\n",
509                        filename);
510                 av_free(filename);
511                 av_free(en);
512                 return AVERROR(EINVAL);
513             }
514             av_free(filename);
515         }
516     }
517
518
519     filename = av_basename(hls->avf->filename);
520
521     if (hls->use_localtime_mkdir) {
522         filename = hls->avf->filename;
523     }
524     if (find_segment_by_filename(hls->segments, filename)
525         || find_segment_by_filename(hls->old_segments, filename)) {
526         av_log(hls, AV_LOG_WARNING, "Duplicated segment filename detected: %s\n", filename);
527     }
528     av_strlcpy(en->filename, filename, sizeof(en->filename));
529
530     if(hls->has_subtitle)
531         av_strlcpy(en->sub_filename, av_basename(hls->vtt_avf->filename), sizeof(en->sub_filename));
532     else
533         en->sub_filename[0] = '\0';
534
535     en->duration = duration;
536     en->pos      = pos;
537     en->size     = size;
538     en->next     = NULL;
539     en->discont  = 0;
540
541     if (hls->discontinuity) {
542         en->discont = 1;
543         hls->discontinuity = 0;
544     }
545
546     if (hls->key_info_file) {
547         av_strlcpy(en->key_uri, hls->key_uri, sizeof(en->key_uri));
548         av_strlcpy(en->iv_string, hls->iv_string, sizeof(en->iv_string));
549     }
550
551     if (!hls->segments)
552         hls->segments = en;
553     else
554         hls->last_segment->next = en;
555
556     hls->last_segment = en;
557
558     // EVENT or VOD playlists imply sliding window cannot be used
559     if (hls->pl_type != PLAYLIST_TYPE_NONE)
560         hls->max_nb_segments = 0;
561
562     if (hls->max_nb_segments && hls->nb_entries >= hls->max_nb_segments) {
563         en = hls->segments;
564         hls->initial_prog_date_time += en->duration;
565         hls->segments = en->next;
566         if (en && hls->flags & HLS_DELETE_SEGMENTS &&
567                 !(hls->flags & HLS_SINGLE_FILE || hls->wrap)) {
568             en->next = hls->old_segments;
569             hls->old_segments = en;
570             if ((ret = hls_delete_old_segments(hls)) < 0)
571                 return ret;
572         } else
573             av_free(en);
574     } else
575         hls->nb_entries++;
576
577     if (hls->max_seg_size > 0) {
578         return 0;
579     }
580     hls->sequence++;
581
582     return 0;
583 }
584
585 static int parse_playlist(AVFormatContext *s, const char *url)
586 {
587     HLSContext *hls = s->priv_data;
588     AVIOContext *in;
589     int ret = 0, is_segment = 0;
590     int64_t new_start_pos;
591     char line[1024];
592     const char *ptr;
593
594     if ((ret = ffio_open_whitelist(&in, url, AVIO_FLAG_READ,
595                                    &s->interrupt_callback, NULL,
596                                    s->protocol_whitelist, s->protocol_blacklist)) < 0)
597         return ret;
598
599     read_chomp_line(in, line, sizeof(line));
600     if (strcmp(line, "#EXTM3U")) {
601         ret = AVERROR_INVALIDDATA;
602         goto fail;
603     }
604
605     hls->discontinuity = 0;
606     while (!avio_feof(in)) {
607         read_chomp_line(in, line, sizeof(line));
608         if (av_strstart(line, "#EXT-X-MEDIA-SEQUENCE:", &ptr)) {
609             int64_t tmp_sequence = strtoll(ptr, NULL, 10);
610             if (tmp_sequence < hls->sequence)
611               av_log(hls, AV_LOG_VERBOSE,
612                      "Found playlist sequence number was smaller """
613                      "than specified start sequence number: %"PRId64" < %"PRId64", "
614                      "omitting\n", tmp_sequence, hls->start_sequence);
615             else {
616               av_log(hls, AV_LOG_DEBUG, "Found playlist sequence number: %"PRId64"\n", tmp_sequence);
617               hls->sequence = tmp_sequence;
618             }
619         } else if (av_strstart(line, "#EXT-X-DISCONTINUITY", &ptr)) {
620             is_segment = 1;
621             hls->discontinuity = 1;
622         } else if (av_strstart(line, "#EXTINF:", &ptr)) {
623             is_segment = 1;
624             hls->duration = atof(ptr);
625         } else if (av_strstart(line, "#", NULL)) {
626             continue;
627         } else if (line[0]) {
628             if (is_segment) {
629                 is_segment = 0;
630                 new_start_pos = avio_tell(hls->avf->pb);
631                 hls->size = new_start_pos - hls->start_pos;
632                 av_strlcpy(hls->avf->filename, line, sizeof(line));
633                 ret = hls_append_segment(s, hls, hls->duration, hls->start_pos, hls->size);
634                 if (ret < 0)
635                     goto fail;
636                 hls->start_pos = new_start_pos;
637             }
638         }
639     }
640
641 fail:
642     avio_close(in);
643     return ret;
644 }
645
646 static void hls_free_segments(HLSSegment *p)
647 {
648     HLSSegment *en;
649
650     while(p) {
651         en = p;
652         p = p->next;
653         av_free(en);
654     }
655 }
656
657 static void set_http_options(AVDictionary **options, HLSContext *c)
658 {
659     if (c->method)
660         av_dict_set(options, "method", c->method, 0);
661 }
662
663 static int hls_window(AVFormatContext *s, int last)
664 {
665     HLSContext *hls = s->priv_data;
666     HLSSegment *en;
667     int target_duration = 0;
668     int ret = 0;
669     AVIOContext *out = NULL;
670     AVIOContext *sub_out = NULL;
671     char temp_filename[1024];
672     int64_t sequence = FFMAX(hls->start_sequence, hls->sequence - hls->nb_entries);
673     int version = 3;
674     const char *proto = avio_find_protocol_name(s->filename);
675     int use_rename = proto && !strcmp(proto, "file");
676     static unsigned warned_non_file;
677     char *key_uri = NULL;
678     char *iv_string = NULL;
679     AVDictionary *options = NULL;
680     double prog_date_time = hls->initial_prog_date_time;
681     int byterange_mode = (hls->flags & HLS_SINGLE_FILE) || (hls->max_seg_size > 0);
682
683     if (byterange_mode) {
684         version = 4;
685         sequence = 0;
686     }
687
688     if (!use_rename && !warned_non_file++)
689         av_log(s, AV_LOG_ERROR, "Cannot use rename on non file protocol, this may lead to races and temporary partial files\n");
690
691     set_http_options(&options, hls);
692     snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", s->filename);
693     if ((ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, &options)) < 0)
694         goto fail;
695
696     for (en = hls->segments; en; en = en->next) {
697         if (target_duration <= en->duration)
698             target_duration = get_int_from_double(en->duration);
699     }
700
701     hls->discontinuity_set = 0;
702     avio_printf(out, "#EXTM3U\n");
703     avio_printf(out, "#EXT-X-VERSION:%d\n", version);
704     if (hls->allowcache == 0 || hls->allowcache == 1) {
705         avio_printf(out, "#EXT-X-ALLOW-CACHE:%s\n", hls->allowcache == 0 ? "NO" : "YES");
706     }
707     avio_printf(out, "#EXT-X-TARGETDURATION:%d\n", target_duration);
708     avio_printf(out, "#EXT-X-MEDIA-SEQUENCE:%"PRId64"\n", sequence);
709     if (hls->pl_type == PLAYLIST_TYPE_EVENT) {
710         avio_printf(out, "#EXT-X-PLAYLIST-TYPE:EVENT\n");
711     } else if (hls->pl_type == PLAYLIST_TYPE_VOD) {
712         avio_printf(out, "#EXT-X-PLAYLIST-TYPE:VOD\n");
713     }
714
715     av_log(s, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%"PRId64"\n",
716            sequence);
717     if((hls->flags & HLS_DISCONT_START) && sequence==hls->start_sequence && hls->discontinuity_set==0 ){
718         avio_printf(out, "#EXT-X-DISCONTINUITY\n");
719         hls->discontinuity_set = 1;
720     }
721     for (en = hls->segments; en; en = en->next) {
722         if (hls->key_info_file && (!key_uri || strcmp(en->key_uri, key_uri) ||
723                                     av_strcasecmp(en->iv_string, iv_string))) {
724             avio_printf(out, "#EXT-X-KEY:METHOD=AES-128,URI=\"%s\"", en->key_uri);
725             if (*en->iv_string)
726                 avio_printf(out, ",IV=0x%s", en->iv_string);
727             avio_printf(out, "\n");
728             key_uri = en->key_uri;
729             iv_string = en->iv_string;
730         }
731
732         if (en->discont) {
733             avio_printf(out, "#EXT-X-DISCONTINUITY\n");
734         }
735
736         if (hls->flags & HLS_ROUND_DURATIONS)
737             avio_printf(out, "#EXTINF:%ld,\n",  lrint(en->duration));
738         else
739             avio_printf(out, "#EXTINF:%f,\n", en->duration);
740         if (byterange_mode)
741              avio_printf(out, "#EXT-X-BYTERANGE:%"PRIi64"@%"PRIi64"\n",
742                          en->size, en->pos);
743         if (hls->flags & HLS_PROGRAM_DATE_TIME) {
744             time_t tt, wrongsecs;
745             int milli;
746             struct tm *tm, tmpbuf;
747             char buf0[128], buf1[128];
748             tt = (int64_t)prog_date_time;
749             milli = av_clip(lrint(1000*(prog_date_time - tt)), 0, 999);
750             tm = localtime_r(&tt, &tmpbuf);
751             strftime(buf0, sizeof(buf0), "%Y-%m-%dT%H:%M:%S", tm);
752             if (!strftime(buf1, sizeof(buf1), "%z", tm) || buf1[1]<'0' ||buf1[1]>'2') {
753                 int tz_min, dst = tm->tm_isdst;
754                 tm = gmtime_r(&tt, &tmpbuf);
755                 tm->tm_isdst = dst;
756                 wrongsecs = mktime(tm);
757                 tz_min = (abs(wrongsecs - tt) + 30) / 60;
758                 snprintf(buf1, sizeof(buf1),
759                          "%c%02d%02d",
760                          wrongsecs <= tt ? '+' : '-',
761                          tz_min / 60,
762                          tz_min % 60);
763             }
764             avio_printf(out, "#EXT-X-PROGRAM-DATE-TIME:%s.%03d%s\n", buf0, milli, buf1);
765             prog_date_time += en->duration;
766         }
767         if (hls->baseurl)
768             avio_printf(out, "%s", hls->baseurl);
769         avio_printf(out, "%s\n", en->filename);
770     }
771
772     if (last && (hls->flags & HLS_OMIT_ENDLIST)==0)
773         avio_printf(out, "#EXT-X-ENDLIST\n");
774
775     if( hls->vtt_m3u8_name ) {
776         if ((ret = s->io_open(s, &sub_out, hls->vtt_m3u8_name, AVIO_FLAG_WRITE, &options)) < 0)
777             goto fail;
778         avio_printf(sub_out, "#EXTM3U\n");
779         avio_printf(sub_out, "#EXT-X-VERSION:%d\n", version);
780         if (hls->allowcache == 0 || hls->allowcache == 1) {
781             avio_printf(sub_out, "#EXT-X-ALLOW-CACHE:%s\n", hls->allowcache == 0 ? "NO" : "YES");
782         }
783         avio_printf(sub_out, "#EXT-X-TARGETDURATION:%d\n", target_duration);
784         avio_printf(sub_out, "#EXT-X-MEDIA-SEQUENCE:%"PRId64"\n", sequence);
785
786         av_log(s, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%"PRId64"\n",
787                sequence);
788
789         for (en = hls->segments; en; en = en->next) {
790             avio_printf(sub_out, "#EXTINF:%f,\n", en->duration);
791             if (byterange_mode)
792                  avio_printf(sub_out, "#EXT-X-BYTERANGE:%"PRIi64"@%"PRIi64"\n",
793                          en->size, en->pos);
794             if (hls->baseurl)
795                 avio_printf(sub_out, "%s", hls->baseurl);
796             avio_printf(sub_out, "%s\n", en->sub_filename);
797         }
798
799         if (last)
800             avio_printf(sub_out, "#EXT-X-ENDLIST\n");
801
802     }
803
804 fail:
805     av_dict_free(&options);
806     ff_format_io_close(s, &out);
807     ff_format_io_close(s, &sub_out);
808     if (ret >= 0 && use_rename)
809         ff_rename(temp_filename, s->filename, s);
810     return ret;
811 }
812
813 static int hls_start(AVFormatContext *s)
814 {
815     HLSContext *c = s->priv_data;
816     AVFormatContext *oc = c->avf;
817     AVFormatContext *vtt_oc = c->vtt_avf;
818     AVDictionary *options = NULL;
819     char *filename, iv_string[KEYSIZE*2 + 1];
820     int err = 0;
821
822     if (c->flags & HLS_SINGLE_FILE) {
823         av_strlcpy(oc->filename, c->basename,
824                    sizeof(oc->filename));
825         if (c->vtt_basename)
826             av_strlcpy(vtt_oc->filename, c->vtt_basename,
827                   sizeof(vtt_oc->filename));
828     } else if (c->max_seg_size > 0) {
829         if (replace_int_data_in_filename(oc->filename, sizeof(oc->filename),
830             c->basename, 'd', c->wrap ? c->sequence % c->wrap : c->sequence) < 1) {
831                 av_log(oc, AV_LOG_ERROR, "Invalid segment filename template '%s', you can try to use -use_localtime 1 with it\n", c->basename);
832                 return AVERROR(EINVAL);
833         }
834     } else {
835         if (c->use_localtime) {
836             time_t now0;
837             struct tm *tm, tmpbuf;
838             time(&now0);
839             tm = localtime_r(&now0, &tmpbuf);
840             if (!strftime(oc->filename, sizeof(oc->filename), c->basename, tm)) {
841                 av_log(oc, AV_LOG_ERROR, "Could not get segment filename with use_localtime\n");
842                 return AVERROR(EINVAL);
843             }
844             if (c->flags & HLS_SECOND_LEVEL_SEGMENT_INDEX) {
845                 char * filename = av_strdup(oc->filename);  // %%d will be %d after strftime
846                 if (!filename)
847                     return AVERROR(ENOMEM);
848                 if (replace_int_data_in_filename(oc->filename, sizeof(oc->filename),
849                     filename, 'd', c->wrap ? c->sequence % c->wrap : c->sequence) < 1) {
850                     av_log(c, AV_LOG_ERROR,
851                            "Invalid second level segment filename template '%s', "
852                             "you can try to remove second_level_segment_index flag\n",
853                            filename);
854                     av_free(filename);
855                     return AVERROR(EINVAL);
856                 }
857                 av_free(filename);
858             }
859             if (c->flags & (HLS_SECOND_LEVEL_SEGMENT_SIZE | HLS_SECOND_LEVEL_SEGMENT_DURATION)) {
860                 av_strlcpy(c->current_segment_final_filename_fmt, oc->filename,
861                            sizeof(c->current_segment_final_filename_fmt));
862                 if (c->flags & HLS_SECOND_LEVEL_SEGMENT_SIZE) {
863                     char * filename = av_strdup(oc->filename);  // %%s will be %s after strftime
864                     if (!filename)
865                         return AVERROR(ENOMEM);
866                     if (replace_int_data_in_filename(oc->filename, sizeof(oc->filename), filename, 's', 0) < 1) {
867                         av_log(c, AV_LOG_ERROR,
868                                "Invalid second level segment filename template '%s', "
869                                 "you can try to remove second_level_segment_size flag\n",
870                                filename);
871                         av_free(filename);
872                         return AVERROR(EINVAL);
873                     }
874                     av_free(filename);
875                 }
876                 if (c->flags & HLS_SECOND_LEVEL_SEGMENT_DURATION) {
877                     char * filename = av_strdup(oc->filename);  // %%t will be %t after strftime
878                     if (!filename)
879                         return AVERROR(ENOMEM);
880                     if (replace_int_data_in_filename(oc->filename, sizeof(oc->filename), filename, 't', 0) < 1) {
881                         av_log(c, AV_LOG_ERROR,
882                                "Invalid second level segment filename template '%s', "
883                                 "you can try to remove second_level_segment_time flag\n",
884                                filename);
885                         av_free(filename);
886                         return AVERROR(EINVAL);
887                     }
888                     av_free(filename);
889                 }
890             }
891             if (c->use_localtime_mkdir) {
892                 const char *dir;
893                 char *fn_copy = av_strdup(oc->filename);
894                 if (!fn_copy) {
895                     return AVERROR(ENOMEM);
896                 }
897                 dir = av_dirname(fn_copy);
898                 if (mkdir_p(dir) == -1 && errno != EEXIST) {
899                     av_log(oc, AV_LOG_ERROR, "Could not create directory %s with use_localtime_mkdir\n", dir);
900                     av_free(fn_copy);
901                     return AVERROR(errno);
902                 }
903                 av_free(fn_copy);
904             }
905         } else if (replace_int_data_in_filename(oc->filename, sizeof(oc->filename),
906                    c->basename, 'd', c->wrap ? c->sequence % c->wrap : c->sequence) < 1) {
907             av_log(oc, AV_LOG_ERROR, "Invalid segment filename template '%s' you can try to use -use_localtime 1 with it\n", c->basename);
908             return AVERROR(EINVAL);
909         }
910         if( c->vtt_basename) {
911             if (replace_int_data_in_filename(vtt_oc->filename, sizeof(vtt_oc->filename),
912                 c->vtt_basename, 'd', c->wrap ? c->sequence % c->wrap : c->sequence) < 1) {
913                 av_log(vtt_oc, AV_LOG_ERROR, "Invalid segment filename template '%s'\n", c->vtt_basename);
914                 return AVERROR(EINVAL);
915             }
916        }
917     }
918     c->number++;
919
920     set_http_options(&options, c);
921
922     if (c->key_info_file) {
923         if ((err = hls_encryption_start(s)) < 0)
924             goto fail;
925         if ((err = av_dict_set(&options, "encryption_key", c->key_string, 0))
926                 < 0)
927             goto fail;
928         err = av_strlcpy(iv_string, c->iv_string, sizeof(iv_string));
929         if (!err)
930             snprintf(iv_string, sizeof(iv_string), "%032"PRIx64, c->sequence);
931         if ((err = av_dict_set(&options, "encryption_iv", iv_string, 0)) < 0)
932            goto fail;
933
934         filename = av_asprintf("crypto:%s", oc->filename);
935         if (!filename) {
936             err = AVERROR(ENOMEM);
937             goto fail;
938         }
939         err = s->io_open(s, &oc->pb, filename, AVIO_FLAG_WRITE, &options);
940         av_free(filename);
941         av_dict_free(&options);
942         if (err < 0)
943             return err;
944     } else
945         if ((err = s->io_open(s, &oc->pb, oc->filename, AVIO_FLAG_WRITE, &options)) < 0)
946             goto fail;
947     if (c->vtt_basename) {
948         set_http_options(&options, c);
949         if ((err = s->io_open(s, &vtt_oc->pb, vtt_oc->filename, AVIO_FLAG_WRITE, &options)) < 0)
950             goto fail;
951     }
952     av_dict_free(&options);
953
954     /* We only require one PAT/PMT per segment. */
955     if (oc->oformat->priv_class && oc->priv_data) {
956         char period[21];
957
958         snprintf(period, sizeof(period), "%d", (INT_MAX / 2) - 1);
959
960         av_opt_set(oc->priv_data, "mpegts_flags", "resend_headers", 0);
961         av_opt_set(oc->priv_data, "sdt_period", period, 0);
962         av_opt_set(oc->priv_data, "pat_period", period, 0);
963     }
964
965     if (c->vtt_basename) {
966         err = avformat_write_header(vtt_oc,NULL);
967         if (err < 0)
968             return err;
969     }
970
971     return 0;
972 fail:
973     av_dict_free(&options);
974
975     return err;
976 }
977
978 static const char * get_default_pattern_localtime_fmt(void)
979 {
980     char b[21];
981     time_t t = time(NULL);
982     struct tm *p, tmbuf;
983     p = localtime_r(&t, &tmbuf);
984     // no %s support when strftime returned error or left format string unchanged
985     return (!strftime(b, sizeof(b), "%s", p) || !strcmp(b, "%s")) ? "-%Y%m%d%H%M%S.ts" : "-%s.ts";
986 }
987
988 static int hls_write_header(AVFormatContext *s)
989 {
990     HLSContext *hls = s->priv_data;
991     int ret, i;
992     char *p;
993     const char *pattern = "%d.ts";
994     const char *pattern_localtime_fmt = get_default_pattern_localtime_fmt();
995     const char *vtt_pattern = "%d.vtt";
996     AVDictionary *options = NULL;
997     int basename_size;
998     int vtt_basename_size;
999
1000     if (hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_SECONDS_SINCE_EPOCH || hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_FORMATTED_DATETIME) {
1001         time_t t = time(NULL); // we will need it in either case
1002         if (hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_SECONDS_SINCE_EPOCH) {
1003             hls->start_sequence = (int64_t)t;
1004         } else if (hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_FORMATTED_DATETIME) {
1005             char b[15];
1006             struct tm *p, tmbuf;
1007             if (!(p = localtime_r(&t, &tmbuf)))
1008                 return AVERROR(ENOMEM);
1009             if (!strftime(b, sizeof(b), "%Y%m%d%H%M%S", p))
1010                 return AVERROR(ENOMEM);
1011             hls->start_sequence = strtoll(b, NULL, 10);
1012         }
1013         av_log(hls, AV_LOG_DEBUG, "start_number evaluated to %"PRId64"\n", hls->start_sequence);
1014     }
1015
1016     hls->sequence       = hls->start_sequence;
1017     hls->recording_time = (hls->init_time ? hls->init_time : hls->time) * AV_TIME_BASE;
1018     hls->start_pts      = AV_NOPTS_VALUE;
1019     hls->current_segment_final_filename_fmt[0] = '\0';
1020
1021     if (hls->flags & HLS_PROGRAM_DATE_TIME) {
1022         time_t now0;
1023         time(&now0);
1024         hls->initial_prog_date_time = now0;
1025     }
1026
1027     if (hls->format_options_str) {
1028         ret = av_dict_parse_string(&hls->format_options, hls->format_options_str, "=", ":", 0);
1029         if (ret < 0) {
1030             av_log(s, AV_LOG_ERROR, "Could not parse format options list '%s'\n", hls->format_options_str);
1031             goto fail;
1032         }
1033     }
1034
1035     for (i = 0; i < s->nb_streams; i++) {
1036         hls->has_video +=
1037             s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO;
1038         hls->has_subtitle +=
1039             s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE;
1040     }
1041
1042     if (hls->has_video > 1)
1043         av_log(s, AV_LOG_WARNING,
1044                "More than a single video stream present, "
1045                "expect issues decoding it.\n");
1046
1047     hls->oformat = av_guess_format("mpegts", NULL, NULL);
1048
1049     if (!hls->oformat) {
1050         ret = AVERROR_MUXER_NOT_FOUND;
1051         goto fail;
1052     }
1053
1054     if(hls->has_subtitle) {
1055         hls->vtt_oformat = av_guess_format("webvtt", NULL, NULL);
1056         if (!hls->oformat) {
1057             ret = AVERROR_MUXER_NOT_FOUND;
1058             goto fail;
1059         }
1060     }
1061
1062     if (hls->segment_filename) {
1063         hls->basename = av_strdup(hls->segment_filename);
1064         if (!hls->basename) {
1065             ret = AVERROR(ENOMEM);
1066             goto fail;
1067         }
1068     } else {
1069         if (hls->flags & HLS_SINGLE_FILE)
1070             pattern = ".ts";
1071
1072         if (hls->use_localtime) {
1073             basename_size = strlen(s->filename) + strlen(pattern_localtime_fmt) + 1;
1074         } else {
1075             basename_size = strlen(s->filename) + strlen(pattern) + 1;
1076         }
1077         hls->basename = av_malloc(basename_size);
1078         if (!hls->basename) {
1079             ret = AVERROR(ENOMEM);
1080             goto fail;
1081         }
1082
1083         av_strlcpy(hls->basename, s->filename, basename_size);
1084
1085         p = strrchr(hls->basename, '.');
1086         if (p)
1087             *p = '\0';
1088         if (hls->use_localtime) {
1089             av_strlcat(hls->basename, pattern_localtime_fmt, basename_size);
1090         } else {
1091             av_strlcat(hls->basename, pattern, basename_size);
1092         }
1093     }
1094     if (!hls->use_localtime) {
1095         if (hls->flags & HLS_SECOND_LEVEL_SEGMENT_DURATION) {
1096              av_log(hls, AV_LOG_ERROR,
1097                     "second_level_segment_duration hls_flag requires use_localtime to be true\n");
1098              ret = AVERROR(EINVAL);
1099              goto fail;
1100         }
1101         if (hls->flags & HLS_SECOND_LEVEL_SEGMENT_SIZE) {
1102              av_log(hls, AV_LOG_ERROR,
1103                     "second_level_segment_size hls_flag requires use_localtime to be true\n");
1104              ret = AVERROR(EINVAL);
1105              goto fail;
1106         }
1107         if (hls->flags & HLS_SECOND_LEVEL_SEGMENT_INDEX) {
1108             av_log(hls, AV_LOG_ERROR,
1109                    "second_level_segment_index hls_flag requires use_localtime to be true\n");
1110             ret = AVERROR(EINVAL);
1111             goto fail;
1112         }
1113     } else {
1114         const char *proto = avio_find_protocol_name(hls->basename);
1115         int segment_renaming_ok = proto && !strcmp(proto, "file");
1116
1117         if ((hls->flags & HLS_SECOND_LEVEL_SEGMENT_DURATION) && !segment_renaming_ok) {
1118              av_log(hls, AV_LOG_ERROR,
1119                     "second_level_segment_duration hls_flag works only with file protocol segment names\n");
1120              ret = AVERROR(EINVAL);
1121              goto fail;
1122         }
1123         if ((hls->flags & HLS_SECOND_LEVEL_SEGMENT_SIZE) && !segment_renaming_ok) {
1124              av_log(hls, AV_LOG_ERROR,
1125                     "second_level_segment_size hls_flag works only with file protocol segment names\n");
1126              ret = AVERROR(EINVAL);
1127              goto fail;
1128         }
1129     }
1130     if(hls->has_subtitle) {
1131
1132         if (hls->flags & HLS_SINGLE_FILE)
1133             vtt_pattern = ".vtt";
1134         vtt_basename_size = strlen(s->filename) + strlen(vtt_pattern) + 1;
1135         hls->vtt_basename = av_malloc(vtt_basename_size);
1136         if (!hls->vtt_basename) {
1137             ret = AVERROR(ENOMEM);
1138             goto fail;
1139         }
1140         hls->vtt_m3u8_name = av_malloc(vtt_basename_size);
1141         if (!hls->vtt_m3u8_name ) {
1142             ret = AVERROR(ENOMEM);
1143             goto fail;
1144         }
1145         av_strlcpy(hls->vtt_basename, s->filename, vtt_basename_size);
1146         p = strrchr(hls->vtt_basename, '.');
1147         if (p)
1148             *p = '\0';
1149
1150         if( hls->subtitle_filename ) {
1151             strcpy(hls->vtt_m3u8_name, hls->subtitle_filename);
1152         } else {
1153             strcpy(hls->vtt_m3u8_name, hls->vtt_basename);
1154             av_strlcat(hls->vtt_m3u8_name, "_vtt.m3u8", vtt_basename_size);
1155         }
1156         av_strlcat(hls->vtt_basename, vtt_pattern, vtt_basename_size);
1157     }
1158
1159     if ((ret = hls_mux_init(s)) < 0)
1160         goto fail;
1161
1162     if (hls->flags & HLS_APPEND_LIST) {
1163         parse_playlist(s, s->filename);
1164         hls->discontinuity = 1;
1165         if (hls->init_time > 0) {
1166             av_log(s, AV_LOG_WARNING, "append_list mode does not support hls_init_time,"
1167                    " hls_init_time value will have no effect\n");
1168             hls->init_time = 0;
1169             hls->recording_time = hls->time * AV_TIME_BASE;
1170         }
1171     }
1172
1173     if ((ret = hls_start(s)) < 0)
1174         goto fail;
1175
1176     av_dict_copy(&options, hls->format_options, 0);
1177     ret = avformat_write_header(hls->avf, &options);
1178     if (av_dict_count(options)) {
1179         av_log(s, AV_LOG_ERROR, "Some of provided format options in '%s' are not recognized\n", hls->format_options_str);
1180         ret = AVERROR(EINVAL);
1181         goto fail;
1182     }
1183     //av_assert0(s->nb_streams == hls->avf->nb_streams);
1184     for (i = 0; i < s->nb_streams; i++) {
1185         AVStream *inner_st;
1186         AVStream *outer_st = s->streams[i];
1187
1188         if (hls->max_seg_size > 0) {
1189             if ((outer_st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) &&
1190                 (outer_st->codecpar->bit_rate > hls->max_seg_size)) {
1191                 av_log(s, AV_LOG_WARNING, "Your video bitrate is bigger than hls_segment_size, "
1192                        "(%"PRId64 " > %"PRId64 "), the result maybe not be what you want.",
1193                        outer_st->codecpar->bit_rate, hls->max_seg_size);
1194             }
1195         }
1196
1197         if (outer_st->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE)
1198             inner_st = hls->avf->streams[i];
1199         else if (hls->vtt_avf)
1200             inner_st = hls->vtt_avf->streams[0];
1201         else {
1202             /* We have a subtitle stream, when the user does not want one */
1203             inner_st = NULL;
1204             continue;
1205         }
1206         avpriv_set_pts_info(outer_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_base.den);
1207     }
1208 fail:
1209
1210     av_dict_free(&options);
1211     if (ret < 0) {
1212         av_freep(&hls->basename);
1213         av_freep(&hls->vtt_basename);
1214         if (hls->avf)
1215             avformat_free_context(hls->avf);
1216         if (hls->vtt_avf)
1217             avformat_free_context(hls->vtt_avf);
1218
1219     }
1220     return ret;
1221 }
1222
1223 static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
1224 {
1225     HLSContext *hls = s->priv_data;
1226     AVFormatContext *oc = NULL;
1227     AVStream *st = s->streams[pkt->stream_index];
1228     int64_t end_pts = hls->recording_time * hls->number;
1229     int is_ref_pkt = 1;
1230     int ret, can_split = 1;
1231     int stream_index = 0;
1232
1233     if (hls->sequence - hls->nb_entries > hls->start_sequence && hls->init_time > 0) {
1234         /* reset end_pts, hls->recording_time at end of the init hls list */
1235         int init_list_dur = hls->init_time * hls->nb_entries * AV_TIME_BASE;
1236         int after_init_list_dur = (hls->sequence - hls->nb_entries ) * hls->time * AV_TIME_BASE;
1237         hls->recording_time = hls->time * AV_TIME_BASE;
1238         end_pts = init_list_dur + after_init_list_dur ;
1239     }
1240
1241     if( st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE ) {
1242         oc = hls->vtt_avf;
1243         stream_index = 0;
1244     } else {
1245         oc = hls->avf;
1246         stream_index = pkt->stream_index;
1247     }
1248     if (hls->start_pts == AV_NOPTS_VALUE) {
1249         hls->start_pts = pkt->pts;
1250         hls->end_pts   = pkt->pts;
1251     }
1252
1253     if (hls->has_video) {
1254         can_split = st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
1255                     ((pkt->flags & AV_PKT_FLAG_KEY) || (hls->flags & HLS_SPLIT_BY_TIME));
1256         is_ref_pkt = st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO;
1257     }
1258     if (pkt->pts == AV_NOPTS_VALUE)
1259         is_ref_pkt = can_split = 0;
1260
1261     if (is_ref_pkt) {
1262         if (hls->new_start) {
1263             hls->new_start = 0;
1264             hls->duration = (double)(pkt->pts - hls->end_pts)
1265                                        * st->time_base.num / st->time_base.den;
1266             hls->dpp = (double)(pkt->duration) * st->time_base.num / st->time_base.den;
1267         } else {
1268             hls->duration += (double)(pkt->duration) * st->time_base.num / st->time_base.den;
1269         }
1270
1271     }
1272     if (can_split && av_compare_ts(pkt->pts - hls->start_pts, st->time_base,
1273                                    end_pts, AV_TIME_BASE_Q) >= 0) {
1274         int64_t new_start_pos;
1275         char *old_filename = av_strdup(hls->avf->filename);
1276
1277         if (!old_filename) {
1278             return AVERROR(ENOMEM);
1279         }
1280
1281         av_write_frame(oc, NULL); /* Flush any buffered data */
1282
1283         new_start_pos = avio_tell(hls->avf->pb);
1284         hls->size = new_start_pos - hls->start_pos;
1285         ret = hls_append_segment(s, hls, hls->duration, hls->start_pos, hls->size);
1286         hls->start_pos = new_start_pos;
1287         if (ret < 0) {
1288             av_free(old_filename);
1289             return ret;
1290         }
1291
1292         hls->end_pts = pkt->pts;
1293         hls->duration = 0;
1294
1295         if (hls->flags & HLS_SINGLE_FILE) {
1296             if (hls->avf->oformat->priv_class && hls->avf->priv_data)
1297                 av_opt_set(hls->avf->priv_data, "mpegts_flags", "resend_headers", 0);
1298             hls->number++;
1299         } else if (hls->max_seg_size > 0) {
1300             if (hls->avf->oformat->priv_class && hls->avf->priv_data)
1301                 av_opt_set(hls->avf->priv_data, "mpegts_flags", "resend_headers", 0);
1302             if (hls->start_pos >= hls->max_seg_size) {
1303                 hls->sequence++;
1304                 ff_format_io_close(s, &oc->pb);
1305                 if ((hls->flags & (HLS_SECOND_LEVEL_SEGMENT_SIZE | HLS_SECOND_LEVEL_SEGMENT_DURATION)) &&
1306                      strlen(hls->current_segment_final_filename_fmt)) {
1307                     ff_rename(old_filename, hls->avf->filename, hls);
1308                 }
1309                 if (hls->vtt_avf)
1310                     ff_format_io_close(s, &hls->vtt_avf->pb);
1311                 ret = hls_start(s);
1312                 hls->start_pos = 0;
1313                 /* When split segment by byte, the duration is short than hls_time,
1314                  * so it is not enough one segment duration as hls_time, */
1315                 hls->number--;
1316             }
1317             hls->number++;
1318         } else {
1319             ff_format_io_close(s, &oc->pb);
1320             if ((hls->flags & (HLS_SECOND_LEVEL_SEGMENT_SIZE | HLS_SECOND_LEVEL_SEGMENT_DURATION)) &&
1321                 strlen(hls->current_segment_final_filename_fmt)) {
1322                 ff_rename(old_filename, hls->avf->filename, hls);
1323             }
1324             if (hls->vtt_avf)
1325                 ff_format_io_close(s, &hls->vtt_avf->pb);
1326
1327             ret = hls_start(s);
1328         }
1329
1330         if (ret < 0) {
1331             av_free(old_filename);
1332             return ret;
1333         }
1334
1335         if ((ret = hls_window(s, 0)) < 0) {
1336             av_free(old_filename);
1337             return ret;
1338         }
1339     }
1340
1341     ret = ff_write_chained(oc, stream_index, pkt, s, 0);
1342
1343     return ret;
1344 }
1345
1346 static int hls_write_trailer(struct AVFormatContext *s)
1347 {
1348     HLSContext *hls = s->priv_data;
1349     AVFormatContext *oc = hls->avf;
1350     AVFormatContext *vtt_oc = hls->vtt_avf;
1351     char *old_filename = av_strdup(hls->avf->filename);
1352
1353     if (!old_filename) {
1354         return AVERROR(ENOMEM);
1355     }
1356
1357
1358     av_write_trailer(oc);
1359     if (oc->pb) {
1360         hls->size = avio_tell(hls->avf->pb) - hls->start_pos;
1361         ff_format_io_close(s, &oc->pb);
1362         /* after av_write_trailer, then duration + 1 duration per packet */
1363         hls_append_segment(s, hls, hls->duration + hls->dpp, hls->start_pos, hls->size);
1364     }
1365
1366     if ((hls->flags & (HLS_SECOND_LEVEL_SEGMENT_SIZE | HLS_SECOND_LEVEL_SEGMENT_DURATION)) &&
1367          strlen(hls->current_segment_final_filename_fmt)) {
1368          ff_rename(old_filename, hls->avf->filename, hls);
1369     }
1370
1371     if (vtt_oc) {
1372         if (vtt_oc->pb)
1373             av_write_trailer(vtt_oc);
1374         hls->size = avio_tell(hls->vtt_avf->pb) - hls->start_pos;
1375         ff_format_io_close(s, &vtt_oc->pb);
1376     }
1377     av_freep(&hls->basename);
1378     avformat_free_context(oc);
1379
1380     hls->avf = NULL;
1381     hls_window(s, 1);
1382
1383     if (vtt_oc) {
1384         av_freep(&hls->vtt_basename);
1385         av_freep(&hls->vtt_m3u8_name);
1386         avformat_free_context(vtt_oc);
1387     }
1388
1389     hls_free_segments(hls->segments);
1390     hls_free_segments(hls->old_segments);
1391     av_free(old_filename);
1392     return 0;
1393 }
1394
1395 #define OFFSET(x) offsetof(HLSContext, x)
1396 #define E AV_OPT_FLAG_ENCODING_PARAM
1397 static const AVOption options[] = {
1398     {"start_number",  "set first number in the sequence",        OFFSET(start_sequence),AV_OPT_TYPE_INT64,  {.i64 = 0},     0, INT64_MAX, E},
1399     {"hls_time",      "set segment length in seconds",           OFFSET(time),    AV_OPT_TYPE_FLOAT,  {.dbl = 2},     0, FLT_MAX, E},
1400     {"hls_init_time", "set segment length in seconds at init list",           OFFSET(init_time),    AV_OPT_TYPE_FLOAT,  {.dbl = 0},     0, FLT_MAX, E},
1401     {"hls_list_size", "set maximum number of playlist entries",  OFFSET(max_nb_segments),    AV_OPT_TYPE_INT,    {.i64 = 5},     0, INT_MAX, E},
1402     {"hls_ts_options","set hls mpegts list of options for the container format used for hls", OFFSET(format_options_str), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
1403     {"hls_vtt_options","set hls vtt list of options for the container format used for hls", OFFSET(vtt_format_options_str), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
1404     {"hls_wrap",      "set number after which the index wraps",  OFFSET(wrap),    AV_OPT_TYPE_INT,    {.i64 = 0},     0, INT_MAX, E},
1405     {"hls_allow_cache", "explicitly set whether the client MAY (1) or MUST NOT (0) cache media segments", OFFSET(allowcache), AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX, E},
1406     {"hls_base_url",  "url to prepend to each playlist entry",   OFFSET(baseurl), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E},
1407     {"hls_segment_filename", "filename template for segment files", OFFSET(segment_filename),   AV_OPT_TYPE_STRING, {.str = NULL},            0,       0,         E},
1408     {"hls_segment_size", "maximum size per segment file, (in bytes)",  OFFSET(max_seg_size),    AV_OPT_TYPE_INT,    {.i64 = 0},               0,       INT_MAX,   E},
1409     {"hls_key_info_file",    "file with key URI and key file path", OFFSET(key_info_file),      AV_OPT_TYPE_STRING, {.str = NULL},            0,       0,         E},
1410     {"hls_subtitle_path",     "set path of hls subtitles", OFFSET(subtitle_filename), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
1411     {"hls_flags",     "set flags affecting HLS playlist and media file generation", OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0 }, 0, UINT_MAX, E, "flags"},
1412     {"single_file",   "generate a single media file indexed with byte ranges", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_SINGLE_FILE }, 0, UINT_MAX,   E, "flags"},
1413     {"delete_segments", "delete segment files that are no longer part of the playlist", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_DELETE_SEGMENTS }, 0, UINT_MAX,   E, "flags"},
1414     {"round_durations", "round durations in m3u8 to whole numbers", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_ROUND_DURATIONS }, 0, UINT_MAX,   E, "flags"},
1415     {"discont_start", "start the playlist with a discontinuity tag", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_DISCONT_START }, 0, UINT_MAX,   E, "flags"},
1416     {"omit_endlist", "Do not append an endlist when ending stream", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_OMIT_ENDLIST }, 0, UINT_MAX,   E, "flags"},
1417     {"split_by_time", "split the hls segment by time which user set by hls_time", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_SPLIT_BY_TIME }, 0, UINT_MAX,   E, "flags"},
1418     {"append_list", "append the new segments into old hls segment list", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_APPEND_LIST }, 0, UINT_MAX,   E, "flags"},
1419     {"program_date_time", "add EXT-X-PROGRAM-DATE-TIME", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_PROGRAM_DATE_TIME }, 0, UINT_MAX,   E, "flags"},
1420     {"second_level_segment_index", "include segment index in segment filenames when use_localtime", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_SECOND_LEVEL_SEGMENT_INDEX }, 0, UINT_MAX,   E, "flags"},
1421     {"second_level_segment_duration", "include segment duration in segment filenames when use_localtime", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_SECOND_LEVEL_SEGMENT_DURATION }, 0, UINT_MAX,   E, "flags"},
1422     {"second_level_segment_size", "include segment size in segment filenames when use_localtime", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_SECOND_LEVEL_SEGMENT_SIZE }, 0, UINT_MAX,   E, "flags"},
1423     {"use_localtime", "set filename expansion with strftime at segment creation", OFFSET(use_localtime), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1424     {"use_localtime_mkdir", "create last directory component in strftime-generated filename", OFFSET(use_localtime_mkdir), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1425     {"hls_playlist_type", "set the HLS playlist type", OFFSET(pl_type), AV_OPT_TYPE_INT, {.i64 = PLAYLIST_TYPE_NONE }, 0, PLAYLIST_TYPE_NB-1, E, "pl_type" },
1426     {"event", "EVENT playlist", 0, AV_OPT_TYPE_CONST, {.i64 = PLAYLIST_TYPE_EVENT }, INT_MIN, INT_MAX, E, "pl_type" },
1427     {"vod", "VOD playlist", 0, AV_OPT_TYPE_CONST, {.i64 = PLAYLIST_TYPE_VOD }, INT_MIN, INT_MAX, E, "pl_type" },
1428     {"method", "set the HTTP method", OFFSET(method), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
1429     {"hls_start_number_source", "set source of first number in sequence", OFFSET(start_sequence_source_type), AV_OPT_TYPE_INT, {.i64 = HLS_START_SEQUENCE_AS_START_NUMBER }, 0, HLS_START_SEQUENCE_AS_FORMATTED_DATETIME, E, "start_sequence_source_type" },
1430     {"generic", "start_number value (default)", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_START_SEQUENCE_AS_START_NUMBER }, INT_MIN, INT_MAX, E, "start_sequence_source_type" },
1431     {"epoch", "seconds since epoch", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_START_SEQUENCE_AS_SECONDS_SINCE_EPOCH }, INT_MIN, INT_MAX, E, "start_sequence_source_type" },
1432     {"datetime", "current datetime as YYYYMMDDhhmmss", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_START_SEQUENCE_AS_FORMATTED_DATETIME }, INT_MIN, INT_MAX, E, "start_sequence_source_type" },
1433     { NULL },
1434 };
1435
1436 static const AVClass hls_class = {
1437     .class_name = "hls muxer",
1438     .item_name  = av_default_item_name,
1439     .option     = options,
1440     .version    = LIBAVUTIL_VERSION_INT,
1441 };
1442
1443
1444 AVOutputFormat ff_hls_muxer = {
1445     .name           = "hls",
1446     .long_name      = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming"),
1447     .extensions     = "m3u8",
1448     .priv_data_size = sizeof(HLSContext),
1449     .audio_codec    = AV_CODEC_ID_AAC,
1450     .video_codec    = AV_CODEC_ID_H264,
1451     .subtitle_codec = AV_CODEC_ID_WEBVTT,
1452     .flags          = AVFMT_NOFILE | AVFMT_ALLOW_FLUSH,
1453     .write_header   = hls_write_header,
1454     .write_packet   = hls_write_packet,
1455     .write_trailer  = hls_write_trailer,
1456     .priv_class     = &hls_class,
1457 };