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:
authorLuca Barbato <lu_zero@gentoo.org>2012-12-29 15:31:01 +0400
committerLuca Barbato <lu_zero@gentoo.org>2012-12-29 20:26:30 +0400
commit30a76487304e7250294c9c0e9fa179bf07fd822a (patch)
tree04c7a3e60e2bd48d3ccfc5a470a1a66393977ede
parent27a15e0af6fbf074b2b0ad878f1f54c77f7d147a (diff)
hlsenc: make segment number unsigned
It will overflow if somebody keeps streaming for a time long enough.
-rw-r--r--libavformat/hlsenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 32b8ab9694..4f74b5f04b 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -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;