summaryrefslogtreecommitdiff
path: root/libavformat/hlsenc.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2012-12-29 12:31:01 +0100
committerLuca Barbato <lu_zero@gentoo.org>2012-12-29 17:26:30 +0100
commit30a76487304e7250294c9c0e9fa179bf07fd822a (patch)
tree04c7a3e60e2bd48d3ccfc5a470a1a66393977ede /libavformat/hlsenc.c
parent27a15e0af6fbf074b2b0ad878f1f54c77f7d147a (diff)
hlsenc: make segment number unsigned
It will overflow if somebody keeps streaming for a time long enough.
Diffstat (limited to 'libavformat/hlsenc.c')
-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;