32 #include <openssl/rand.h> 
   57 #define LINE_BUFFER_SIZE 1024 
   58 #define HLS_MICROSECOND_UNIT   1000000 
  185     return (
int)((val - (
int)val) >= 0.001) ? (
int)(val + 1) : (
int)val;
 
  194     if (!path || !temp) {
 
  198     if (!strncmp(temp, 
"/", 1) || !strncmp(temp, 
"\\", 1)) {
 
  200     } 
else if (!strncmp(temp, 
"./", 2) || !strncmp(temp, 
".\\", 2)) {
 
  204     for ( ; *pos != 
'\0'; ++pos) {
 
  205         if (*pos == 
'/' || *pos == 
'\\') {
 
  208             ret = mkdir(temp, 0755);
 
  213     if ((*(pos - 1) != 
'/') || (*(pos - 1) != 
'\\')) {
 
  214         ret = mkdir(temp, 0755);
 
  228     } 
else if (http_base_proto) {
 
  240     char *q, buf1[20], 
c;
 
  241     int nd, 
len, addchar_count;
 
  250         if (c == 
'%' && *(p+1) == 
'%')  
 
  252         else if (c == 
'%' && (
av_isdigit(*(p+1)) || *(p+1) == placeholder)) {
 
  256                 nd = nd * 10 + *(p + addchar_count) - 
'0';
 
  260             if (*(p + addchar_count) == placeholder) {
 
  261                 len = 
snprintf(buf1, 
sizeof(buf1), 
"%0*"PRId64, (number < 0) ? nd : nd++, number);
 
  264                 if ((q - buf + len) > buf_size - 1)
 
  266                 memcpy(q, buf1, len);
 
  268                 p += (addchar_count + 1);
 
  276         while (addchar_count--)
 
  277             if ((q - buf) < buf_size - 1)
 
  302     float playlist_duration = 0.0f;
 
  303     int ret = 0, path_size, sub_path_size;
 
  304     char *dirname = 
NULL, *p, *sub_path;
 
  308     const char *proto = 
NULL;
 
  312         playlist_duration += segment->
duration;
 
  313         segment = segment->
next;
 
  318         playlist_duration -= segment->
duration;
 
  319         previous_segment = segment;
 
  320         segment = previous_segment->
next;
 
  321         if (playlist_duration <= -previous_segment->
duration) {
 
  364         } 
else if (unlink(path) < 0) {
 
  366                                      path, strerror(errno));
 
  370             sub_path_size = strlen(segment->
sub_filename) + 1 + (dirname ? strlen(dirname) : 0);
 
  387             } 
else if (unlink(sub_path) < 0) {
 
  389                                          sub_path, strerror(errno));
 
  394         previous_segment = segment;
 
  395         segment = previous_segment->
next;
 
  409     gcry_randomize(buf, len, GCRY_VERY_STRONG_RANDOM);
 
  412     if (RAND_bytes(buf, len))
 
  428     len = strlen(hls->
basename) + 4 + 1;
 
  451             memcpy(iv, hls->
iv, 
sizeof(iv));
 
  470             if ((ret = 
randomize(key, 
sizeof(key))) < 0) {
 
  475             memcpy(key, hls->
key, 
sizeof(key));
 
  530     if (ret != 
sizeof(key)) {
 
  611             av_log(s, 
AV_LOG_WARNING, 
"Multi-file byterange mode is currently unsupported in the HLS muxer.\n");
 
  637         av_dict_set(&options, 
"movflags", 
"frag_custom+dash+delay_moov", 0);
 
  657         segment = segment->
next;
 
  663                                          int64_t pos, int64_t 
size)
 
  675                 filename, 
's', pos + size) < 1) {
 
  677                        "Invalid second level segment filename template '%s', " 
  678                         "you can try to remove second_level_segment_size flag\n",
 
  695                        "Invalid second level segment filename template '%s', " 
  696                         "you can try to remove second_level_segment_time flag\n",
 
  714                 "second_level_segment_duration hls_flag requires use_localtime to be true\n");
 
  719                 "second_level_segment_size hls_flag requires use_localtime to be true\n");
 
  724                "second_level_segment_index hls_flag requires use_localtime to be true\n");
 
  734     int segment_renaming_ok = proto && !strcmp(proto, 
"file");
 
  739                 "second_level_segment_duration hls_flag works only with file protocol segment names\n");
 
  744                 "second_level_segment_size hls_flag works only with file protocol segment names\n");
 
  771                     "you can try to remove second_level_segment_index flag\n",
 
  787                         "you can try to remove second_level_segment_size flag\n",
 
  800                         "you can try to remove second_level_segment_time flag\n",
 
  813                               int64_t pos, int64_t 
size)
 
  816     const char  *filename;
 
  834         && !byterange_mode) {
 
  902     int ret = 0, is_segment = 0;
 
  903     int64_t new_start_pos;
 
  914     if (strcmp(line, 
"#EXTM3U")) {
 
  922         if (
av_strstart(line, 
"#EXT-X-MEDIA-SEQUENCE:", &ptr)) {
 
  923             int64_t tmp_sequence = strtoll(ptr, 
NULL, 10);
 
  924             if (tmp_sequence < hls->sequence)
 
  926                      "Found playlist sequence number was smaller """ 
  927                      "than specified start sequence number: %"PRId64
" < %"PRId64
", " 
  930               av_log(hls, 
AV_LOG_DEBUG, 
"Found playlist sequence number: %"PRId64
"\n", tmp_sequence);
 
  933         } 
else if (
av_strstart(line, 
"#EXT-X-DISCONTINUITY", &ptr)) {
 
  942                 ptr += strlen(
"URI=\"");
 
  953                 ptr += strlen(
"IV=0x");
 
  964         } 
else if (line[0]) {
 
  995                                   int target_duration, int64_t sequence)
 
 1002     avio_printf(out, 
"#EXT-X-TARGETDURATION:%d\n", target_duration);
 
 1003     avio_printf(out, 
"#EXT-X-MEDIA-SEQUENCE:%"PRId64
"\n", sequence);
 
 1010     char final_filename[
sizeof(oc->
filename)];
 
 1013     final_filename[len-4] = 
'\0';
 
 1022     int target_duration = 0;
 
 1026     char temp_filename[1024];
 
 1030     int use_rename = proto && !strcmp(proto, 
"file");
 
 1031     static unsigned warned_non_file;
 
 1032     char *key_uri = 
NULL;
 
 1033     char *iv_string = 
NULL;
 
 1038     if (byterange_mode) {
 
 1047     if (!use_rename && !warned_non_file++)
 
 1048         av_log(s, 
AV_LOG_ERROR, 
"Cannot use rename on non file protocol, this may lead to races and temporary partial files\n");
 
 1051     snprintf(temp_filename, 
sizeof(temp_filename), use_rename ? 
"%s.tmp" : 
"%s", s->
filename);
 
 1056         if (target_duration <= en->duration)
 
 1099             avio_printf(out, 
"#EXT-X-BYTERANGE:%"PRId64
"@%"PRId64
"\n",
 
 1103             time_t tt, wrongsecs;
 
 1105             struct tm *tm, tmpbuf;
 
 1106             char buf0[128], buf1[128];
 
 1107             tt = (int64_t)prog_date_time;
 
 1108             milli = av_clip(
lrint(1000*(prog_date_time - tt)), 0, 999);
 
 1110             strftime(buf0, 
sizeof(buf0), 
"%Y-%m-%dT%H:%M:%S", tm);
 
 1111             if (!strftime(buf1, 
sizeof(buf1), 
"%z", tm) || buf1[1]<
'0' ||buf1[1]>
'2') {
 
 1112                 int tz_min, dst = tm->tm_isdst;
 
 1115                 wrongsecs = mktime(tm);
 
 1116                 tz_min = (abs(wrongsecs - tt) + 30) / 60;
 
 1119                          wrongsecs <= tt ? 
'+' : 
'-',
 
 1123             avio_printf(out, 
"#EXT-X-PROGRAM-DATE-TIME:%s.%03d%s\n", buf0, milli, buf1);
 
 1142                  avio_printf(sub_out, 
"#EXT-X-BYTERANGE:%"PRIi64
"@%"PRIi64
"\n",
 
 1158     if (ret >= 0 && use_rename)
 
 1169     char *filename, iv_string[
KEYSIZE*2 + 1];
 
 1185                 av_log(oc, 
AV_LOG_ERROR, 
"Invalid segment filename template '%s', you can try to use -use_localtime 1 with it\n", c->
basename);
 
 1191             struct tm *tm, tmpbuf;
 
 1211                 if (
mkdir_p(dir) == -1 && errno != EEXIST) {
 
 1212                     av_log(oc, 
AV_LOG_ERROR, 
"Could not create directory %s with use_localtime_mkdir\n", dir);
 
 1224             av_log(oc, 
AV_LOG_ERROR, 
"Invalid segment filename template '%s' you can try to use -use_localtime 1 with it\n", c->
basename);
 
 1250                   " will use -hls_key_info_file priority\n");
 
 1268         if ((err = 
av_dict_set(&options, 
"encryption_iv", iv_string, 0)) < 0)
 
 1298             snprintf(period, 
sizeof(period), 
"%d", (INT_MAX / 2) - 1);
 
 1322     time_t t = time(
NULL);
 
 1323     struct tm *p, tmbuf;
 
 1330         return (HAVE_LIBC_MSVCRT || !strftime(b, 
sizeof(b), 
"%s", p) || !strcmp(b, 
"%s")) ? 
"-%Y%m%d%H%M%S.m4s" : 
"-%s.m4s";
 
 1332     return (HAVE_LIBC_MSVCRT || !strftime(b, 
sizeof(b), 
"%s", p) || !strcmp(b, 
"%s")) ? 
"-%Y%m%d%H%M%S.ts" : 
"-%s.ts";
 
 1340     const char *pattern = 
"%d.ts";
 
 1342     const char *vtt_pattern = 
"%d.vtt";
 
 1344     int basename_size = 0;
 
 1345     int vtt_basename_size = 0;
 
 1353         time_t t = time(
NULL); 
 
 1358             struct tm *p, tmbuf;
 
 1361             if (!strftime(b, 
sizeof(b), 
"%Y%m%d%H%M%S", p))
 
 1396                "More than a single video stream present, " 
 1397                "expect issues decoding it.\n");
 
 1434             basename_size = strlen(s->
filename) + strlen(pattern_localtime_fmt) + 1;
 
 1436             basename_size = strlen(s->
filename) + strlen(pattern) + 1;
 
 1465             if (basename_size > 0) {
 
 1475             if (basename_size > 0) {
 
 1502             vtt_pattern = 
".vtt";
 
 1503         vtt_basename_size = strlen(s->
filename) + strlen(vtt_pattern) + 1;
 
 1544                    " hls_init_time value will have no effect\n");
 
 1571                        "(%"PRId64 
" > %"PRId64 
"), the result maybe not be what you want.",
 
 1611     int ret = 0, can_split = 1;
 
 1612     int stream_index = 0;
 
 1613     int range_length = 0;
 
 1621         end_pts = init_list_dur + after_init_list_dur ;
 
 1642         is_ref_pkt = can_split = 0;
 
 1654                 av_log(s, 
AV_LOG_WARNING, 
"pkt->duration = 0, maybe the hls segment duration will not precise\n");
 
 1662         int64_t new_start_pos;
 
 1666         if (!old_filename) {
 
 1675         if (!byterange_mode) {
 
 1757     if (!old_filename) {
 
 1804 #define OFFSET(x) offsetof(HLSContext, x) 
 1805 #define E AV_OPT_FLAG_ENCODING_PARAM 
 1809     {
"hls_init_time", 
"set segment length in seconds at init list",           
OFFSET(init_time),    
AV_OPT_TYPE_FLOAT,  {.dbl = 0},     0, FLT_MAX, 
E},
 
 1810     {
"hls_list_size", 
"set maximum number of playlist entries",  
OFFSET(max_nb_segments),    
AV_OPT_TYPE_INT,    {.i64 = 5},     0, INT_MAX, 
E},
 
 1811     {
"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},
 
 1812     {
"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},
 
 1814     {
"hls_wrap",      
"set number after which the index wraps (will be deprecated)",  
OFFSET(
wrap),    
AV_OPT_TYPE_INT,    {.i64 = 0},     0, INT_MAX, 
E},
 
 1816     {
"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},
 
 1819     {
"hls_segment_size", 
"maximum size per segment file, (in bytes)",  
OFFSET(max_seg_size),    
AV_OPT_TYPE_INT,    {.i64 = 0},               0,       INT_MAX,   
E},
 
 1829     {
"hls_fmp4_init_filename", 
"set fragment mp4 file init filename", 
OFFSET(fmp4_init_filename),   
AV_OPT_TYPE_STRING, {.str = 
"init.mp4"},            0,       0,         
E},
 
 1830     {
"hls_flags",     
"set flags affecting HLS playlist and media file generation", 
OFFSET(
flags), 
AV_OPT_TYPE_FLAGS, {.i64 = 0 }, 0, UINT_MAX, 
E, 
"flags"},
 
 1844     {
"use_localtime", 
"set filename expansion with strftime at segment creation", 
OFFSET(use_localtime), 
AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, 
E },
 
 1845     {
"use_localtime_mkdir", 
"create last directory component in strftime-generated filename", 
OFFSET(use_localtime_mkdir), 
AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, 
E },
 
 1869     .extensions     = 
"m3u8",
 
 1878     .priv_class     = &hls_class,
 
static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue)
 
static void write_m3u8_head_block(HLSContext *hls, AVIOContext *out, int version, int target_duration, int64_t sequence)
 
const char const char void * val
 
char key_uri[LINE_BUFFER_SIZE+1]
 
#define AVERROR_INVALIDDATA
Invalid data found when processing input. 
 
static av_const int av_isdigit(int c)
Locale-independent conversion of ASCII isdigit. 
 
AVIOInterruptCB interrupt_callback
Custom interrupt callbacks for the I/O layer. 
 
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer. 
 
static int hls_write_trailer(struct AVFormatContext *s)
 
int av_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file. 
 
#define AV_LOG_WARNING
Something somehow does not look correct. 
 
#define LIBAVUTIL_VERSION_INT
 
char * av_stristr(const char *s1, const char *s2)
Locate the first case-independent occurrence in the string haystack of the string needle...
 
static int replace_int_data_in_filename(char *buf, int buf_size, const char *filename, char placeholder, int64_t number)
 
enum AVCodecID codec_id
Specific type of the encoded data (the codec used). 
 
char * vtt_format_options_str
 
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) 
 
int use_localtime_mkdir
flag to mkdir dirname in timebased filename 
 
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary. 
 
static int mkdir_p(const char *path)
 
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext. 
 
#define AVIO_FLAG_READ
read-only 
 
static av_const int av_isspace(int c)
Locale-independent conversion of ASCII isspace. 
 
#define AVIO_FLAG_WRITE
write-only 
 
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another. 
 
static int do_encrypt(AVFormatContext *s)
 
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
 
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream. 
 
static int hls_window(AVFormatContext *s, int last)
 
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
 
int av_stristart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str independent of case. 
 
const char * av_basename(const char *path)
Thread safe basename. 
 
static int hls_append_segment(struct AVFormatContext *s, HLSContext *hls, double duration, int64_t pos, int64_t size)
 
enum AVCodecID av_codec_get_id(const struct AVCodecTag *const *tags, unsigned int tag)
Get the AVCodecID for the given codec tag tag. 
 
miscellaneous OS support macros and functions. 
 
static av_cold int end(AVCodecContext *avctx)
 
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown. 
 
static void hls_free_segments(HLSSegment *p)
 
HLSSegment * old_segments
 
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file. 
 
AVStream ** streams
A list of all streams in the file. 
 
char * protocol_whitelist
',' separated list of allowed protocols. 
 
#define AVERROR_EOF
End of file. 
 
char * format_options_str
 
#define AV_LOG_VERBOSE
Detailed information. 
 
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext. 
 
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
 
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
 
static int sls_flags_filename_process(struct AVFormatContext *s, HLSContext *hls, HLSSegment *en, double duration, int64_t pos, int64_t size)
 
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf. 
 
struct AVOutputFormat * oformat
The output container format. 
 
int64_t bit_rate
The average bitrate of the encoded data (in bits per second). 
 
#define AV_PKT_FLAG_KEY
The packet contains a keyframe. 
 
char * base_output_dirname
 
static const AVOption options[]
 
double initial_prog_date_time
 
static int hls_write_header(AVFormatContext *s)
 
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
Copy the contents of src to dst. 
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
 
AVDictionary * metadata
Metadata that applies to the whole file. 
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
int avio_close(AVIOContext *s)
Close the resource accessed by the AVIOContext s and free it. 
 
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers. 
 
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
 
enum AVMediaType codec_type
General type of the encoded data. 
 
AVDictionary * vtt_format_options
 
simple assert() macros that are a bit more flexible than ISO C assert(). 
 
static av_always_inline av_const double round(double x)
 
char key_uri[LINE_BUFFER_SIZE+1]
 
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst. 
 
static void write_styp(AVIOContext *pb)
 
static struct tm * gmtime_r(const time_t *clock, struct tm *result)
 
int flags
A combination of AV_PKT_FLAG values. 
 
int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b)
Compare two timestamps each in its own time base. 
 
static int get_int_from_double(double val)
 
static void set_http_options(AVFormatContext *s, AVDictionary **options, HLSContext *c)
 
char * av_asprintf(const char *fmt,...)
 
unsigned int nb_streams
Number of elements in AVFormatContext.streams. 
 
static int sls_flag_check_duration_size_index(HLSContext *hls)
 
char key_string[KEYSIZE *2+1]
 
#define HLS_MICROSECOND_UNIT
 
static int randomize(uint8_t *buf, int len)
 
int void avio_flush(AVIOContext *s)
Force flushing of buffered data. 
 
char filename[1024]
input or output filename 
 
#define AV_TIME_BASE
Internal time base represented as integer. 
 
av_warn_unused_result int avformat_write_header(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and write the stream header to an output media file. 
 
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare. 
 
static struct tm * localtime_r(const time_t *clock, struct tm *result)
 
static int write_trailer(AVFormatContext *s1)
 
static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
 
HLSSegment * last_segment
 
AVOutputFormat * av_guess_format(const char *short_name, const char *filename, const char *mime_type)
Return the output format in the list of registered output formats which best matches the provided par...
 
AVDictionary * format_options
 
int ff_get_line(AVIOContext *s, char *buf, int maxlen)
Read a whole line of text from AVIOContext. 
 
av_warn_unused_result int avformat_init_output(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and initialize the codec, but do not write the header. 
 
static int read_chomp_line(AVIOContext *s, char *buf, int maxlen)
 
static void sls_flag_file_rename(HLSContext *hls, char *old_filename)
 
int use_localtime
flag to expand filename with localtime 
 
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome. 
 
int av_dict_parse_string(AVDictionary **pm, const char *str, const char *key_val_sep, const char *pairs_sep, int flags)
Parse the key/value pairs list and add the parsed entries to a dictionary. 
 
char iv_string[KEYSIZE *2+1]
 
char * av_strdup(const char *s)
Duplicate a string. 
 
static int sls_flag_use_localtime_filename(AVFormatContext *oc, HLSContext *c)
 
#define AV_TIME_BASE_Q
Internal time base represented as fractional value. 
 
char * user_agent
holds HTTP user agent set as an AVOption to the HTTP protocol context 
 
AVIOContext * pb
I/O context. 
 
static int hls_encryption_start(AVFormatContext *s)
 
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
 
char * fmp4_init_filename
 
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry. 
 
Describe the class of an AVClass context structure. 
 
static void hls_rename_temp_file(AVFormatContext *s, AVFormatContext *oc)
 
char iv_string[KEYSIZE *2+1]
 
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams. 
 
int ffio_open_whitelist(AVIOContext **s, const char *url, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist)
 
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes...
 
const char * avio_find_protocol_name(const char *url)
Return the name of the protocol that will handle the passed URL. 
 
char key_file[LINE_BUFFER_SIZE+1]
 
static int hls_mux_init(AVFormatContext *s)
 
static HLSSegment * find_segment_by_filename(HLSSegment *segment, const char *filename)
 
static const char * get_default_pattern_localtime_fmt(AVFormatContext *s)
 
char current_segment_final_filename_fmt[1024]
 
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str. 
 
const char * av_dirname(char *path)
Thread safe dirname. 
 
static int hls_delete_old_segments(AVFormatContext *s, HLSContext *hls)
 
int pts_wrap_bits
number of bits in pts (used for wrapping control) 
 
static int parse_playlist(AVFormatContext *s, const char *url)
 
uint32_t start_sequence_source_type
 
static int hls_start(AVFormatContext *s)
 
void * priv_data
Format private data. 
 
static const uint8_t start_sequence[]
 
static void write_header(FFV1Context *f)
 
AVOutputFormat ff_hls_muxer
 
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data. 
 
void avio_wb32(AVIOContext *s, unsigned int val)
 
char * protocol_blacklist
',' separated list of disallowed protocols. 
 
#define AVERROR_MUXER_NOT_FOUND
Muxer not found. 
 
AVCodecParameters * codecpar
 
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext. 
 
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC). 
 
AVOutputFormat * vtt_oformat
 
static int sls_flag_check_duration_size(HLSContext *hls)
 
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
 
static const AVClass hls_class
 
unsigned int av_codec_get_tag(const struct AVCodecTag *const *tags, enum AVCodecID id)
Get the codec tag for the given codec id id. 
 
int(* io_open)(struct AVFormatContext *s, AVIOContext **pb, const char *url, int flags, AVDictionary **options)
 
This structure stores compressed data. 
 
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
 
void(* io_close)(struct AVFormatContext *s, AVIOContext *pb)
A callback for closing the streams opened with AVFormatContext.io_open(). 
 
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
 
#define AV_NOPTS_VALUE
Undefined timestamp value. 
 
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
 
AVFormatContext * vtt_avf