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