mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +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