Commit 467e9d61 authored by Nicolas Martyanoff's avatar Nicolas Martyanoff Committed by Michael Niedermayer

avformat/hlsenc: add some empty lines to make the code easier to read

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 706fcffc
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
typedef struct HLSSegment { typedef struct HLSSegment {
char filename[1024]; char filename[1024];
double duration; /* in seconds */ double duration; /* in seconds */
struct HLSSegment *next; struct HLSSegment *next;
} HLSSegment; } HLSSegment;
...@@ -43,20 +44,26 @@ typedef struct HLSContext { ...@@ -43,20 +44,26 @@ typedef struct HLSContext {
int64_t sequence; int64_t sequence;
int64_t start_sequence; int64_t start_sequence;
AVOutputFormat *oformat; AVOutputFormat *oformat;
AVFormatContext *avf; AVFormatContext *avf;
float time; // Set by a private option. float time; // Set by a private option.
int max_nb_segments; // Set by a private option. int max_nb_segments; // Set by a private option.
int wrap; // Set by a private option. int wrap; // Set by a private option.
int64_t recording_time; int64_t recording_time;
int has_video; int has_video;
int64_t start_pts; int64_t start_pts;
int64_t end_pts; int64_t end_pts;
double duration; // last segment duration computed so far, in seconds double duration; // last segment duration computed so far, in seconds
int nb_entries; int nb_entries;
HLSSegment *segments; HLSSegment *segments;
HLSSegment *last_segment; HLSSegment *last_segment;
char *basename; char *basename;
char *baseurl; char *baseurl;
AVIOContext *pb; AVIOContext *pb;
} HLSContext; } HLSContext;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment