You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
hlsenc: make segment number unsigned
It will overflow if somebody keeps streaming for a time long enough.
This commit is contained in:
@@ -38,7 +38,7 @@ typedef struct ListEntry {
|
||||
|
||||
typedef struct HLSContext {
|
||||
const AVClass *class; // Class for private options.
|
||||
int number;
|
||||
unsigned number;
|
||||
int64_t sequence;
|
||||
AVOutputFormat *oformat;
|
||||
AVFormatContext *avf;
|
||||
|
Reference in New Issue
Block a user