Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-05-25 21:33:40 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-05-28 12:18:53 +0300
commit6c70f89813a67238288705d07c928b4eac7a8cae (patch)
tree6105521cffa8d3a1c904779fba2ed4581efcb310 /libavformat/hlsplaylist.c
parent4fbcb69707409ecb7a9d314f254e67d1a6e732dc (diff)
avformat/hlsenc, hlsplaylist: Cosmetics
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/hlsplaylist.c')
-rw-r--r--libavformat/hlsplaylist.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/libavformat/hlsplaylist.c b/libavformat/hlsplaylist.c
index 7a89846369..0e1dcc087f 100644
--- a/libavformat/hlsplaylist.c
+++ b/libavformat/hlsplaylist.c
@@ -28,7 +28,8 @@
#include "avformat.h"
#include "hlsplaylist.h"
-void ff_hls_write_playlist_version(AVIOContext *out, int version) {
+void ff_hls_write_playlist_version(AVIOContext *out, int version)
+{
if (!out)
return;
avio_printf(out, "#EXTM3U\n");
@@ -96,7 +97,8 @@ void ff_hls_write_stream_info(AVStream *st, AVIOContext *out, int bandwidth,
void ff_hls_write_playlist_header(AVIOContext *out, int version, int allowcache,
int target_duration, int64_t sequence,
- uint32_t playlist_type, int iframe_mode) {
+ uint32_t playlist_type, int iframe_mode)
+{
if (!out)
return;
ff_hls_write_playlist_version(out, version);
@@ -118,7 +120,8 @@ void ff_hls_write_playlist_header(AVIOContext *out, int version, int allowcache,
}
void ff_hls_write_init_file(AVIOContext *out, const char *filename,
- int byterange_mode, int64_t size, int64_t pos) {
+ int byterange_mode, int64_t size, int64_t pos)
+{
avio_printf(out, "#EXT-X-MAP:URI=\"%s\"", filename);
if (byterange_mode) {
avio_printf(out, ",BYTERANGE=\"%"PRId64"@%"PRId64"\"", size, pos);
@@ -127,12 +130,14 @@ void ff_hls_write_init_file(AVIOContext *out, const char *filename,
}
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
+ int byterange_mode, double duration,
+ int round_duration, int64_t size,
+ int64_t pos /* Used only if HLS_SINGLE_FILE flag is set */,
const char *baseurl /* Ignored if NULL */,
const char *filename, double *prog_date_time,
- int64_t video_keyframe_size, int64_t video_keyframe_pos, int iframe_mode) {
+ int64_t video_keyframe_size, int64_t video_keyframe_pos,
+ int iframe_mode)
+{
if (!out || !filename)
return AVERROR(EINVAL);
@@ -181,7 +186,8 @@ int ff_hls_write_file_entry(AVIOContext *out, int insert_discont,
return 0;
}
-void ff_hls_write_end_list (AVIOContext *out) {
+void ff_hls_write_end_list(AVIOContext *out)
+{
if (!out)
return;
avio_printf(out, "#EXT-X-ENDLIST\n");