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