diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2017-12-04 12:03:37 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2017-12-04 12:03:37 +0800 |
commit | 071f47649ce39897f18ce034dd428067f29d9b66 (patch) | |
tree | 730b7777a2b4d6325d075e838894c2481adbd89d /libavformat/hlsplaylist.h | |
parent | 31b351ea81d0a7c0d0ed1982dcc6327b7f43b987 (diff) | |
download | ffmpeg-071f47649ce39897f18ce034dd428067f29d9b66.tar.gz |
avformat/hlsplaylist: add int type of API ff_hls_write_file_entry
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
Diffstat (limited to 'libavformat/hlsplaylist.h')
-rw-r--r-- | libavformat/hlsplaylist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hlsplaylist.h b/libavformat/hlsplaylist.h index 4cbc8cacc9..48d71b7c77 100644 --- a/libavformat/hlsplaylist.h +++ b/libavformat/hlsplaylist.h @@ -49,7 +49,7 @@ void ff_hls_write_playlist_header(AVIOContext *out, int version, int allowcache, uint32_t playlist_type); void ff_hls_write_init_file(AVIOContext *out, char *filename, int byterange_mode, int64_t size, int64_t pos); -void ff_hls_write_file_entry(AVIOContext *out, int insert_discont, +int ff_hls_write_file_entry(AVIOContext *out, int insert_discont, int byterange_mode, double duration, int round_duration, int64_t size, int64_t pos, //Used only if HLS_SINGLE_FILE flag is set |