mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/hlsenc: Add some comments to make the code easier to read
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a99de9ca2c
commit
53f10e0368
|
@ -33,7 +33,7 @@
|
|||
|
||||
typedef struct ListEntry {
|
||||
char name[1024];
|
||||
double duration;
|
||||
double duration; /* in seconds */
|
||||
struct ListEntry *next;
|
||||
} ListEntry;
|
||||
|
||||
|
@ -85,6 +85,7 @@ static int hls_mux_init(AVFormatContext *s)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Create a new segment and append it to the segment list */
|
||||
static int append_entry(HLSContext *hls, double duration)
|
||||
{
|
||||
ListEntry *en = av_malloc(sizeof(*en));
|
||||
|
|
Loading…
Reference in New Issue